Version Description
- Updated reademe file for instruction and notes
Download this release
Release Info
Developer | terrytsang |
Plugin | WooCommerce Direct Checkout |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.4 to 1.0.3
- .project +11 -0
- images/direct-checkout-pro-version.png +0 -0
- readme.txt +4 -12
- wc-direct-checkout.php +3 -8
.project
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<projectDescription>
|
3 |
+
<name>woocommerce-direct-checkout</name>
|
4 |
+
<comment></comment>
|
5 |
+
<projects>
|
6 |
+
</projects>
|
7 |
+
<buildSpec>
|
8 |
+
</buildSpec>
|
9 |
+
<natures>
|
10 |
+
</natures>
|
11 |
+
</projectDescription>
|
images/direct-checkout-pro-version.png
DELETED
Binary file
|
readme.txt
CHANGED
@@ -5,13 +5,13 @@ Plugin Name: WooCommerce Custom Direct Checkout
|
|
5 |
Plugin URI: http://terrytsang.com/shop/shop/woocommerce-direct-checkout/
|
6 |
Tags: woocommerce, custom fields, direct, checkout, e-commerce
|
7 |
Requires at least: 2.7
|
8 |
-
Tested up to: 3.
|
9 |
-
Stable tag: 1.0.
|
10 |
-
Version: 1.0.
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
14 |
-
You can skip shopping cart page and implement add to cart button redirect to checkout page or you can redirect to other existing page.
|
15 |
|
16 |
== Description ==
|
17 |
|
@@ -32,13 +32,9 @@ In WooCommerce Settings Panel, there will be a new submenu link called 'Direct C
|
|
32 |
* Do use POEdit and open 'wc-direct-checkout.pot' file and save the file as wc-direct-checkout-[language code].po, then put that into languages folder for this plugin.
|
33 |
* Please uncheck the option "Enable AJAX add to cart buttons on archives" at WooCommerce > Settings > Catalog to make the rediection working without ajax.
|
34 |
|
35 |
-
= GET PRO VERSION =
|
36 |
-
http://terrytsang.com/shop/shop/woocommerce-direct-checkout-pro/
|
37 |
-
|
38 |
= Additional Plugins by Terry Tsang =
|
39 |
* [Custom Checkout Options] (http://terrytsang.com/shop/shop/woocommerce-custom-checkout-options/)
|
40 |
* [Social Buttons PRO] (http://terrytsang.com/shop/shop/woocommerce-social-buttons-pro/)
|
41 |
-
* [Extra Fee Options PRO] (http://terrytsang.com/shop/shop/woocommerce-extra-fee-option-pro/)
|
42 |
|
43 |
|
44 |
== Installation ==
|
@@ -56,10 +52,6 @@ http://terrytsang.com/shop/shop/woocommerce-direct-checkout-pro/
|
|
56 |
|
57 |
== Changelog ==
|
58 |
|
59 |
-
= 1.0.4 =
|
60 |
-
|
61 |
-
* Added pro version link
|
62 |
-
|
63 |
= 1.0.3 =
|
64 |
|
65 |
* Updated reademe file for instruction and notes
|
5 |
Plugin URI: http://terrytsang.com/shop/shop/woocommerce-direct-checkout/
|
6 |
Tags: woocommerce, custom fields, direct, checkout, e-commerce
|
7 |
Requires at least: 2.7
|
8 |
+
Tested up to: 3.5.2
|
9 |
+
Stable tag: 1.0.3
|
10 |
+
Version: 1.0.3
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
14 |
+
You can skip shopping cart page and implement add to cart button redirect to checkout page or you can redirect to other existing page. This can lead to an immediate increase in sales.
|
15 |
|
16 |
== Description ==
|
17 |
|
32 |
* Do use POEdit and open 'wc-direct-checkout.pot' file and save the file as wc-direct-checkout-[language code].po, then put that into languages folder for this plugin.
|
33 |
* Please uncheck the option "Enable AJAX add to cart buttons on archives" at WooCommerce > Settings > Catalog to make the rediection working without ajax.
|
34 |
|
|
|
|
|
|
|
35 |
= Additional Plugins by Terry Tsang =
|
36 |
* [Custom Checkout Options] (http://terrytsang.com/shop/shop/woocommerce-custom-checkout-options/)
|
37 |
* [Social Buttons PRO] (http://terrytsang.com/shop/shop/woocommerce-social-buttons-pro/)
|
|
|
38 |
|
39 |
|
40 |
== Installation ==
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
|
|
55 |
= 1.0.3 =
|
56 |
|
57 |
* Updated reademe file for instruction and notes
|
wc-direct-checkout.php
CHANGED
@@ -3,12 +3,12 @@
|
|
3 |
Plugin Name: WooCommerce Direct Checkout
|
4 |
Plugin URI: http://terrytsang.com/shop/shop/woocommerce-direct-checkout/
|
5 |
Description: Allow you to implement direct checkout (skip cart page) for WooCommerce
|
6 |
-
Version: 1.0.
|
7 |
Author: Terry Tsang
|
8 |
Author URI: http://shop.terrytsang.com
|
9 |
*/
|
10 |
|
11 |
-
/* Copyright 2012-
|
12 |
|
13 |
This program is free software; you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License as published by
|
@@ -29,7 +29,7 @@ Author URI: http://shop.terrytsang.com
|
|
29 |
define('wc_plugin_name_direct_checkout', 'WooCommerce Direct Checkout');
|
30 |
|
31 |
// Define plugin version
|
32 |
-
define('wc_version_direct_checkout', '1.0.
|
33 |
|
34 |
|
35 |
// Checks if the WooCommerce plugins is installed and active.
|
@@ -231,11 +231,6 @@ if(in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_o
|
|
231 |
<td width="30%" style="background:#ececec;padding:10px 5px;" valign="top">
|
232 |
<p><b>WooCommerce Direct Checkout</b> is a FREE woocommerce plugin developed by <a href="http://shop.terrytsang.com" target="_blank" title="Terry Tsang - a PHP Developer and Wordpress Consultant">Terry Tsang</a>. This plugin aims to add direct checkout for WooCommerce.</p>
|
233 |
|
234 |
-
<?php
|
235 |
-
$get_pro_image = WooCommerce_Direct_Checkout::$plugin_url . '/images/direct-checkout-pro-version.png';
|
236 |
-
?>
|
237 |
-
<div align="center"><a href="http://terrytsang.com/shop/shop/woocommerce-direct-checkout-pro/" target="_blank" title="WooCommerce Direct Checkout PRO"><img src="<?php echo $get_pro_image; ?>" border="0" /></a></div>
|
238 |
-
|
239 |
<h3>Get More Plugins</h3>
|
240 |
|
241 |
<p><a href="http://shop.terrytsang.com" target="_blank" title="Premium & Free Extensions/Plugins for E-Commerce by Terry Tsang">Go to My Site</a> to get more free and premium extensions/plugins for your ecommerce sites.</p>
|
3 |
Plugin Name: WooCommerce Direct Checkout
|
4 |
Plugin URI: http://terrytsang.com/shop/shop/woocommerce-direct-checkout/
|
5 |
Description: Allow you to implement direct checkout (skip cart page) for WooCommerce
|
6 |
+
Version: 1.0.3
|
7 |
Author: Terry Tsang
|
8 |
Author URI: http://shop.terrytsang.com
|
9 |
*/
|
10 |
|
11 |
+
/* Copyright 2012-2013 Terry Tsang (email: terrytsang811@gmail.com)
|
12 |
|
13 |
This program is free software; you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License as published by
|
29 |
define('wc_plugin_name_direct_checkout', 'WooCommerce Direct Checkout');
|
30 |
|
31 |
// Define plugin version
|
32 |
+
define('wc_version_direct_checkout', '1.0.3');
|
33 |
|
34 |
|
35 |
// Checks if the WooCommerce plugins is installed and active.
|
231 |
<td width="30%" style="background:#ececec;padding:10px 5px;" valign="top">
|
232 |
<p><b>WooCommerce Direct Checkout</b> is a FREE woocommerce plugin developed by <a href="http://shop.terrytsang.com" target="_blank" title="Terry Tsang - a PHP Developer and Wordpress Consultant">Terry Tsang</a>. This plugin aims to add direct checkout for WooCommerce.</p>
|
233 |
|
|
|
|
|
|
|
|
|
|
|
234 |
<h3>Get More Plugins</h3>
|
235 |
|
236 |
<p><a href="http://shop.terrytsang.com" target="_blank" title="Premium & Free Extensions/Plugins for E-Commerce by Terry Tsang">Go to My Site</a> to get more free and premium extensions/plugins for your ecommerce sites.</p>
|