Changeset 2230898
- Timestamp:
- 01/21/2020 11:44:56 AM (6 years ago)
- Location:
- wp-amazon-shop/trunk
- Files:
-
- 4 edited
-
includes/wp-amazon-shop-plugin.php (modified) (1 diff)
-
includes/wp-amazon-shop-settings.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-amazon-shop.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-amazon-shop/trunk/includes/wp-amazon-shop-plugin.php
r2221964 r2230898 151 151 update_option('acl_wpas_buy_now_label','Buy Now'); 152 152 } 153 if(!get_option('acl_wpas_enable_direct_cart') ) {154 update_option('acl_wpas_enable_direct_cart','o n');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'); 155 155 } 156 156 if(!get_option('acl_wpas_namano_shoro')) { -
wp-amazon-shop/trunk/includes/wp-amazon-shop-settings.php
r2221964 r2230898 58 58 require_once( 'wp-amazon-shop-info-page.php'); 59 59 } 60 61 62 60 // Add settings link to plugins page 63 61 //add_filter( 'plugin_action_links_' . plugin_basename( $this->parent->file ) , array( $this, 'add_settings_link' ) ); … … 208 206 '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' ), 209 207 'type' => 'checkbox', 210 'default' => 'o n'208 'default' => 'off' 211 209 ), 212 210 /*array( … … 423 421 // Build page HTML 424 422 $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"; 426 424 if(!get_option('acl_wpas_chrome_ext_auth')){ 427 425 $html.=$this->chrome_addon_notice(); -
wp-amazon-shop/trunk/readme.txt
r2221964 r2230898 343 343 *Error fixed for help page 344 344 *Update issue fixed. 345 = 2.0. 5=345 = 2.0.6= 346 346 *Info page,Feedback are updated 347 347 *Update on readme. … … 349 349 *Speed up the search & products by keyword shortcodes. 350 350 *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 2 2 /* 3 3 * Plugin Name: WP Amazon Shop for Dropshipping & Affiliation 4 * Version: 2.0. 74 * Version: 2.0.8 5 5 * Plugin URI: http://www.amadercode.com/wp-amazon-shop-drop-shipping-affiliation 6 6 * Description: Search and build products from Amazon store to make easy money by affiliation & dropshipping. No hassle, no coding, no amazon aws keys!. … … 9 9 * Requires at least: 4.0 10 10 * Tested up to: 5.3 11 * Stable tag: 2.0.8 11 12 * Text Domain: wp-amazon-shop 12 13 * Domain Path: /lang/ … … 15 16 16 17 if ( ! defined( 'ABSPATH' ) ) exit; 17 define( 'ACL_WPAS_VERSION', '2.0. 7' );18 define( 'ACL_WPAS_VERSION', '2.0.8' ); 18 19 define( 'ACL_WPAS_REQUIRED_PHP_VERSION', '5.3.0' ); 19 20 define( 'ACL_WPAS_WP_VERSION', '4.0' );
Note: See TracChangeset
for help on using the changeset viewer.