Plugin Directory

Changeset 3102485


Ignore:
Timestamp:
06/13/2024 08:06:59 PM (22 months ago)
Author:
belingo
Message:

tagging 1.10.2

Location:
belingogeo
Files:
49 added
4 edited

Legend:

Unmodified
Added
Removed
  • belingogeo/trunk/belingoGeo.php

    r3080530 r3102485  
    66 * Author URI:  https://belingo.ru
    77 * Author:      Belingo llc
    8  * Version:     1.10.1
     8 * Version:     1.10.2
    99 * Text Domain: belingogeo
    1010 * Domain Path: /languages
     
    3737require_once 'integrations/yoast.php';
    3838
    39 define("BELINGO_GEO_VERSION", '1.10.1');
     39define("BELINGO_GEO_VERSION", '1.10.2');
    4040
    4141add_action('template_redirect', 'belingoGeo_init_city');
  • belingogeo/trunk/includes/admin/settings.php

    r3077769 r3102485  
    3434    echo '<p>'.__('In this section, you can manage prices in WooCommerce for each city separately.').'</p>';
    3535    if (is_plugin_active('belingogeopro/belingoGeoPro.php')) {
    36         belingogeopro_woo_price_func();
     36        if(function_exists('belingogeopro_woo_price_func')) {
     37            belingogeopro_woo_price_func();
     38        }else{
     39            echo '<p style="color:red;">'.__('You need to update the Pro extension to version 1.10 or higher', 'belingogeo').'</p>';
     40        }
    3741    }else{
    3842        echo '<p style="color:red;">'.__('Only available for Pro version', 'belingogeo').'</p>';
     
    5357    echo '<p style="color:red;">'.__('Attention! Loading all cities at once can be difficult and depends on the settings and limitations of your hosting provider. In this case, we recommend splitting the file into several parts.', 'belingogeo').'</p>';
    5458    if (is_plugin_active('belingogeopro/belingoGeoPro.php')) {
    55         belingogeopro_import_func();
     59        if(function_exists('belingogeopro_import_func')) {
     60            belingogeopro_import_func();
     61        }else{
     62            echo '<p style="color:red;">'.__('You need to update the Pro extension to version 1.9 or higher', 'belingogeo').'</p>';
     63        }
    5664    }else{
    5765        echo '<p style="color:red;">'.__('Only available for Pro version', 'belingogeo').'</p>';
     
    6674    echo '<h1 class="wp-heading-inline">'.__('Export', 'belingogeo').'</h1>';
    6775    if (is_plugin_active('belingogeopro/belingoGeoPro.php')) {
    68         belingogeopro_export_func();
     76        if(function_exists('belingogeopro_export_func')) {
     77            belingogeopro_export_func();
     78        }else{
     79            echo '<p style="color:red;">'.__('You need to update the Pro extension to version 1.9 or higher', 'belingogeo').'</p>';
     80        }
    6981    }else{
    7082        echo '<p style="color:red;">'.__('Only available for Pro version', 'belingogeo').'</p>';
  • belingogeo/trunk/includes/core-functions.php

    r3086288 r3102485  
    485485            }
    486486            if($belingo_geo_exclude_all_posts) {
    487                 if($term->taxonomy == 'category' || $term->taxonomy = 'post_tag') {
     487                if($term->taxonomy == 'category' || $term->taxonomy == 'post_tag') {
    488488                    $is_exclude = true;
    489489                }
  • belingogeo/trunk/readme.txt

    r3080530 r3102485  
    44Requires at least: 4.4.2
    55Tested up to: 6.5.2
    6 Stable tag: 1.10.1
     6Stable tag: 1.10.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3434
    3535== Changelog ==
     36= 1.10.2 =
     37* Fixed incorrect condition in exceptions
     38* Fixed fatal errors when using new versions of the plugin with old pro extensions
     39* Fixed exception if the current city is not in the list. Fixed sitemap when all regular entries are excluded.
     40* Fixed a fatal error in the sitemap when there are no excluded taxonomies.
     41
    3642= 1.10.1 =
    3743* Fixed WC cache when changing prices for goods and when changing cities
Note: See TracChangeset for help on using the changeset viewer.