HomePage › Forums › Themes Support › Bookory – Book Store WooCommerce Theme › Shopping cart
- This topic has 5 replies, 3 voices, and was last updated 4 weeks, 1 day ago by
mstrhans.
-
AuthorPosts
-
April 1, 2023 at 3:49 am #33173
Hi urgent need for support!
After updating WordPress, the shopping cart doesn’t display any items, also no go to checkout button. Can you please help to restore this?
Regards
JohnApril 1, 2023 at 4:14 am #33174Meantime I have deactivated Elementor pro as I have read from other support tickets that this is causing the problem. So looking forward for the fix for this problem,
Regards
April 3, 2023 at 4:27 pm #33245Hi,
yes, we are currently checking what is the issue between the theme and the Elementor Pro plugin. We will take care of this issue and update in the upcoming theme version.
You should temporarily disable the Elementor Pro plugin to fix this issue.April 3, 2023 at 9:53 pm #33264I hope this can be fixed soon? Elementor Pro seems to have a serious security issue. And indeed my live-site has been hacked. My site cannot work without the pro version
https://elementor.com/help/elementor3-11-7-security-vulnerability-resolved/
April 21, 2023 at 8:18 pm #33907Is this issue already resolved?
May 5, 2023 at 8:25 pm #34364John;
put this in functions php;add_filter( ‘woocommerce_add_to_cart_fragments’, ‘elementor_pro_cart_count_fragments’ , 1, 9999 );
function elementor_pro_cart_count_fragments($fragments) {
ob_start();
woocommerce_mini_cart();
$mini_cart = ob_get_clean();
$fragments[‘div.widget_shopping_cart’] = ‘<div class=”widget woocommerce widget_shopping_cart”><div class=”widget_shopping_cart_content”>’ . $mini_cart . ‘</div></div>’;return $fragments;
}
} -
AuthorPosts
You must be logged in to reply to this topic.