Plugin Directory

Changeset 2230898


Ignore:
Timestamp:
01/21/2020 11:44:56 AM (6 years ago)
Author:
amadercode
Message:

2.0.8 version

Location:
wp-amazon-shop/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-amazon-shop/trunk/includes/wp-amazon-shop-plugin.php

    r2221964 r2230898  
    151151            update_option('acl_wpas_buy_now_label','Buy Now');
    152152        }
    153         if(!get_option('acl_wpas_enable_direct_cart')) {
    154             update_option('acl_wpas_enable_direct_cart','on');
     153        if(!get_option('acl_wpas_enable_direct_cart') || get_option('acl_wpas_enable_direct_cart')=="") {
     154            update_option('acl_wpas_enable_direct_cart','off');
    155155        }
    156156        if(!get_option('acl_wpas_namano_shoro')) {
  • wp-amazon-shop/trunk/includes/wp-amazon-shop-settings.php

    r2221964 r2230898  
    5858            require_once( 'wp-amazon-shop-info-page.php');
    5959        }
    60 
    61 
    6260        // Add settings link to plugins page
    6361        //add_filter( 'plugin_action_links_' . plugin_basename( $this->parent->file ) , array( $this, 'add_settings_link' ) );
     
    208206                    'description'   => __( 'If Enable direct to cart page, then WP amazon shop BUY NOW will redirect the user to cart page instead of product details page.', 'wp-amazon-shop' ),
    209207                    'type'          => 'checkbox',
    210                     'default'       => 'on'
     208                    'default'       => 'off'
    211209                ),
    212210                /*array(
     
    423421        // Build page HTML
    424422        $html= '<div class="wrap" id="' . $this->parent->_token . '_settings">' . "\n";
    425         $html .= '<h2>' . __( 'WP Amazon Shop Settings' , 'wp-amazon-shop' ) . '</h2>' . "\n";
     423        $html .= '<h2>' . __( 'WP Amazon Shop Settings' , 'wp-amazon-shop' ) .'</h2>' . "\n";
    426424        if(!get_option('acl_wpas_chrome_ext_auth')){
    427425            $html.=$this->chrome_addon_notice();
  • wp-amazon-shop/trunk/readme.txt

    r2221964 r2230898  
    343343*Error fixed for help page
    344344*Update issue fixed.
    345 = 2.0.5=
     345= 2.0.6=
    346346*Info page,Feedback are updated
    347347*Update on readme.
     
    349349*Speed up the search & products by keyword shortcodes.
    350350*Major  issue fixed for help page.
     351= 2.0.8=
     352*Direct redirection to amazon store setting option issue fixed.
  • wp-amazon-shop/trunk/wp-amazon-shop.php

    r2221964 r2230898  
    22/*
    33 * Plugin Name: WP Amazon Shop for Dropshipping & Affiliation
    4  * Version: 2.0.7
     4 * Version: 2.0.8
    55 * Plugin URI: http://www.amadercode.com/wp-amazon-shop-drop-shipping-affiliation
    66 * Description: Search and build products from Amazon store to make easy money by affiliation & dropshipping. No hassle, no coding, no amazon aws keys!.
     
    99 * Requires at least: 4.0
    1010 * Tested up to: 5.3
     11 * Stable tag: 2.0.8
    1112 * Text Domain: wp-amazon-shop
    1213 * Domain Path: /lang/
     
    1516
    1617if ( ! defined( 'ABSPATH' ) ) exit;
    17 define( 'ACL_WPAS_VERSION', '2.0.7' );
     18define( 'ACL_WPAS_VERSION', '2.0.8' );
    1819define( 'ACL_WPAS_REQUIRED_PHP_VERSION', '5.3.0' );
    1920define( 'ACL_WPAS_WP_VERSION', '4.0' );
Note: See TracChangeset for help on using the changeset viewer.