Plugin Directory

Changeset 3028641

Timestamp:
01/30/2024 09:51:01 AM (6 months ago)
Author:
rcreators
Message:

Translation Ready

Location:
woocommerce-ajax-add-to-cart-for-variable-products
Files:
7 added
2 edited

Legend:

Unmodified
Added
Removed
  • woocommerce-ajax-add-to-cart-for-variable-products/trunk/readme.txt

    r2445660 r3028641  
    33Donate link: NA
    44Tags: Woocommerce, Ajax, Variable Products, Add to cart
    5 Requires at least: 3.2
    6 Tested up to: 5.6
    7 Stable tag: 2.2
     5Requires at least:
     6Tested up to:
     7Stable tag: 2.2
    88WC requires at least: 3.0
    9 WC tested up to: 4.8.0
     9WC tested up to:
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4545
    4646== Changelog ==
     47
     48
     49
     50
    4751= 2.2 =
    4852* Fixed - PHP Error at line no 157 for $this. Removed code, it was not required for new version of WP
  • woocommerce-ajax-add-to-cart-for-variable-products/trunk/woocommerce-ajax-add-to-cart-variable-products.php

    r2445659 r3028641  
    55Description: Ajax based add to cart for varialbe products in woocommerce.
    66Author: Rishi Mehta - Rcreators Websolutions
    7 Version: 2.2
     7Version: 2.2
    88Author URI: http://rcreators.com
     9
     10
    911*/
    1012
     
    2628    function wc_ajax_add_to_cart_variable_add_section( $sections ) {
    2729       
    28         $sections['wc_ajax_add_to_cart_variable'] = __( 'WC Ajax for Variable Products', 'rc_wc_variable_ajax' );
     30        $sections['wc_ajax_add_to_cart_variable'] = __( 'WC Ajax for Variable Products', '' );
    2931        return $sections;
    3032       
     
    4446     
    4547            // Add Title to the Settings
    46             $settings_slider[] = array( 'name' => __( 'WC Ajax for Variable Products Settings', 'rc_wc_variable_ajax' ), 'type' => 'title', 'desc' => __( 'The following options are used to configure WC Ajax for Variable Products', 'rc_wc_variable_ajax' ), 'id' => 'wc_ajax_add_to_cart_variable' );
     48            $settings_slider[] = array( 'name' => __( 'WC Ajax for Variable Products Settings', '' ), 'id' => 'wc_ajax_add_to_cart_variable' );
    4749     
    4850            // Add first checkbox option
    4951            $settings_slider[] = array(
    5052     
    51                 'name'     => __( 'Add Selection option to Category Page', 'rc_wc_variable_ajax' ),
    52                 'desc_tip' => __( 'This will automatically insert variable selection options on product Category Archive Page', 'rc_wc_variable_ajax' ),
     53                'name'     => __( 'Add Selection option to Category Page', '' ),
     54                'desc_tip' => __( 'This will automatically insert variable selection options on product Category Archive Page', '' ),
    5355                'id'       => 'wc_ajax_add_to_cart_variable_category_page',
    5456                'type'     => 'checkbox',
    5557                'css'      => 'min-width:300px;',
    56                 'desc'     => __( 'Enable Varition select option on Category Archive page', 'rc_wc_variable_ajax' ),
     58                'desc'     => __( 'Enable Varition select option on Category Archive page', '' ),
    5759     
    5860            );
Note: See TracChangeset for help on using the changeset viewer.