Plugin Directory

Changeset 2634177


Ignore:
Timestamp:
11/23/2021 02:03:49 PM (4 years ago)
Author:
cvl01
Message:

Update to version 1.0.14 from GitHub

Location:
mylisting-elementor-toolkit
Files:
2 added
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • mylisting-elementor-toolkit/tags/1.0.14/conditions/listing-type.php

    r2305393 r2634177  
    2525
    2626    public function get_label() {
    27         return 'Listing Type';
     27        return 'By Listing Type';
    2828        // return $this->listing_type->get_name();
    2929        // return __( '', 'elementor-pro' );
  • mylisting-elementor-toolkit/tags/1.0.14/dynamic-tags/module.php

    r2372812 r2634177  
    5151            'post_type' => 'case27_listing_type',
    5252            'fields' => 'ids',
    53             'posts_per_page' => 10,
     53            'posts_per_page' => 50,
    5454        ] );
    5555        foreach($types as $type_id){
  • mylisting-elementor-toolkit/tags/1.0.14/ml-elementor-toolkit.php

    r2551570 r2634177  
    44 * Description: A simple Elementor addon that adds elementor functionality to parts of the My Listing theme.
    55 * Plugin URI:  https://yellowwave.eu/ml-elementor-toolkit
    6  * Version:     1.0.13.1
     6 * Version:     1.0.14
    77 * Author:      YellowWave
    88 * Author URI:  https://yellowwave.nl
     
    3333   * @var string The plugin version.
    3434   */
    35     const VERSION = '1.0.13.1';
     35    const VERSION = '1.0.14';
    3636 
    3737    /**
  • mylisting-elementor-toolkit/tags/1.0.14/plugin.php

    r2551570 r2634177  
    9999        require_once( __DIR__ . '/dynamic-tags/tags/image.php' );
    100100        require_once( __DIR__ . '/dynamic-tags/tags/rating.php' );
     101        require_once( __DIR__ . '/dynamic-tags/tags/review-count.php' );
    101102     
    102103        // Finally register the tags
     
    108109        $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Image' );
    109110        $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Rating' );
     111        $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Review_Count' );
    110112    }
    111113
     
    119121        require_once( __DIR__ . '/conditions/listing-type.php' );
    120122   
    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() );
    122124    }
    123125
  • mylisting-elementor-toolkit/tags/1.0.14/readme.txt

    r2551560 r2634177  
    6464== Changelog ==
    6565
     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
    6670= 1.0.13 =
    6771* Separate WP Editor field with better support for html, fixes formatting issues.
  • mylisting-elementor-toolkit/trunk/conditions/listing-type.php

    r2305393 r2634177  
    2525
    2626    public function get_label() {
    27         return 'Listing Type';
     27        return 'By Listing Type';
    2828        // return $this->listing_type->get_name();
    2929        // return __( '', 'elementor-pro' );
  • mylisting-elementor-toolkit/trunk/dynamic-tags/module.php

    r2372812 r2634177  
    5151            'post_type' => 'case27_listing_type',
    5252            'fields' => 'ids',
    53             'posts_per_page' => 10,
     53            'posts_per_page' => 50,
    5454        ] );
    5555        foreach($types as $type_id){
  • mylisting-elementor-toolkit/trunk/ml-elementor-toolkit.php

    r2551570 r2634177  
    44 * Description: A simple Elementor addon that adds elementor functionality to parts of the My Listing theme.
    55 * Plugin URI:  https://yellowwave.eu/ml-elementor-toolkit
    6  * Version:     1.0.13.1
     6 * Version:     1.0.14
    77 * Author:      YellowWave
    88 * Author URI:  https://yellowwave.nl
     
    3333   * @var string The plugin version.
    3434   */
    35     const VERSION = '1.0.13.1';
     35    const VERSION = '1.0.14';
    3636 
    3737    /**
  • mylisting-elementor-toolkit/trunk/plugin.php

    r2551570 r2634177  
    9999        require_once( __DIR__ . '/dynamic-tags/tags/image.php' );
    100100        require_once( __DIR__ . '/dynamic-tags/tags/rating.php' );
     101        require_once( __DIR__ . '/dynamic-tags/tags/review-count.php' );
    101102     
    102103        // Finally register the tags
     
    108109        $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Image' );
    109110        $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Rating' );
     111        $tag_manager->register_tag( 'ML_Elementor_Toolkit\DynamicTags\Review_Count' );
    110112    }
    111113
     
    119121        require_once( __DIR__ . '/conditions/listing-type.php' );
    120122   
    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() );
    122124    }
    123125
  • mylisting-elementor-toolkit/trunk/readme.txt

    r2551560 r2634177  
    6464== Changelog ==
    6565
     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
    6670= 1.0.13 =
    6771* Separate WP Editor field with better support for html, fixes formatting issues.
Note: See TracChangeset for help on using the changeset viewer.