Plugin Directory

Changeset 988327


Ignore:
Timestamp:
09/12/2014 02:40:16 PM (12 years ago)
Author:
DanHarrison
Message:
  • Added improvement to page fetch for exotic WordPress installations.
  • Changed support links to new Squeeze Page Toolkit website
  • Tested against WordPress 4.0
Location:
squeeze-page-toolkit
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • squeeze-page-toolkit/tags/1.14/readme.txt

    r942200 r988327  
    33Tags: squeeze page toolkit, squeeze pages, landing pages, opt-in boxes
    44Requires at least: 3.7
    5 Tested up to: 3.9.1
    6 Stable tag: 1.13
     5Tested up to: 4.0.0
     6Stable tag: 1.14
    77License: Apache 2.0
    88License URI: http://www.apache.org/licenses/LICENSE-2.0
     
    59591. Have you updated your permalinks recently? Go to `Permalinks` in WP admin, and click on the `Save Changes` button.
    60601. If you have any other landing page tools on WordPress, this may interfere with this plugin, so do try disabling them first to see if that resolves the issue.
    61 1. See the reference about [URL compatibility mode](http://support.wpdoctors.co.uk/support/solutions/articles/3000009178) for  the WordPress plugin. 
    62 1. If that doesn't solve the issue, then please contact [Squeeze Page Toolkit support](http://support.wpdoctors.co.uk/support/home) with what you have in `Custom Structure` in the `Permalinks` section in WP admin.
     611. See the reference about [URL compatibility mode](http://www.squeezepagetoolkit.com/training/im-getting-404-errors-when-trying-to-view-my-squeeze-pages-in-wordpress/) for  the WordPress plugin. 
     621. If that doesn't solve the issue, then please contact [Squeeze Page Toolkit support](http://squeezepagetoolkit.com/support/) with what you have in `Custom Structure` in the `Permalinks` section in WP admin.
    6363
    6464= Can I use a squeeze page for my website landing page? =
     
    7575
    7676== Changelog ==
     77
     78= 1.14 =
     79* Added improvement to page fetch for exotic WordPress installations.
     80* Changed support links to new Squeeze Page Toolkit website
     81* Tested against WordPress 4.0
    7782
    7883= 1.13 =
  • squeeze-page-toolkit/tags/1.14/squeeze-page-toolkit.php

    r942200 r988327  
    22/*
    33 * Plugin Name: Squeeze Page Toolkit
    4  * Version: 1.13
     4 * Version: 1.14
    55 * Plugin URI: http://wordpress.org/plugins/squeeze-page-toolkit/
    66 * Description: The official plugin for the Squeeze Page Toolkit for WordPress, allowing you to show your squeeze pages on your WordPress website.
    7  * Author: WordPress Doctors
    8  * Author URI: http://www.wpdoctors.co.uk
     7 * Author: Squeeze Page Toolkit
     8 * Author URI: http://www.squeezepagetoolkit.com
    99 */
    1010
    1111/** The current version of the database. */
    12 define('SPTK_DATABASE_VERSION',         '1.13');
     12define('SPTK_DATABASE_VERSION',         '1.14');
    1313
    1414/** The current version of the database. */
     
    407407                $normalPermalink = true;
    408408                $post_name = $query->get('name');
     409               
     410                // Sometimes the name is empty, hence checking page name too.
     411                if (empty($post_name)) {
     412                    $post_name = $query->get('pagename');
     413                }
    409414            break;
    410415           
  • squeeze-page-toolkit/trunk/readme.txt

    r942200 r988327  
    33Tags: squeeze page toolkit, squeeze pages, landing pages, opt-in boxes
    44Requires at least: 3.7
    5 Tested up to: 3.9.1
    6 Stable tag: 1.13
     5Tested up to: 4.0.0
     6Stable tag: 1.14
    77License: Apache 2.0
    88License URI: http://www.apache.org/licenses/LICENSE-2.0
     
    59591. Have you updated your permalinks recently? Go to `Permalinks` in WP admin, and click on the `Save Changes` button.
    60601. If you have any other landing page tools on WordPress, this may interfere with this plugin, so do try disabling them first to see if that resolves the issue.
    61 1. See the reference about [URL compatibility mode](http://support.wpdoctors.co.uk/support/solutions/articles/3000009178) for  the WordPress plugin. 
    62 1. If that doesn't solve the issue, then please contact [Squeeze Page Toolkit support](http://support.wpdoctors.co.uk/support/home) with what you have in `Custom Structure` in the `Permalinks` section in WP admin.
     611. See the reference about [URL compatibility mode](http://www.squeezepagetoolkit.com/training/im-getting-404-errors-when-trying-to-view-my-squeeze-pages-in-wordpress/) for  the WordPress plugin. 
     621. If that doesn't solve the issue, then please contact [Squeeze Page Toolkit support](http://squeezepagetoolkit.com/support/) with what you have in `Custom Structure` in the `Permalinks` section in WP admin.
    6363
    6464= Can I use a squeeze page for my website landing page? =
     
    7575
    7676== Changelog ==
     77
     78= 1.14 =
     79* Added improvement to page fetch for exotic WordPress installations.
     80* Changed support links to new Squeeze Page Toolkit website
     81* Tested against WordPress 4.0
    7782
    7883= 1.13 =
  • squeeze-page-toolkit/trunk/squeeze-page-toolkit.php

    r942200 r988327  
    22/*
    33 * Plugin Name: Squeeze Page Toolkit
    4  * Version: 1.13
     4 * Version: 1.14
    55 * Plugin URI: http://wordpress.org/plugins/squeeze-page-toolkit/
    66 * Description: The official plugin for the Squeeze Page Toolkit for WordPress, allowing you to show your squeeze pages on your WordPress website.
    7  * Author: WordPress Doctors
    8  * Author URI: http://www.wpdoctors.co.uk
     7 * Author: Squeeze Page Toolkit
     8 * Author URI: http://www.squeezepagetoolkit.com
    99 */
    1010
    1111/** The current version of the database. */
    12 define('SPTK_DATABASE_VERSION',         '1.13');
     12define('SPTK_DATABASE_VERSION',         '1.14');
    1313
    1414/** The current version of the database. */
     
    407407                $normalPermalink = true;
    408408                $post_name = $query->get('name');
     409               
     410                // Sometimes the name is empty, hence checking page name too.
     411                if (empty($post_name)) {
     412                    $post_name = $query->get('pagename');
     413                }
    409414            break;
    410415           
Note: See TracChangeset for help on using the changeset viewer.