- Northern Ireland, Isle of Man, Isles of Scilly
- Scottish Highlands and Islands
- Channel Islands
- UK Mainland
Limit to specific ZIP/postcodes
Limit to specific ZIP/postcodes
<?php | |
/** | |
* Display the last visited non-PMPro page in the confirmation message, OR | |
* redirect the member back to the last visited page. | |
* | |
* Usage Guide: | |
* | |
* 1. Set your preference to either display the link or redirect back to | |
* the referrer page by setting the $toggle_display_redirect variable | |
* to true or false. |
<?php | |
# Hide Pages from Search Results | |
if (!is_admin()) { | |
function banting_search_filter($query) { | |
if ($query->is_search) { | |
$query->set('post_type', array( 'post','product')); | |
} | |
return $query; | |
} |
<?php | |
# Redirect Members to a Unique Confirmation Page Based on Membership Level | |
function my_pmpro_confirmation_url( $rurl, $user_id, $pmpro_level ) { | |
if ( '2' === $pmpro_level->id ) { | |
$rurl = '/lvl1'; | |
} elseif ( '6' === $pmpro_level->id ) { | |
$rurl = '/lvl2'; | |
} elseif ( '5' === $pmpro_level->id ) { |
_sku
Total_sales
_tax_status
_price
_regular_price
_sale_price
_stock
_virtual
_stock_status
First goto this url: https://extrassl.actalis.it/portal/uapub/freemail?lang=en Signup for the certificate using the email address. Save the pass the password of certificate. Check your email for the ceritificate
Double click on "PKCS12_Credential_XXXXXXX" file and start certificate import wizard Next
<?php | |
/** | |
* Plugin Name: WooCommerce Display Order Count | |
* Plugin URI: http://www.skyverge.com/product/woocommerce-display-order-count/ | |
* Description: Adds the [wc_order_count] shortcode to display the total number of orders placed on your site. | |
* Author: SkyVerge | |
* Author URI: http://www.skyverge.com/ | |
* Version: 1.1.0 | |
* | |
* GitHub Plugin URI: bekarice/woocommerce-display-order-count |