• Hi,

    I used the custom code shown in the topic which worked great for me.

    Unfortunately after updating a few plugins and wordpress and woocommerce itself I noticed that the bottom bar was gone. I noticed it after 2 weeks so can’t really go back and install a back up.

    I re-used the code shown in here: https://www.ads-software.com/support/topic/bottom-bar-2/

    But I cant get it to work again.

    Could anyone help me?
    Cheers

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello @wpiseasie,

    I’ve tested that code, and it works on my end. Please put your custom code on the child theme, and please follow the steps explained in this article:
    https://docs.oceanwp.org/article/90-sample-child-theme

    If your customization didn’t work, please send your child theme, I’ll check that.
    You can upload your files to one of the following online services:

    Best Regards

    Thread Starter wpiseasie

    (@wpiseasie)

    Hi,

    So how I did it earlier was just add this code in the function PHP of main theme.

    This is the only customization I made so I dont work with a childtheme.

    If I add this codes, the sidebar subfooter widget menu appears in the theme > widget area. I can add things, but they just dont show.

    It worked perfectly earlier on.

    Hope you can help me, appreciate it.

    Jarno

    /* Sidear before the footer */
    function footer_sidebar_mattia() {
        register_sidebar( array(
            'name' => __( 'Pre-Footer Sidebar', 'oceanwp' ),
            'id' => 'pre-footer-sidebar',
            'description' => __( 'Widgets in this area will be shown on all posts and pages, before the footer.', 'oceanwp' ),
            'class' => '',
            'before_widget' => '<li id="%1$s" class="widget %2$s">',
        'after_widget'  => '</li>',
        'before_title'  => '<h4 class="widgettitle">',
        'after_title'   => '</h4>',
        ) );
    }
    add_action( 'widgets_init', 'footer_sidebar_mattia' );
    Thread Starter wpiseasie

    (@wpiseasie)

    Everything is up to date by the way. Ocean WP, WordPress and Woocommerce.

    Thread Starter wpiseasie

    (@wpiseasie)

    May be a bit offtopic.

    But my mobile side menu also doesnt work properly anymore.

    I have it set up the following:
    – Iteam A
    — Sub Iteam A1
    — Sub Item A1$
    — Sub Item A1%
    And so on. Some items only go to the Item A1. So only 2 unfolds, but some need three.

    Always when opening the third fold, the menu collapses.

    When I use the Full Screen menu or the Drop Down menu instead of the sidebar menu everything works as it should.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Bottom Bar – New update’ is closed to new replies.