Home / Woo-Commerce (page 8)

Woo-Commerce

September, 2017

March, 2016

February, 2016

  • 26 February

    WooCommerce All Shortcodes List here

    [woocommerce_cart] – shows the cart page [woocommerce_checkout] – shows the checkout page [woocommerce_order_tracking] – shows the order tracking form [woocommerce_my_account] – shows the user account page [woocommerce_edit_account] – Edit account pages [woocommerce_change_password] – shows the change password page [woocommerce_view_order] – shows the user account view order page [woocommerce_logout] – shows …

  • 18 February

    How to Display Product specific category with WooCommerce ?

    [tblock tcuscolor="#444" title="How to Display Product specific category with WooCommerce ?" tag="h3"/] <?php $cate = get_queried_object(); $cateID = $cate->term_id; $args = array( 'hierarchical' => 1, 'show_option_none' => '', 'hide_empty' => 0, 'parent' => $cateID, 'taxonomy' => 'product_cat' ); $subcats = get_categories($args); foreach ($subcats as $sc) { $link = get_term_link( $sc->slug, …