Your account expired support, please renew to get your support.

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Mini Cart not showing #31913
    bghazy
    Support Expired

    Thanks a lot, this  solved the problem of open cart, Is there a solution for the separator problem.

    in reply to: Mini Cart not showing #31905
    bghazy
    Support Expired

    Same error nothing changed,

    i need to show mini cart like attached from theme demo instead of the shown above

    Attachments:
    You must be logged in to view attached files.
    bghazy
    Support Expired

    I solved it by editing this function “wpa_wcpb_onchange_input_check_total_discount” at

    “wp-content/plugins/wpa-woocommerce-product-bundle/assets/js/wcpb-frontend.js”

    from this

    jQuery(‘.px-product-bundles input[type=checkbox]:checked’).each(function(){
    var parent = jQuery(this).parent().parent(),
    price = parent.attr(‘data-item-price-with-filter’),
    new_price = parseFloat( price ) – parseFloat( price ) * parseFloat( bundle_percent ) / 100;

    to this

    jQuery(‘.px-product-bundles input[type=checkbox]:checked’).each(function(){

    var parent = jQuery(this).parent().parent(),
    price = parent.attr(‘data-item-price-with-filter’),
    price=parseFloat( price.replace(‘,’, ”) ),
    pricepercent=(price * parseFloat( bundle_percent ) / 100),
    new_price = parseFloat( price ) – pricepercent;

     

Viewing 3 posts - 1 through 3 (of 3 total)