Plugin Directory

Changeset 1961003


Ignore:
Timestamp:
10/23/2018 02:56:37 AM (7 years ago)
Author:
therealwebdisrupt
Message:

Fixed Funnelmental pro detection for the Funnelemntal detector

Location:
web-disrupt-elementor-extended-template-library
Files:
22 added
2 edited

Legend:

Unmodified
Added
Removed
  • web-disrupt-elementor-extended-template-library/trunk/README.txt

    r1960978 r1961003  
    44Requires at least: 4.6
    55Tested up to: 4.9.8
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4242== Changelog ==
    4343
     44= 1.0.2 =
     45* Fixed detection of Funnelmentals Pro for funnelmentals detection
    4446= 1.0.1 =
    4547* Fixed detection of Funnelmentals Pro
  • web-disrupt-elementor-extended-template-library/trunk/web-disrupt-elementor-library-unlimited.php

    r1960978 r1961003  
    44 * Description: Save more time with this extended library of templates. Users can submit ones they have made to grow the library. Lets make elementor better together.
    55 * Plugin URI: https://www.webdisrupt.com/elementor-extended-library/
    6  * Version: 1.0.1
     6 * Version: 1.0.2
    77 * Author: Web Disrupt
    88 * Author URI: https://webdisrupt.com
     
    155155        $print_string = "";
    156156        if(strpos(sanitize_text_field($_POST['required']), 'funnelmentals') !== false) {
    157         if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals")){ $print_string = "funnelmentals"; wp_die(); }
     157            if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals")){ $print_string = "funnelmentals"; wp_die(); }
     158            if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals-premium")){ $print_string = "funnelmentals-pro"; wp_die(); }
    158159        }
    159160        if (strpos(sanitize_text_field($_POST['required']), 'pro') !== false){
     
    161162        }
    162163        if (strpos(sanitize_text_field($_POST['required']), 'funnelmentals-pro') !== false){
    163             if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals-premium/elements-premium")){ $print_string = "funnelmentals-pro"; wp_die(); }
     164            if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals-premium")){ $print_string = "funnelmentals-pro"; wp_die(); }
    164165        }
    165166        if($print_string == ''){
Note: See TracChangeset for help on using the changeset viewer.