Is it possible to embed the cart in widget rather than the flying button?
Thanks
]]>Can anyone solve this issue? I’d be open to any alternative recommendations.
]]>Is it possible to fix this, so that the user is not allowed to remove individual products of a bundled product in the sidebar cart? Thank you and congratulations for this time-saving plugin!
]]>Thanks in advance!
Jamie
However, the subtotal seems to show double discount. See below example:
Item 1 price: 23.50
Quantity: 50
Subtotal 952
Actual cart subtotal: 1057.50 (-10% discount – correct)
After adding 50 items in the cart the price change from 23.50 to 21.15 (which is correct).
Multiplied by 50 quantity, the subtotal should be 1057.50 (this is the amount showing in the cart page) but the sidebar cart is showing 952.
Can help me resolve this issue?
Thank you so much for assistance.
I’ve been using Inspect Element to try to find how to how to shrink the circle of icon, but have found a way.
Could you please advise?
Thank you.
This thing has so many config options, I spent 40 min tweaking and playing with it. Cool. And it works. The product slider at the end bottom of the sidecart is a nice touch.
The only things I’d like to see (and I’m being greedy) is
. ability to change the size sidebar cart icon
. Have Ajax enabled sidecart update
. See Shipping type / cost
. Ability to adjust size of products in the slider at the bottom of the cart
And this is only V 1.6.0….Can’t wait to see what the next version has.
Thank you Villa Theme.
]]>I want to take a particular action when adding a product to the cart, whether from the product or product.
After clicking on “add to cart”, I have a right column that opens with the basket in a sidebar but it is necessary that the product is add and increment also in the counter next to the cart icon in my topbar. For now I can show my sidebar. But the product does not add to the basket.
How to do ?
My jquery code :
jQuery(document).ready(function (){
recalculatePageHeight();
jQuery(window).resize(recalculatePageHeight);
function recalculatePageHeight() {
var width_wrap = jQuery('.wrap').width();
var width_window = jQuery(window).width();
var width_total = width_window - width_wrap;
var margin_cart = (width_window - width_wrap) / 2;
jQuery('#cart-topbar').css('right',margin_cart);
};
jQuery('.single_add_to_cart_button').click(function(){
var action = jQuery('#taille').val();
if( action === ""){
jQuery('.variations .value').append('<span id="info-option">Veuillez sélectionner une taille</span>');
}
else{
jQuery('#info-option').css('display','none');
}
if (action != ""){
jQuery('body').addClass('oc-sidebar-opned');
return false;
}
jQuery('.oc-close').click(function(){
jQuery('body').removeClass('oc-sidebar-opned');
});
});
jQuery('.woocommerce-ordering select option').addClass('filter-option');
});
]]>