Plugin Directory

Changeset 2403054


Ignore:
Timestamp:
10/20/2020 09:51:42 AM (5 years ago)
Author:
aazztech
Message:

Released version 6.5.5

Location:
directorist
Files:
776 added
5 edited

Legend:

Unmodified
Added
Removed
  • directorist/trunk/directorist-base.php

    r2402522 r2403054  
    33 * Plugin Name: Directorist - Business Directory Plugin
    44 * Plugin URI: https://aazztech.com/product/directorist-business-directory-plugin
    5  * Description: Create a professional directory listing website like Yelp by a few clicks only. You can list place, any business etc.  with this plugin very easily.
    6  * Version: 6.5.4
     5 * Description: A comprehensive solution to create professional looking directory site of any kind. Like Yelp, Foursquare, etc.
     6 * Version: 6.5.5
    77 * Author: AazzTech
    88 * Author URI: https://aazztech.com
  • directorist/trunk/includes/helper-functions.php

    r2402522 r2403054  
    17571757    );
    17581758
    1759     $total_categories = ATBDP_Listings_Data_Store::get_listings( $args );
     1759    $total_categories = ATBDP_Listings_Model::get_listings( $args );
    17601760
    17611761    return count( $total_categories );
     
    18481848    );
    18491849
    1850     $total_location = ATBDP_Listings_Data_Store::get_listings( $args );
     1850    $total_location = ATBDP_Listings_Model::get_listings( $args );
    18511851    return count( $total_location );
    18521852}
     
    23642364function listing_view_by_grid( $all_listings, $paginate = '', $is_disable_price = false )
    23652365{
    2366     _deprecated_function( __FUNCTION__, '7.0' );
     2366    // _deprecated_function( __FUNCTION__, '7.0' );
    23672367    ?>
    23682368    <div class="col-lg-12">
     
    24222422function related_listing_slider($all_listings, $pagenation, $is_disable_price, $templete = 'default')
    24232423{
    2424     _deprecated_function( __FUNCTION__, '7.0' );
     2424    // _deprecated_function( __FUNCTION__, '7.0' );
    24252425
    24262426    if ('default' != $templete) return;
     
    28172817function listing_view_by_list($all_listings, $display_image, $show_pagination, $paged)
    28182818{
    2819     _deprecated_function( __FUNCTION__, '7.0' );
     2819    // _deprecated_function( __FUNCTION__, '7.0' );
    28202820
    28212821    $class_name = 'container-fluid';
     
    44784478
    44794479function the_thumbnail_card($img_src = '', $_args = array()) {
    4480     _deprecated_function( __FUNCTION__, '7.0', 'atbdp_thumbnail_card()' );
     4480    // _deprecated_function( __FUNCTION__, '7.0', 'atbdp_thumbnail_card()' );
    44814481    return atbdp_thumbnail_card($img_src,$_args);
    44824482}
  • directorist/trunk/readme.txt

    r2402522 r2403054  
    22Contributors: AazzTech
    33Donate link: https://directorist.com/extensions/
    4 Tags: directory, listings, classifieds, local directory, business directory
     4Tags: directory, listings, classifieds, local directory, business directory, real-estate
    55Requires at least: 4.6
    66Tested up to:  5.5
    7 Stable tag: 6.5.4
     7Stable tag: 6.5.5
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    126126👉 **Claim Listing*:** Make money by allowing business owners to claim their listing and get verified.
    127127👉 **Pay Per Submit*:** Earn by charging users to create a listing on your site.
    128 **Requires Additional Purchase**
     128>*Requires Additional Purchase
    129129
    130130####Frontend Listing Submission and Listing Management
     
    327327
    328328== Changelog ==
     329
     330= 6.5.5 - Oct 20, 2020 =
     331
     332* Fix - Fatal error of all location and category pages
     333* Fix - Deprecated notice
     334* Fix - Map issue
     335* Remove - Hook used in Business Hours extension
    329336
    330337= 6.5.4 - Oct 19, 2020 =
  • directorist/trunk/templates/front-end/all-listings/maps/openstreet/openstreet-map.php

    r2402522 r2403054  
    4444           
    4545            $manual_lat = get_post_meta(get_the_ID(), '_manual_lat', true);
    46             $manual_lat = ( ! empty( $manual_lat ) ) ? preg_match('/^[-]?(([0-8]?[0-9])\.(\d+))|(90(\.0+)?)$/', $manual_lat ) : $default_latitude ;
     46            $manual_lat = ( ! empty( $manual_lat ) ) ? $manual_lat : $default_latitude ;
    4747            $manual_lng = get_post_meta(get_the_ID(), '_manual_lng', true);
    48             $manual_lng = ( ! empty( $manual_lng ) ) ? preg_match('/^[-]?((((1[0-7][0-9])|([0-9]?[0-9]))\.(\d+))|180(\.0+)?)$/', $manual_lng) : $default_longitude ;
     48            $manual_lng = ( ! empty( $manual_lng ) ) ? $manual_lng : $default_longitude ;
    4949
    5050            $listing_img           = get_post_meta(get_the_ID(), '_listing_img', true);
  • directorist/trunk/templates/front-end/single-listing/listing-contact-owner.php

    r2357111 r2403054  
    5252                <input type="hidden" id="atbdp-post-id" value="<?php echo $post->ID; ?>" />
    5353                <input type="hidden" id="atbdp-listing-email" value="<?php echo !empty($email) ? sanitize_email($email) : ''; ?>" />
    54 <?php }
    55 /**
    56  * @since 5.0.5
    57  */
    58 do_action('atbdp_after_contact_listing_owner_section', $listing_id);
    59 ?>
     54<?php } ?>
Note: See TracChangeset for help on using the changeset viewer.