Plugin Directory

Changeset 2808226


Ignore:
Timestamp:
10/31/2022 08:01:33 PM (3 years ago)
Author:
intellasoftsolutions
Message:

Update to 1.63.0

Location:
seo-landing-page-generator/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • seo-landing-page-generator/trunk/admin/class-issslpg-admin-cmb2-plugin-settings-page-registration.php

    r2759454 r2808226  
    131131            ),
    132132//          'sanitization_cb' => array( $this, 'propagate_phone_number' ),
     133        ) );
     134
     135        $cmb->add_field( array(
     136            'name'    => esc_html__( 'Landing Page URL Slug', 'issslpg' ),
     137            'desc'    => __( 'The URL slug that landing pages are prefixed with. If the slug is set to <code>lp</code> for example, the URL for a landing page would look like this: <code>https://yourdomain.com/<b>lp</b>/flood-damage-utica-michigan</code>', 'issslpg' ),
     138            'id'      => 'landing_page_slug',
     139            'type'    => 'text',
     140            'default' => 'lp',
    133141        ) );
    134142
  • seo-landing-page-generator/trunk/admin/class-issslpg-admin-landing-page-post-type-registration.php

    r2697343 r2808226  
    1111    public function register_post_type() {
    1212
    13         $slug = _x( 'lp', 'URL slug (no spaces or special characters)', 'issslpg' );
     13//      $slug = _x( 'lp', 'URL slug (no spaces or special characters)', 'issslpg' );
     14//      var_dump( ISSSLPG_Options::get_setting( 'landing_page_slug', 'lp' ));
     15        $slug = esc_html( ISSSLPG_Options::get_setting( 'landing_page_slug', 'lp' ) );
    1416
    1517        $labels = apply_filters( 'issslpg_landing_page_labels', array(
  • seo-landing-page-generator/trunk/admin/class-issslpg-admin.php

    r2759454 r2808226  
    660660
    661661    /**
     662     * On update landing page slug option.
     663     *
     664     * @wp-hook cmb2_save_field_landing_page_slug
     665     */
     666    public function on_update_landing_page_landing_page_slug( $field_id, $updated, $action ) {
     667        if ( $updated ) {
     668            add_option( 'issslpg_flush_rewrite_rules_flag', true );
     669        }
     670    }
     671
     672    /**
    662673     * On update HTML sitemap slug option.
    663674     *
  • seo-landing-page-generator/trunk/freemius.php

    r2393863 r2808226  
    2525                'has_addons'          => true,
    2626                'has_paid_plans'      => true,
     27                'trial'               => array(
     28                    'days'               => 14,
     29                    'is_require_payment' => true,
     30                ),
    2731                'has_affiliation'     => 'all',
    2832                'menu'                => array(
     
    3034                    'support'        => false,
    3135                ),
     36                // Set the SDK to work in a sandbox mode (for development & testing).
     37                // IMPORTANT: MAKE SURE TO REMOVE SECRET KEY BEFORE DEPLOYMENT.
     38                'secret_key'          => 'sk_m(x{<zPMp}8undi<Fj5*Z;@}(%W&s',
    3239            ) );
    3340        }
  • seo-landing-page-generator/trunk/includes/class-issslpg-helpers.php

    r2697343 r2808226  
    126126        }
    127127
    128         return issslpg_fs()->is_plan( $plan_handle, true );
     128        return issslpg_fs()->is_plan_or_trial( $plan_handle, true );
    129129    }
    130130
  • seo-landing-page-generator/trunk/includes/class-issslpg.php

    r2759454 r2808226  
    213213        $this->loader->add_action( 'cmb2_save_field_landing_page_heading_format',    $admin_plugin, 'on_update_landing_page_title_format_options', 10, 3 );
    214214        $this->loader->add_action( 'cmb2_save_field_landing_page_page_title_format', $admin_plugin, 'on_update_landing_page_title_format_options', 10, 3 );
     215        $this->loader->add_action( 'cmb2_save_field_landing_page_slug',              $admin_plugin, 'on_update_landing_page_landing_page_slug',    10, 3 );
    215216        $this->loader->add_action( 'cmb2_save_field_html_sitemap_slug',              $admin_plugin, 'on_update_html_sitemap_slug',                 10, 3 );
    216217
  • seo-landing-page-generator/trunk/readme.txt

    r2778956 r2808226  
    33Tags: SEO, Landing Pages, Generator, Page Builder, Mass Page Builder, Creator
    44Requires at least: 4.9.0
    5 Tested up to: 6.1.0
     5Tested up to: 6.2.0
    66Requires PHP: 5.6
    7 Stable tag: 1.62.1
     7Stable tag: 1.63.0
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
  • seo-landing-page-generator/trunk/seo-landing-page-generator.php

    r2778956 r2808226  
    1616 * Plugin URI:        https://intellasoftplugins.com/
    1717 * Description:       Generate landing pages in bulk based on location with randomized content. Update thousands of landing pages in seconds.
    18  * Version:           1.62.1
     18 * Version:           1.63.0
    1919 * Author:            IntellaSoft Solutions
    2020 * Author URI:        https://intellasoftplugins.com/
     
    4141 * Rename this for your plugin and update it as you release new versions.
    4242 */
    43 define( 'ISSSLPG_VERSION', '1.62.1' );
     43define( 'ISSSLPG_VERSION', '1.63.0' );
    4444define( 'ISSSLPG_BASENAME', plugin_basename(__FILE__) );
    4545
Note: See TracChangeset for help on using the changeset viewer.