Changeset 3035870
- Timestamp:
- 02/14/2024 07:38:26 PM (2 years ago)
- Location:
- real-estate-listing-realtyna-wpl/trunk
- Files:
-
- 4 edited
-
WPL.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
views/basics/functions/wpl_ajax.php (modified) (1 diff)
-
widgets/carousel/main.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
real-estate-listing-realtyna-wpl/trunk/WPL.php
r3035252 r3035870 5 5 * Description: WPL is a professional WordPress real estate plugin created by Realtyna. 6 6 * Author: Realtyna 7 * Version: 4.14. 37 * Version: 4.14.4 8 8 * Text Domain: real-estate-listing-realtyna-wpl 9 9 * Domain Path: /languages … … 28 28 */ 29 29 define('WPL_TEXTDOMAIN', 'real-estate-listing-realtyna-wpl'); 30 define('WPL_VERSION', '4.14. 3'); // WPL Version30 define('WPL_VERSION', '4.14.4'); // WPL Version 31 31 32 32 require WPL_ABSPATH.'config.php'; -
real-estate-listing-realtyna-wpl/trunk/readme.txt
r3035277 r3035870 5 5 Requires at least: 4.7.0 6 6 Tested up to: 6.4.1 7 Stable tag: 4.14. 37 Stable tag: 4.14.4 8 8 Requires PHP: 7.4 9 Version: 4.14. 39 Version: 4.14.4 10 10 License: GPL-2.0-or-later 11 11 License URI: https://www.gnu.org/licenses/license-list.html#GPLv2 -
real-estate-listing-realtyna-wpl/trunk/views/basics/functions/wpl_ajax.php
r3035252 r3035870 43 43 44 44 $plisting_fields = $wpl_property->get_plisting_fields('', $kind); 45 $wpl_property->start(0, count($ex_pids), '', '', ["sf_multiple_id" => $property_ids]);45 $wpl_property->start(0, count($ex_pids), wpl_settings::get('default_orderby'), wpl_settings::get('default_order'), ["sf_multiple_id" => $property_ids]); 46 46 $wpl_property->query(); 47 47 $properties = $wpl_property->search(); -
real-estate-listing-realtyna-wpl/trunk/widgets/carousel/main.php
r3035252 r3035870 92 92 echo isset($args['before_widget']) ? $args['before_widget'] : ''; 93 93 94 // Apply Filters 95 @extract(wpl_filters::apply('property_listing_after_render', array('wpl_properties'=>$wpl_properties))); 94 $wpl_properties = apply_filters('property_listing_after_render', $wpl_properties); 96 95 97 96 $title = apply_filters('widget_title', $instance['title']); … … 351 350 } 352 351 353 // Apply Filters 354 @extract(wpl_filters::apply('carousel_where', array('where'=>$where, 'widget_id'=>$this->widget_id, 'instance'=>$instance))); 352 $where = apply_filters('carousel_where', $where, $this->widget_id, $instance); 355 353 356 354 if( trim($data['random'] ?? '') and trim($data['listing_ids'] ?? '') == '')
Note: See TracChangeset
for help on using the changeset viewer.