Fixed admin ajax
This commit is contained in:
parent
7675fd7ab1
commit
0ab045e16b
|
@ -114,7 +114,7 @@ function woocommerce_custom_product_columns($column) {
|
|||
endif;
|
||||
break;
|
||||
case "featured" :
|
||||
$url = wp_nonce_url( admin_url('admin-ajax.php?action=woocommerce-feature-product&product_id=' . $post->ID) );
|
||||
$url = wp_nonce_url( admin_url('admin-ajax.php?action=woocommerce-feature-product&product_id=' . $post->ID), 'woocommerce-feature-product' );
|
||||
echo '<a href="'.$url.'" title="'.__('Change', 'woocommerce') .'">';
|
||||
if ($product->is_featured()) echo '<a href="'.$url.'"><img src="'.$woocommerce->plugin_url().'/assets/images/success.gif" alt="yes" />';
|
||||
else echo '<img src="'.$woocommerce->plugin_url().'/assets/images/success-off.gif" alt="no" />';
|
||||
|
|
|
@ -123,8 +123,8 @@ function woocommerce_custom_order_columns($column) {
|
|||
case "order_actions" :
|
||||
|
||||
?><p>
|
||||
<?php if (in_array($order->status, array('pending', 'on-hold'))) : ?><a class="button" href="<?php echo wp_nonce_url( admin_url('admin-ajax.php?action=woocommerce-mark-order-processing&order_id=' . $post->ID) ); ?>"><?php _e('Processing', 'woocommerce'); ?></a><?php endif; ?>
|
||||
<?php if (in_array($order->status, array('pending', 'on-hold', 'processing'))) : ?><a class="button" href="<?php echo wp_nonce_url( admin_url('admin-ajax.php?action=woocommerce-mark-order-complete&order_id=' . $post->ID) ); ?>"><?php _e('Complete', 'woocommerce'); ?></a><?php endif; ?>
|
||||
<?php if (in_array($order->status, array('pending', 'on-hold'))) : ?><a class="button" href="<?php echo wp_nonce_url( admin_url('admin-ajax.php?action=woocommerce-mark-order-processing&order_id=' . $post->ID), 'woocommerce-mark-order-processing' ); ?>"><?php _e('Processing', 'woocommerce'); ?></a><?php endif; ?>
|
||||
<?php if (in_array($order->status, array('pending', 'on-hold', 'processing'))) : ?><a class="button" href="<?php echo wp_nonce_url( admin_url('admin-ajax.php?action=woocommerce-mark-order-complete&order_id=' . $post->ID), 'woocommerce-mark-order-complete' ); ?>"><?php _e('Complete', 'woocommerce'); ?></a><?php endif; ?>
|
||||
<a class="button" href="<?php echo admin_url('post.php?post='.$post->ID.'&action=edit'); ?>"><?php _e('View', 'woocommerce'); ?></a>
|
||||
</p><?php
|
||||
|
||||
|
|
|
@ -186,7 +186,7 @@ function woocommerce_feature_product() {
|
|||
|
||||
if( !current_user_can('edit_posts') ) wp_die( __('You do not have sufficient permissions to access this page.', 'woocommerce') );
|
||||
|
||||
if( !check_admin_referer()) wp_die( __('You have taken too long. Please go back and retry.', 'woocommerce') );
|
||||
if( !check_admin_referer('woocommerce-feature-product')) wp_die( __('You have taken too long. Please go back and retry.', 'woocommerce') );
|
||||
|
||||
$post_id = isset($_GET['product_id']) && (int)$_GET['product_id'] ? (int)$_GET['product_id'] : '';
|
||||
|
||||
|
@ -215,7 +215,7 @@ function woocommerce_mark_order_complete() {
|
|||
|
||||
if( !is_admin() ) die;
|
||||
if( !current_user_can('edit_posts') ) wp_die( __('You do not have sufficient permissions to access this page.', 'woocommerce') );
|
||||
if( !check_admin_referer()) wp_die( __('You have taken too long. Please go back and retry.', 'woocommerce') );
|
||||
if( !check_admin_referer('woocommerce-mark-order-complete')) wp_die( __('You have taken too long. Please go back and retry.', 'woocommerce') );
|
||||
$order_id = isset($_GET['order_id']) && (int) $_GET['order_id'] ? (int) $_GET['order_id'] : '';
|
||||
if(!$order_id) die;
|
||||
|
||||
|
@ -234,7 +234,7 @@ function woocommerce_mark_order_processing() {
|
|||
|
||||
if( !is_admin() ) die;
|
||||
if( !current_user_can('edit_posts') ) wp_die( __('You do not have sufficient permissions to access this page.', 'woocommerce') );
|
||||
if( !check_admin_referer()) wp_die( __('You have taken too long. Please go back and retry.', 'woocommerce') );
|
||||
if( !check_admin_referer('woocommerce-mark-order-processing')) wp_die( __('You have taken too long. Please go back and retry.', 'woocommerce') );
|
||||
$order_id = isset($_GET['order_id']) && (int) $_GET['order_id'] ? (int) $_GET['order_id'] : '';
|
||||
if(!$order_id) die;
|
||||
|
||||
|
|
Loading…
Reference in New Issue