קוד PHP המאפשר להציג איפה שתרצו את מספר הפריטים שיש כרגע בסל הקניות.
יש להעתיק את הקוד לקובץ ה- functions.php שבתבנית הבת שלכם,
על מנת להציג את מס’ הפריטים בסל יש להשתמש בשורטקוד הבא: [cart_count]
// Add Shortcode [cart_count]
function get_cart_count() {
// Code
/**
* Check if WooCommerce is active
**/
if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
global $woocommerce;
return $woocommerce->cart->cart_contents_count;
}
}
add_shortcode( 'cart_count', 'get_cart_count' );