Changeset 2808226
- Timestamp:
- 10/31/2022 08:01:33 PM (3 years ago)
- Location:
- seo-landing-page-generator/trunk
- Files:
-
- 8 edited
-
admin/class-issslpg-admin-cmb2-plugin-settings-page-registration.php (modified) (1 diff)
-
admin/class-issslpg-admin-landing-page-post-type-registration.php (modified) (1 diff)
-
admin/class-issslpg-admin.php (modified) (1 diff)
-
freemius.php (modified) (2 diffs)
-
includes/class-issslpg-helpers.php (modified) (1 diff)
-
includes/class-issslpg.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
seo-landing-page-generator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seo-landing-page-generator/trunk/admin/class-issslpg-admin-cmb2-plugin-settings-page-registration.php
r2759454 r2808226 131 131 ), 132 132 // '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', 133 141 ) ); 134 142 -
seo-landing-page-generator/trunk/admin/class-issslpg-admin-landing-page-post-type-registration.php
r2697343 r2808226 11 11 public function register_post_type() { 12 12 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' ) ); 14 16 15 17 $labels = apply_filters( 'issslpg_landing_page_labels', array( -
seo-landing-page-generator/trunk/admin/class-issslpg-admin.php
r2759454 r2808226 660 660 661 661 /** 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 /** 662 673 * On update HTML sitemap slug option. 663 674 * -
seo-landing-page-generator/trunk/freemius.php
r2393863 r2808226 25 25 'has_addons' => true, 26 26 'has_paid_plans' => true, 27 'trial' => array( 28 'days' => 14, 29 'is_require_payment' => true, 30 ), 27 31 'has_affiliation' => 'all', 28 32 'menu' => array( … … 30 34 'support' => false, 31 35 ), 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', 32 39 ) ); 33 40 } -
seo-landing-page-generator/trunk/includes/class-issslpg-helpers.php
r2697343 r2808226 126 126 } 127 127 128 return issslpg_fs()->is_plan ( $plan_handle, true );128 return issslpg_fs()->is_plan_or_trial( $plan_handle, true ); 129 129 } 130 130 -
seo-landing-page-generator/trunk/includes/class-issslpg.php
r2759454 r2808226 213 213 $this->loader->add_action( 'cmb2_save_field_landing_page_heading_format', $admin_plugin, 'on_update_landing_page_title_format_options', 10, 3 ); 214 214 $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 ); 215 216 $this->loader->add_action( 'cmb2_save_field_html_sitemap_slug', $admin_plugin, 'on_update_html_sitemap_slug', 10, 3 ); 216 217 -
seo-landing-page-generator/trunk/readme.txt
r2778956 r2808226 3 3 Tags: SEO, Landing Pages, Generator, Page Builder, Mass Page Builder, Creator 4 4 Requires at least: 4.9.0 5 Tested up to: 6. 1.05 Tested up to: 6.2.0 6 6 Requires PHP: 5.6 7 Stable tag: 1.6 2.17 Stable tag: 1.63.0 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html -
seo-landing-page-generator/trunk/seo-landing-page-generator.php
r2778956 r2808226 16 16 * Plugin URI: https://intellasoftplugins.com/ 17 17 * Description: Generate landing pages in bulk based on location with randomized content. Update thousands of landing pages in seconds. 18 * Version: 1.6 2.118 * Version: 1.63.0 19 19 * Author: IntellaSoft Solutions 20 20 * Author URI: https://intellasoftplugins.com/ … … 41 41 * Rename this for your plugin and update it as you release new versions. 42 42 */ 43 define( 'ISSSLPG_VERSION', '1.6 2.1' );43 define( 'ISSSLPG_VERSION', '1.63.0' ); 44 44 define( 'ISSSLPG_BASENAME', plugin_basename(__FILE__) ); 45 45
Note: See TracChangeset
for help on using the changeset viewer.