Home › Forums › Themes Support › Gecko › Problem Ajax popup cart not showing up (mini cart from right side instead)
- This topic has 4 replies, 2 voices, and was last updated 4 years, 8 months ago by Harry.
-
AuthorPosts
-
-
April 4, 2020 at 2:41 am #35845hgusSupport Expired
Hi,
After a fresh wp install + gecko theme, imported samples datas ok :
> when adding to cart from quickview popup, we want the same as on your demo : a popup cart with details (see picture joined)
That’s one of the reason we’ve bought this theme.Instead of it it’s the lateral mini-cart showing up.(see picture joined)
How to solve it ?
Thanks,
(site is protected with htaccess password, how to give you secretly these ids in addition to admin ids ?)Attachments:
You must be logged in to view attached files. -
April 4, 2020 at 11:18 am #35848HarrySupport Expired
Hi Hgus,
Thank you for choose our theme. You can change cart popup in JanStudio > Theme Options > WooCommerce > Product Detail Setting > Add To Cart behavior and change from Slide Sidebar to Popup with up-sell product.
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio -
April 4, 2020 at 9:15 pm #35851hgusSupport Expired
Hi,
Thanks I was lost in all configs !
And is it possible to have also this checkout summary popup openning when cart icon is clicked ?
(instead of lateral slide sidebat cart)Tanks 😉
-
April 4, 2020 at 10:48 pm #35852HarrySupport Expired
I’m sorry it doesn’t have option to click icon cart show popup. It only slide cart when click icon.
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio -
April 17, 2020 at 10:16 am #36061HarrySupport Expired
Hi,
you can change icon link to shopping cart page by add below code to claue-child > functions.php
if ( ! function_exists( 'jas_claue_wc_shopping_cart' ) ) { function jas_claue_wc_shopping_cart() { global $woocommerce; // Catalog mode $catalog_mode = cs_get_option( 'wc-catalog' ); if ( $catalog_mode ) return; $output = ''; $output .= '<div class="jas-icon-mini-cart pr">'; $output .= '<a class="pr cb chp db" href="' . esc_url(wc_get_cart_url()) . '" title="' . esc_html( 'View your shopping cart', 'claue' ) . '">'; $output .= '<i class="pe-7s-shopbag"></i>'; $output .= '<span class="pa count bgb br__50 cw tc">' . esc_html( $woocommerce->cart->get_cart_contents_count() ) . '</span>'; $output .= '</a>'; $output .= '</div>'; return apply_filters( 'jas_claue_wc_shopping_cart', $output ); } }
and below code to claue-child > style.css
.pa.count.tc { width: 20px; height: 20px; font-size: 11px; }
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio
-
-
AuthorPosts
You must be logged in to reply to this topic.