• neko19911

    (@neko19911)


    Hi,

    Hopefully you will reply soon.

    I did not find better place to report an issue so I will write it here.
    Hopefully you will reply and fix it soon.

    With Elementor and Astra theme when content carousel is used with more than 1 element mobile menu disappears it is really weird.

    This is strange because desktop version works without any issue, but once I get into mobile:

    CSS looks like it changed completely css – Even though css comes from Astra: wp-content/themes/astra/assets/css/minified/style.min.css?ver=3.0.3

    For mobile for button that should appear it says

    .ast-mobile-menu-buttons {
    display:none;
    }
    I don’t know how is content carousel related to this – but completely messes up that button.

    Once I take mobile for different screen I actually get everything working – css is dynamically changed.

    ast-header-break-point .ast-mobile-menu-buttons {
    text-align:right;
    -js-display:flex;
    display:flex;
    justify-content:flex-end;
    }

    style.min.c…ver=3.0.3:3
    .ast-header-break-point .ast-mobile-menu-buttons {
    display:block;
    align-self:center;
    }
    style.min.c…ver=3.0.3:3
    .ast-mobile-menu-buttons {
    display:none;
    }
    style.min.c…ver=3.

    Once this plugin is deactivated or content carousel removed everything works fine.

    I also got report from wordpress that says something like this:

    When seeking help with this issue, you may be asked for some of the following information:
    WordPress version 5.5.3
    Current theme: Astra (version 3.0.2)
    Current plugin: All-in-One Addons for Elementor – WidgetKit (version 2.3.9)
    PHP version 7.3.27

    Error Details
    =============
    An error of type E_ERROR was caused in line 182 of the file /home/********************/public_html/wp-content/plugins/widgetkit-for-elementor/admin/includes/changelog.php. Error message: Uncaught Error: Cannot use object of type WP_Error as array in /home/********************/public_html/wp-content/plugins/widgetkit-for-elementor/admin/includes/changelog.php:182
    Stack trace:
    #0 /home/********************/public_html/wp-content/plugins/widgetkit-for-elementor/admin/includes/changelog.php(25): WKFE_Dashboard_Changelog->widgetkit_get_changelog_data()
    #1 /home/********************/public_html/wp-content/plugins/widgetkit-for-elementor/admin/includes/changelog.php(16): WKFE_Dashboard_Changelog->wkfe_dashboard_changelog_content()
    #2 /home/********************/public_html/wp-content/plugins/widgetkit-for-elementor/admin/includes/changelog.php(9): WKFE_Dashboard_Changelog->__construct()
    #3 /home/********************/public_html/wp-content/plugins/widgetkit-for-elementor/admin/includes/content.php(72): WKFE_Dashboard_Changelog::init()
    #4 /home/********************/public_html/wp-content/plugins/widgetkit-for-elementor/admin/includes/content.php(18): WKFE_Dashboard_Content->wkfe_dashboard__content()
    #5 /home/********************/public_html/wp-content/plugins/widgetkit-for-elementor/a

Viewing 5 replies - 1 through 5 (of 5 total)
  • I have the same issue. Did you find a solution to this?

    Thread Starter neko19911

    (@neko19911)

    Hi,
    I have contacted developers of this extension (via email) but they asked me to give them URL + username/password which I couldn’t do.
    If you can do that – I suggest you to show the plugin developers this problem.

    If you are however familiar with coding – I have found a workaround:
    – I can tell you that for some reason adding content carousel changed body tag class for astra from mobile to desktop.
    I have found workaround with some hardcoding in astra theme (this can be a bit tricky and problematic since you will need to change something in PHP/Astra theme directly). I cannot remember what exactly I did – I think I added one new function.

    If you really need this workaround I can send it?
    But since I am not actively working on website development/creation – I would need to ask admins of that website to access it again…

    Hi Neko
    Glad you found a fix and thanks for taking the time to reply.
    If you are able to provide the code that would be much appreciated.

    Thread Starter neko19911

    (@neko19911)

    Sorry it took me 2 months to reply – I am not actually involved in web in any way – I work in other fields completely: Machine Learning, Computer Science and Research…
    I only created one website (and faced this issue) in my life for my wife’s business, other than that I don’t really care about website development/creation.

    My solution:
    I edited the following code directly in the Astra theme.
    You can navigate to the part of the code I changed:
    Appearance->ThemeEditor->Footer.php file is where I added slight change:

    if (isMobile) {
    var body = document.getElementsByTagName(“BODY”)[0];
    body.classList.remove(“ast-desktop”)
    body.classList.add(“ast-header-break-point”);
    console.log(“Change”);
    console.log(body.classList);
    }
    // At the end of the footer.php I added this if statement. I think this was it…
    // Beware – I cannot guarantee that this will work in your case etc…
    // Unless you are familiar with programming I don’t know if you should go
    // inside these things
    </script>
    </body>
    </html>

    I don’t think that I will be able answer any more to this thread.
    I wish I helped you a bit @alicat72.
    Very best

    Thank you. Really appreciated. Will give that a try.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Issue found – Content carousel’ is closed to new replies.