Answers for "woocommerce cart widget shortcode"

PHP
0

woocommerce cart button shortcode

[woocommerce_cart]
Posted by: Guest on April-22-2021
0

woocommerce mini cart

function custom_mini_cart() { 
    echo '<a href="#" class="dropdown-back" data-toggle="dropdown"> ';
    echo '<i class="fa fa-shopping-cart" aria-hidden="true"></i>';
    echo '<div class="basket-item-count" style="display: inline;">';
        echo '<span class="cart-items-count count">';
            echo WC()->cart->get_cart_contents_count();
        echo '</span>';
    echo '</div>';
    echo '</a>';
    echo '<ul class="dropdown-menu dropdown-menu-mini-cart">';
        echo '<li> <div class="widget_shopping_cart_content">';
                  woocommerce_mini_cart();
            echo '</div></li></ul>';

      }
       add_shortcode( '[custom-techno-mini-cart]', 'custom_mini_cart' );
Posted by: Guest on November-16-2020
0

woocommerce mini cart

<?php echo do_shortcode(['custom-techno-mini-cart']); ?>
Posted by: Guest on November-16-2020

Code answers related to "woocommerce cart widget shortcode"

Browse Popular Code Answers by Language