https://kriesi.at/support/topic/placing-view-cart-button-in-the-right-of-the-header/?login_error
I basically want to do the same thing with Enfold – How do I?
Hi bodydesignfitness!
Thank you for using Enfold.
Please use this on functions.php:
add_action( 'ava_main_header', 'ava_main_header_view_cart', 10);
function ava_main_header_view_cart() {
global $woocommerce, $avia_config;
$link = $woocommerce->cart->get_cart_url();
$output = "<a class='header_cart_dropdown_link' href='".$link."'>".__('View Cart','avia_framework')."<span ".av_icon_string('cart')."></span></a>";
echo $output;
}
Adjust the position of the cart button with css.
Regards,
Ismael