Changeset 2634177
- Timestamp:
- 11/23/2021 02:03:49 PM (4 years ago)
- Location:
- mylisting-elementor-toolkit
- Files:
-
- 2 added
- 10 edited
- 1 copied
-
tags/1.0.14 (copied) (copied from mylisting-elementor-toolkit/trunk)
-
tags/1.0.14/conditions/listing-type.php (modified) (1 diff)
-
tags/1.0.14/dynamic-tags/module.php (modified) (1 diff)
-
tags/1.0.14/dynamic-tags/tags/review-count.php (added)
-
tags/1.0.14/ml-elementor-toolkit.php (modified) (2 diffs)
-
tags/1.0.14/plugin.php (modified) (3 diffs)
-
tags/1.0.14/readme.txt (modified) (1 diff)
-
trunk/conditions/listing-type.php (modified) (1 diff)
-
trunk/dynamic-tags/module.php (modified) (1 diff)
-
trunk/dynamic-tags/tags/review-count.php (added)
-
trunk/ml-elementor-toolkit.php (modified) (2 diffs)
-
trunk/plugin.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mylisting-elementor-toolkit/tags/1.0.14/conditions/listing-type.php
r2305393 r2634177 25 25 26 26 public function get_label() { 27 return ' Listing Type';27 return 'By Listing Type'; 28 28 // return $this->listing_type->get_name(); 29 29 // return __( '', 'elementor-pro' ); -
mylisting-elementor-toolkit/tags/1.0.14/dynamic-tags/module.php
r2372812 r2634177 51 51 'post_type' => 'case27_listing_type', 52 52 'fields' => 'ids', 53 'posts_per_page' => 10,53 'posts_per_page' => 50, 54 54 ] ); 55 55 foreach($types as $type_id){ -
mylisting-elementor-toolkit/tags/1.0.14/ml-elementor-toolkit.php
r2551570 r2634177 4 4 * Description: A simple Elementor addon that adds elementor functionality to parts of the My Listing theme. 5 5 * Plugin URI: https://yellowwave.eu/ml-elementor-toolkit 6 * Version: 1.0.1 3.16 * Version: 1.0.14 7 7 * Author: YellowWave 8 8 * Author URI: https://yellowwave.nl … … 33 33 * @var string The plugin version. 34 34 */ 35 const VERSION = '1.0.1 3.1';35 const VERSION = '1.0.14'; 36 36 37 37 /** -
mylisting-elementor-toolkit/tags/1.0.14/plugin.php
r2551570 r2634177 99 99 require_once( __DIR__ . '/dynamic-tags/tags/image.php' ); 100 100 require_once( __DIR__ . '/dynamic-tags/tags/rating.php' ); 101 require_once( __DIR__ . '/dynamic-tags/tags/review-count.php' ); 101 102 102 103 // Finally register the tags … … 108 109 $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Image' ); 109 110 $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Rating' ); 111 $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Review_Count' ); 110 112 } 111 113 … … 119 121 require_once( __DIR__ . '/conditions/listing-type.php' ); 120 122 121 $conditions_manager->get_condition( ' singular' )->register_sub_condition( new Conditions\Listing_Type() );123 $conditions_manager->get_condition( 'job_listing' )->register_sub_condition( new Conditions\Listing_Type() ); 122 124 } 123 125 -
mylisting-elementor-toolkit/tags/1.0.14/readme.txt
r2551560 r2634177 64 64 == Changelog == 65 65 66 = 1.0.14 = 67 * NEW: Review count (number of reviews) dynamic tag 68 * FIX: Up to 50 listing types are shown in selection 69 66 70 = 1.0.13 = 67 71 * Separate WP Editor field with better support for html, fixes formatting issues. -
mylisting-elementor-toolkit/trunk/conditions/listing-type.php
r2305393 r2634177 25 25 26 26 public function get_label() { 27 return ' Listing Type';27 return 'By Listing Type'; 28 28 // return $this->listing_type->get_name(); 29 29 // return __( '', 'elementor-pro' ); -
mylisting-elementor-toolkit/trunk/dynamic-tags/module.php
r2372812 r2634177 51 51 'post_type' => 'case27_listing_type', 52 52 'fields' => 'ids', 53 'posts_per_page' => 10,53 'posts_per_page' => 50, 54 54 ] ); 55 55 foreach($types as $type_id){ -
mylisting-elementor-toolkit/trunk/ml-elementor-toolkit.php
r2551570 r2634177 4 4 * Description: A simple Elementor addon that adds elementor functionality to parts of the My Listing theme. 5 5 * Plugin URI: https://yellowwave.eu/ml-elementor-toolkit 6 * Version: 1.0.1 3.16 * Version: 1.0.14 7 7 * Author: YellowWave 8 8 * Author URI: https://yellowwave.nl … … 33 33 * @var string The plugin version. 34 34 */ 35 const VERSION = '1.0.1 3.1';35 const VERSION = '1.0.14'; 36 36 37 37 /** -
mylisting-elementor-toolkit/trunk/plugin.php
r2551570 r2634177 99 99 require_once( __DIR__ . '/dynamic-tags/tags/image.php' ); 100 100 require_once( __DIR__ . '/dynamic-tags/tags/rating.php' ); 101 require_once( __DIR__ . '/dynamic-tags/tags/review-count.php' ); 101 102 102 103 // Finally register the tags … … 108 109 $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Image' ); 109 110 $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Rating' ); 111 $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Review_Count' ); 110 112 } 111 113 … … 119 121 require_once( __DIR__ . '/conditions/listing-type.php' ); 120 122 121 $conditions_manager->get_condition( ' singular' )->register_sub_condition( new Conditions\Listing_Type() );123 $conditions_manager->get_condition( 'job_listing' )->register_sub_condition( new Conditions\Listing_Type() ); 122 124 } 123 125 -
mylisting-elementor-toolkit/trunk/readme.txt
r2551560 r2634177 64 64 == Changelog == 65 65 66 = 1.0.14 = 67 * NEW: Review count (number of reviews) dynamic tag 68 * FIX: Up to 50 listing types are shown in selection 69 66 70 = 1.0.13 = 67 71 * Separate WP Editor field with better support for html, fixes formatting issues.
Note: See TracChangeset
for help on using the changeset viewer.