コード例 #1
0
ファイル: order_tracking.php プロジェクト: rszczypka/jigoshop
/**
 * Order tracking shortcode
 *
 * DISCLAIMER
 *
 * Do not edit or add directly to this file if you wish to upgrade Jigoshop to newer
 * versions in the future. If you wish to customise Jigoshop core for your needs,
 * please use our GitHub repository to publish essential changes for consideration.
 *
 * @package    Jigoshop
 * @category   Customer
 * @author     Jigowatt
 * @copyright  Copyright (c) 2011 Jigowatt Ltd.
 * @license    http://jigoshop.com/license/commercial-edition
 */

function get_jigoshop_order_tracking ($atts) {
	return jigoshop::shortcode_wrapper('jigoshop_order_tracking', $atts); 
}
コード例 #2
0
ファイル: pay.php プロジェクト: rszczypka/jigoshop
/**
 * Payment page shortcode
 *
 * DISCLAIMER
 *
 * Do not edit or add directly to this file if you wish to upgrade Jigoshop to newer
 * versions in the future. If you wish to customise Jigoshop core for your needs,
 * please use our GitHub repository to publish essential changes for consideration.
 *
 * @package    Jigoshop
 * @category   Checkout
 * @author     Jigowatt
 * @copyright  Copyright (c) 2011 Jigowatt Ltd.
 * @license    http://jigoshop.com/license/commercial-edition
 */

function get_jigoshop_pay( $atts ) {
	return jigoshop::shortcode_wrapper('jigoshop_pay', $atts); 
}
コード例 #3
0
ファイル: my_account.php プロジェクト: rszczypka/jigoshop
function get_jigoshop_view_order () {
	return jigoshop::shortcode_wrapper('jigoshop_view_order'); 
}	
コード例 #4
0
ファイル: checkout.php プロジェクト: rszczypka/jigoshop
/**
 * Checkout shortcode
 *
 * DISCLAIMER
 *
 * Do not edit or add directly to this file if you wish to upgrade Jigoshop to newer
 * versions in the future. If you wish to customise Jigoshop core for your needs,
 * please use our GitHub repository to publish essential changes for consideration.
 *
 * @package    Jigoshop
 * @category   Checkout
 * @author     Jigowatt
 * @copyright  Copyright (c) 2011 Jigowatt Ltd.
 * @license    http://jigoshop.com/license/commercial-edition
 */

function get_jigoshop_checkout( $atts ) {
	return jigoshop::shortcode_wrapper('jigoshop_checkout', $atts);
}
コード例 #5
0
ファイル: thankyou.php プロジェクト: rszczypka/jigoshop
/**
 * Thank you shortcode
 *
 * DISCLAIMER
 *
 * Do not edit or add directly to this file if you wish to upgrade Jigoshop to newer
 * versions in the future. If you wish to customise Jigoshop core for your needs,
 * please use our GitHub repository to publish essential changes for consideration.
 *
 * @package    Jigoshop
 * @category   Checkout
 * @author     Jigowatt
 * @copyright  Copyright (c) 2011 Jigowatt Ltd.
 * @license    http://jigoshop.com/license/commercial-edition
 */

function get_jigoshop_thankyou( $atts ) {
	return jigoshop::shortcode_wrapper('jigoshop_thankyou', $atts); 
}