Main menu drop down indicator arrow is frozen and when I click on it , it freezes the website.

This topic has 31 replies, 3 voices, and was last updated 1 years, 6 months ago ago by Tony Rodriguez

  • Avatar: sk
    sk
    Participant
    September 22, 2022 at 21:11

    Main menu drop down indicator arrow is frozen and when I click on it , it freezes the website.

    Please, contact administrator
    for this information.
    30 Answers
    Avatar: Tony Rodriguez
    Tony Rodriguez
    Support staff
    September 23, 2022 at 05:33

    Hello, @sk,

    Please try to disable all the third-party plugins (including cache plugins), that does not come bundled with XStore https://xstore.helpscoutdocs.com/article/36-included-plugins, clear the cache of the browser, and check then. Maybe one of the additional plugins is the reason for the problem.

    And if the issue will still persist then please remain all the third-party plugins deactivated on your site and provide me the login access to your site in the below-listed format in the private content area and allow permission to debug your site which includes deactivating all the third-party plugins and on-site Customization as well so that I will check and assist you accordingly.

    WP Admin URL:
    WP Admin Username:
    WP Admin Password:

    Note: Please take the complete backup of your site first.

    Regards 8Themes Team.

    Avatar: sk
    sk
    Participant
    September 23, 2022 at 19:14

    Tony I would like to add that I tried what you suggested many times and it didn’t work for me. I also reuploaded the theme 3 times too. I did that before submitting a ticket.

    I’m think that the updated theme is not fully compliant yet, almost all of the suggested plug-ins that come with the theme makes the website disappear. Or if you add a new plug-in then visit the website the website will be gone.

    I also tried to delete the Xstore logo many times but It will still show on the website. Only if I upload a logo then the Xstore logo doesn’t show. Would like to delete the Xstore logo if possible.

    Please contact administrator
    for this information.
    Avatar: Tony Rodriguez
    Tony Rodriguez
    Support staff
    September 24, 2022 at 05:57

    Hello, @sk,

    Your provided WP Login details are not for Admin and I requested for the WP Admin Login details.

    And also you did not provide me the permission to debug your site as well.

    So please take the complete backup of your site first and then share your site WP Admin Login details and the permission to debug your site which includes deactivating all the third party plugins and on-site Customziation as well, so that we will check it for you on your site and help you out accordingly.

    Regards 8Themes Team.

    Avatar: sk
    sk
    Participant
    September 24, 2022 at 07:34

    Permission is granted

    Please contact administrator
    for this information.
    Avatar: Tony Rodriguez
    Tony Rodriguez
    Support staff
    September 24, 2022 at 08:50

    Hello, @sk,

    I have just checked your site and debugged it deeply and found that the Menu item with which you are facing the issue, is not our theme item, It’s actually the WordPress core option. If you check your site by activating the default WordPress Theme like Twenty Twenty Two, you will find the same option and same behavior on your site, you can try to test it.

    And then you have to contact WordPress support on it as this is a WordPress core issue, not our theme issue.

    Hope you can understand our limitations.

    Regards 8Themes Team.

    Avatar: sk
    sk
    Participant
    September 24, 2022 at 09:07

    Thank you, I’ll follow your instructions

    Avatar: sk
    sk
    Participant
    September 24, 2022 at 09:10

    Forgot to cover not being able to delete the Xstore logo, I’m unable to completely delete the Xstore logo.

    Avatar: Tony Rodriguez
    Tony Rodriguez
    Support staff
    September 24, 2022 at 09:34

    Hello, @sk,

    1. Sure, Take your Time.
    Thanks for your understanding and for contacting us.

    2. Your issue is resolved now, Please check back to your site after clearing the browser cache.I have just Delete the XStore logo widget on your site from Dashboard >> Xstore>> Theme Settings>> Header Builder >> Top Header >> Connection block>> Settings. See this image for reference: https://postimg.cc/3yR7rQCj

    Regards 8Themes Team.

    Avatar: sk
    sk
    Participant
    September 27, 2022 at 20:51

    Tony, there’s a new updated version of Xstore (Latest version 8.3.4/ Core plugin 4.3.4). Are the older versions automatically updated? If not can I update to the new version without any disruption?

    Avatar: Tony Rodriguez
    Tony Rodriguez
    Support staff
    September 28, 2022 at 06:33

    Hello, @sk,

    No, it will not get automatically updated, but you have to update it by going to Appearance >> Themes and clicking on the Automatic update button.

    Note: Before updating the theme, try to take the complete backup of your site to avoid any inconvenience.

    And after updating the theme you have to update the theme core plugin as well.

    https://xstore.helpscoutdocs.com/article/63-theme-update

    Regards 8Themes Team.

    Avatar: sk
    sk
    Participant
    September 30, 2022 at 05:08

    I tried to change the Main Menu as mentioned before. Your suggestion was contact WordPress. WordPress says contact the developer or do these instructions in a forum:

    Will this work, I would like to add that there was no problem when I first installed the theme, the function worked fine.

    Register Menus
    First, in your theme’s functions.php, you need to write a function to register the names of your menus. (This is how they will appear in the Appearance -> Menus admin screen.) As an example, this menu would appear in the “Theme Locations” box as “Header Menu”.

    function register_my_menu() {
    register_nav_menu(‘header-menu’,__( ‘Header Menu’ ));
    }
    add_action( ‘init’, ‘register_my_menu’ );
    And this would make two menu options appear, header menu and extra menu –

    function register_my_menus() {
    register_nav_menus(
    array(
    ‘header-menu’ => __( ‘Header Menu’ ),
    ‘extra-menu’ => __( ‘Extra Menu’ )
    )
    );
    }
    add_action( ‘init’, ‘register_my_menus’ );
    Display Menus on Theme
    Once you’ve done that, your theme will be almost ready. The last preparation step is to tell the theme where you want the menus to show up. You do this in the relevant theme file. So, for example, we might want our header menu to be in header.php. So open up that file in the theme editor, and decide where you want to put your menu. The code to use here is wp_nav_menu which we will need once for each menu location. So, add this code –

    ‘header-menu’ ) ); ?>
    All you need to ensure is that the theme_location points to the name you provided for your menu in the functions.php code above. (Note that it’s the header-menu being used here rather than Header Menu without a hyphen. Header-menu is the name that the code understands, Header Menu is the human-readable version that you see in the admin page.)

    To complete the code, you can put your extra menu someplace else. Maybe you want a menu on one of your pages, for example, and you might even want it to be jazzed up a little with a containing DIV of a certain class –

    wp_nav_menu( array( ‘theme_location’ => ‘extra-menu’, ‘container_class’ => ‘my_extra_menu_class’ ) );
    So you’d put the above into your Page template, and not only would the menu show up wherever you put it, it’d be styled as my_extra_menu_class so that you can work with that in CSS.

    Menus Panel
    That’s all the background work. To finish, you would simply visit the Appearance -> Menus panel in your site admin. Now, instead of seeing some text suggesting that your theme doesn’t natively support menus, you’ll see some Theme Location options.

    You can now use the GUI menu creator on this admin panel to put your menu(s) together. Give them each a name, and then assign a menu to a location with the pull-down options.

    (You will see your new navigation choices when you Add a New Menu.)

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 30, 2022 at 10:33

    Hello,

    Please provide correct wp-admin (we can’t access the Dashboard with the access you provided previously) and FTP access.
    If you do not know how to create FTP contact with your hosting provider, they will help you.
    Also, describe the problem you have / the desired result in more detail. Thanks in advance!

    Regards

    Avatar: sk
    sk
    Participant
    September 30, 2022 at 21:49

    Admin info is now available

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    October 3, 2022 at 14:25

    Hello,

    Thanks for wp-admin URL and password. What about username? Please provide FTP access also, we really need it to be able to give you an answer.
    Also, describe the problem you have / the desired result in more detail. Waiting for your reply!

    Regards

    Avatar: sk
    sk
    Participant
    October 4, 2022 at 09:12

    Info requested

    The main menu on the website freezes the website when trying to add or delete from that menu. There wasn’t a issue prior to the new updated version.

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    October 4, 2022 at 09:15

    Hello,

    We can’t connect – https://prnt.sc/ynvPbWQ-vO38 Please check FTP username

    Regards

    Avatar: sk
    sk
    Participant
    October 4, 2022 at 09:20

    User is

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    October 4, 2022 at 10:11

    Hello,

    Thanks for the reply, but we can’t connect still. Please check FTP access – https://prnt.sc/YnN-r23iwY5V

    Regards

    Avatar: sk
    sk
    Participant
    October 4, 2022 at 10:28

    This should work

    Please contact administrator
    for this information.
  • 1 2
    Viewing 20 results - 1 through 20 (of 31 total)

You must be logged in to reply to this topic.Log in/Sign up

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.