This topic has 5 replies, 3 voices, and was last updated 6 months, 3 weeks ago ago by Rose Tyler
Hello,
I am having issues with the mobile panel not showing up on the cart page.
how can I make it available on the cart page
Hello @Red8,
Thank you for reaching out! As a default setting, we refrain from displaying the Mobile panel on the cart and checkout pages. This approach aims to maintain customers’ focus directly on their orders.
In case you would like to display Mobile panel on those pages you can add the provided PHP snippet directly to your child-theme/functions.php file. This snippet ensures that the Mobile panel is displayed on the Cart & Checkout pages. Here’s how:
add_action( 'init', function () {
if ( apply_filters( 'xstore_theme_amp', false ) ) {
return;
}
add_action( 'after_page_wrapper', function() {
if ( defined('ET_CORE_DIR') && (get_query_var('et_is-cart-page-elementor-shortcode', false) || get_query_var('et_is-checkout-page-elementor-shortcode', false) ) ) {
require( ET_CORE_DIR . 'app/models/customizer/templates/mobile-panel/mobile-panel.php' );
}
}, 1 );
} );
If you encounter any issues or need further assistance, don’t hesitate to let us know. We’re here to help!
Kind regards, Jack Richardson
It is now available on the cart page but not on the checkout page
There is also another issue where the quick add to cart does not show the correct quantity selected but the top cart page shows the correct quantity
Hello @Red8,
It appears that altering the default behavior as per your request requires more additional configurations in the files than initially anticipated.
We regret to inform you that such additional customization falls outside the scope of the basic support we offer through this forum.
Should you require customizations, we invite you to submit a request through our customization panel at the following link: https://www.8theme.com/account/#etheme_customization_panel. Please be aware that customization services will incur additional charges.
Best Regards,
8Theme’s Team
You must be logged in to reply to this topic.Log in/Sign up