Version Description
- Updated the broken settings menu link
- Updated the NextGen gallery integration to return $arg1 rather than $arg2
Download this release
Release Info
Developer | mra13 |
Plugin | WordPress Simple PayPal Shopping Cart |
Version | 3.8.6 |
Comparing to | |
See all releases |
Code changes from version 3.8.5 to 3.8.6
- readme.txt +6 -2
- wp_shopping_cart.php +3 -3
- wp_shopping_cart_misc_functions.php +1 -2
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Ruhul Amin, Tips and Tricks HQ
|
|
3 |
Donate link: http://www.tipsandtricks-hq.com
|
4 |
Tags: cart, shopping cart, WordPress shopping cart, Paypal shopping cart, sell products, online shop, shop, e-commerce, wordpress ecommerce, wordpress store, store, PayPal cart widget, sell digital products, digital downloads, paypal, paypal cart, e-shop,
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.6
|
7 |
-
Stable tag: 3.8.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Very easy to use Simple WordPress Paypal Shopping Cart Plugin. Great for selling products online in one click from your WordPress site.
|
@@ -118,6 +118,10 @@ Visit the plugin site at http://www.tipsandtricks-hq.com/?p=768 for screenshots.
|
|
118 |
None
|
119 |
|
120 |
== Changelog ==
|
|
|
|
|
|
|
|
|
121 |
= 3.8.5 =
|
122 |
- Added an email settings menu where the site admin can customize the buyer email that gets sent after a transaction
|
123 |
- Also, added the following dynamic email tags for the email body field:
|
3 |
Donate link: http://www.tipsandtricks-hq.com
|
4 |
Tags: cart, shopping cart, WordPress shopping cart, Paypal shopping cart, sell products, online shop, shop, e-commerce, wordpress ecommerce, wordpress store, store, PayPal cart widget, sell digital products, digital downloads, paypal, paypal cart, e-shop,
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.6.1
|
7 |
+
Stable tag: 3.8.6
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Very easy to use Simple WordPress Paypal Shopping Cart Plugin. Great for selling products online in one click from your WordPress site.
|
118 |
None
|
119 |
|
120 |
== Changelog ==
|
121 |
+
= 3.8.6 =
|
122 |
+
- Updated the broken settings menu link
|
123 |
+
- Updated the NextGen gallery integration to return $arg1 rather than $arg2
|
124 |
+
|
125 |
= 3.8.5 =
|
126 |
- Added an email settings menu where the site admin can customize the buyer email that gets sent after a transaction
|
127 |
- Also, added the following dynamic email tags for the email body field:
|
wp_shopping_cart.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Simple Paypal Shopping cart
|
4 |
-
Version: v3.8.
|
5 |
Plugin URI: http://www.tipsandtricks-hq.com/?p=768
|
6 |
Author: Ruhul Amin
|
7 |
Author URI: http://www.tipsandtricks-hq.com/
|
@@ -12,7 +12,7 @@ if(!isset($_SESSION)){
|
|
12 |
session_start();
|
13 |
}
|
14 |
|
15 |
-
define('WP_CART_VERSION', '3.8.
|
16 |
define('WP_CART_FOLDER', dirname(plugin_basename(__FILE__)));
|
17 |
define('WP_CART_PATH',plugin_dir_path( __FILE__ ));
|
18 |
define('WP_CART_URL', plugins_url('',__FILE__));
|
@@ -759,7 +759,7 @@ register_activation_hook(__FILE__,'wpspc_plugin_install');
|
|
759 |
function wp_simple_cart_add_settings_link($links, $file)
|
760 |
{
|
761 |
if ($file == plugin_basename(__FILE__)){
|
762 |
-
$settings_link = '<a href="options-general.php?page=
|
763 |
array_unshift($links, $settings_link);
|
764 |
}
|
765 |
return $links;
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Simple Paypal Shopping cart
|
4 |
+
Version: v3.8.6
|
5 |
Plugin URI: http://www.tipsandtricks-hq.com/?p=768
|
6 |
Author: Ruhul Amin
|
7 |
Author URI: http://www.tipsandtricks-hq.com/
|
12 |
session_start();
|
13 |
}
|
14 |
|
15 |
+
define('WP_CART_VERSION', '3.8.6');
|
16 |
define('WP_CART_FOLDER', dirname(plugin_basename(__FILE__)));
|
17 |
define('WP_CART_PATH',plugin_dir_path( __FILE__ ));
|
18 |
define('WP_CART_URL', plugins_url('',__FILE__));
|
759 |
function wp_simple_cart_add_settings_link($links, $file)
|
760 |
{
|
761 |
if ($file == plugin_basename(__FILE__)){
|
762 |
+
$settings_link = '<a href="options-general.php?page=wordpress-paypal-shopping-cart">'.(__("Settings", "WSPSC")).'</a>';
|
763 |
array_unshift($links, $settings_link);
|
764 |
}
|
765 |
return $links;
|
wp_shopping_cart_misc_functions.php
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
/* TODO
|
4 |
-
- add email menu
|
5 |
- Simple discount coupons option (see the user submitted coupon code version and incorporate that in here)
|
6 |
- Mention the available languages
|
7 |
*/
|
@@ -90,7 +89,7 @@ function wp_cart_ngg_template_handler($arg1,$arg2)
|
|
90 |
$gallery_template = WP_CART_PATH. "/lib/$template_name.php";
|
91 |
return $gallery_template;
|
92 |
}
|
93 |
-
return $
|
94 |
}
|
95 |
|
96 |
function wpspc_insert_new_record()
|
1 |
<?php
|
2 |
|
3 |
/* TODO
|
|
|
4 |
- Simple discount coupons option (see the user submitted coupon code version and incorporate that in here)
|
5 |
- Mention the available languages
|
6 |
*/
|
89 |
$gallery_template = WP_CART_PATH. "/lib/$template_name.php";
|
90 |
return $gallery_template;
|
91 |
}
|
92 |
+
return $arg1;
|
93 |
}
|
94 |
|
95 |
function wpspc_insert_new_record()
|