Plugin Directory

Changeset 2413238


Ignore:
Timestamp:
11/05/2020 12:45:20 PM (5 years ago)
Author:
sandesh055
Message:

Version updated to 1.5.21

Location:
cartflows
Files:
439 added
6 edited

Legend:

Unmodified
Added
Removed
  • cartflows/trunk/cartflows.php

    r2413027 r2413238  
    44 * Plugin URI: https://cartflows.com/
    55 * Description: Create beautiful checkout pages & sales flows for WooCommerce.
    6  * Version: 1.5.20
     6 * Version: 1.5.21
    77 * Author: CartFlows Inc
    88 * Author URI: https://cartflows.com/
  • cartflows/trunk/changelog.txt

    r2413027 r2413238  
     1Version 1.5.21 - Thursday, 5th November 2020
     2- Fix: Pages showing 404 error due to permalink issue.
     3
    14Version 1.5.20 - Thursday, 5th November 2020
    25- New: Introduced Gutenberg Blocks.
  • cartflows/trunk/classes/class-cartflows-loader.php

    r2413027 r2413238  
    135135            define( 'CARTFLOWS_DIR', plugin_dir_path( CARTFLOWS_FILE ) );
    136136            define( 'CARTFLOWS_URL', plugins_url( '/', CARTFLOWS_FILE ) );
    137             define( 'CARTFLOWS_VER', '1.5.20' );
     137            define( 'CARTFLOWS_VER', '1.5.21' );
    138138            define( 'CARTFLOWS_SLUG', 'cartflows' );
    139139            define( 'CARTFLOWS_SETTINGS', 'cartflows_settings' );
  • cartflows/trunk/languages/cartflows.pot

    r2413027 r2413238  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: CartFlows 1.5.20\n"
     5"Project-Id-Version: CartFlows 1.5.21\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cartflows\n"
    7 "POT-Creation-Date: 2020-11-05 06:07:50+00:00\n"
     7"POT-Creation-Date: 2020-11-05 12:33:23+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=utf-8\n"
  • cartflows/trunk/modules/flow/classes/class-cartflows-permalink.php

    r2413027 r2413238  
    143143        }
    144144
     145        // Bail if name is set and query cout is not 2.
     146        if ( ! empty( $query->query['name'] ) && 2 !== count( $query->query ) ) {
     147            return;
     148        }
     149
     150        // Bail if page_id is set but page is not true. Added when step is set as homepage.
     151        if ( ! empty( $query->query_vars['page_id'] ) && empty( $query->is_page ) ) {
     152            return;
     153        }
     154
    145155        // Add cartflows step post type to existing post type array.
    146156        if ( isset( $query->query_vars['post_type'] ) && is_array( $query->query_vars['post_type'] ) ) {
  • cartflows/trunk/readme.txt

    r2413027 r2413238  
    55Requires at least: 4.4
    66Tested up to: 5.5.3
    7 Stable tag: 1.5.20
     7Stable tag: 1.5.21
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    128128== Changelog ==
    129129
     130= Version 1.5.21 - Thursday, 5th November 2020 =
     131* Fix: Pages showing 404 error due to permalink issue.
     132
    130133= Version 1.5.20 - Thursday, 5th November 2020 =
    131134* New: Introduced [Gutenberg Blocks](https://cartflows.com/docs/cartflows-gutenberg-blocks/).
Note: See TracChangeset for help on using the changeset viewer.