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

Home Forums Themes Support Gecko Problem Ajax popup cart not showing up (mini cart from right side instead)

Viewing 4 reply threads
  • Author
    Posts
    • #35845
      hgus
      Support 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.
    • #35848
      Harry
      Support 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

    • #35851
      hgus
      Support 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 😉

    • #35852
      Harry
      Support 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

    • #36061
      Harry
      Support 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

Viewing 4 reply threads

You must be logged in to reply to this topic.