Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1158113
    krissy28
    Participant

    hi some questions:

    1) what is the ubermenu for http://demo.theme.co/icon-2/? the one that everytime you click the menu it points to a section in the frontpage

    2) why is’t that when i refreshed a product page in my shop, the image occupies the whole width of the page instead of image on the left and description on the right

    3) the logout and the cart look floating in the menu bar – not sure how i can fix this so this will be aligned along with the menu titles

    my website is https://philcrowd.com

    thank you!

    #1158129
    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in!

    1] It seems that you’d like to recreate One Page navigation for your site. Regretfully One page navigation with UberMenu is not yet integrated. It is already in our enhancement list though. once our developers have this, it will be updated and will be rolled out in our next update release.

    2] To assist you better with this issue, would you mind providing us the url of your site with login credentials, if necessary, so we can take a closer look? This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    To do this, you can make a post with the following info:
    – Link to your site

    – WordPress Admin username / password (only if necessary)

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    3] The cart menu icon is a bug which is being displaced when Ubermenu is active. To fix it, since the child theme is set up, please add the following code in your child theme’s functions.php file

    // Custom Cart menu when uberMenu is active
    // =============================================================================
    function x_woocommerce_navbar_menu_item( $items, $args ) {
    
      if ( X_WOOCOMMERCE_IS_ACTIVE && x_get_option( 'x_woocommerce_header_menu_enable' ) == '1' ) {
        if ( $args->theme_location == 'primary' ) {
    
          if ( ! class_exists( 'UberMenu' ) ) {
    
            $items .= '<li class="menu-item x-menu-item x-menu-item-woocommerce">'
                      . '<a href="' . x_get_cart_link() . '" class="x-btn-navbar-woocommerce">'
                        . x_woocommerce_navbar_cart()
                      . '</a>'
                    . '</li>';
          } else {
            $items .= '<li class="ubermenu-item ubermenu-item-level-0 menu-item x-menu-item x-menu-item-woocommerce">'
                      . '<a href="' . x_get_cart_link() . '" class="ubermenu-target x-btn-navbar-woocommerce">'
                        . x_woocommerce_navbar_cart()
                      . '</a>'
                    . '</li>';
          }
        }
      }
    
      return $items;
    
    }
    add_filter( 'wp_nav_menu_items', 'x_woocommerce_navbar_menu_item', 9999, 2 );
    // =============================================================================

    Hope this helps. Kindly let us know.

    #1158140
    krissy28
    Participant
    This reply has been marked as private.
    #1158142
    krissy28
    Participant

    for the shop, is’t possible that it will have sidebars? even if my front page is fullwidth?

    #1158159
    Rue Nel
    Moderator

    Hello There,

    Thanks for the updates!

    2] To resolve this issue, please go to your customizer, Appearance > Customize > WooCommerce and set the Shop Layout and the Number of Columns.
    http://prntscr.com/cd7he3

    If you want to have a sidebar in your shop page, please select the “Use Global Content Layout” in your Shop Layout option setting.

    Hope this helps. Kindly let us know.

    #1158166
    krissy28
    Participant

    okay thanks! in the screenshot you see the images are not aligned.. is there a way i can make them all look like same sizes?

    #1158167
    krissy28
    Participant

    not sure if it is theme-related but there were reports that suppose you order 1 item from the shop, and then you logged out, the item (which you can see in the cart as 1) is still there

    is there a way to fix this such that when you logged out, the item will be reset to 0

    thank you!

    #1158193
    Paul R
    Moderator

    Hi,

    You need to crop your images to the same sizes prior to uploading it.

    With regards to your cart, you can try adding this in your child theme’s functions.php file(wp-content/themes/x-child/functions.php).

    
    function clear_cart() {
        if( function_exists('WC') ){
            WC()->cart->empty_cart();
        }
    }
    add_action('wp_logout', 'clear_cart');
    

    Hope that helps.

    #1158262
    krissy28
    Participant

    hope to get response on the imaging turning so big when refreshed the product page.. else i will have to add some sidebar just thinking it will lessen occurrence of that weird one

    #1158397
    Joao
    Moderator

    Hi There,

    Would you mind providing a screenshot and the specific link to what you are referring to?

    Upon checking your products I could not notice anything.

    Thanks

    Joao

    #1159492
    krissy28
    Participant

    ok wait.. i have a new question

    my custom product tabs are not showing – is this a theme issue?

    #1159495
    krissy28
    Participant

    i got this sorry it;s in the customizer

    #1159497
    Rue Nel
    Moderator

    Hello There,

    We are just glad that you have figured it out a way to correct the said issue.
    Thanks for letting us know!

    Best Regards.

    #1164448
    krissy28
    Participant

    already fixed thanks

    #1164613
    Rahul
    Moderator

    Glad you’ve fixed the issue!

    If you have anything else with the theme, let us know. We’d be happy to assist you with everything.

    Thank You.

  • <script> jQuery(function($){ $("#no-reply-1158113 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>