Site logo

Archived topic

Replace cart in nav bar

4 replies · Started by nictic on July 26, 2017

Viewing posts 1–5 of 5

I would like the cart to have a dropdown that displays the cart items and total etc so I was thinking of replacing the default with Menu Cart Pro. How would I go about replacing the GP cart with the Menu Cart shortcode [ wpmenucart ] or perhaps using the php shortcode <?php echo do_shortcode('[wpmenucart]'); ?> ?

You could just turn off the GP cart item, then do this:

add_action( 'generate_inside_navigation', 'tu_wpmenucart' );
function tu_wpmenucart() {
    ?>
    <div class="menu-cart">
        <?php echo do_shortcode('[wpmenucart]'); ?>
    </div>
    <?php
}

There are some display issues, Would you be able to take a look please? Can I mail you the link?

Done, thanks

This archived topic is closed to new replies.