Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter wpiseasie

    (@wpiseasie)

    After your hint on the JS I played with the settings in wp fastest cache. Turned OFF the ‘Combine Js plus’ feature which compresses the JS in the footer.

    Also while we are here. I have 3 more questions:

    1. Is there a way to reduce the size of ‘float’ widget
    2. I’ll buy premium later on for sea purposes. But can we then also run shopping ads in different countries? Now we can’t due to our main language being dutch; google requires english or native language of another country if we want to advertise there.
    3. Last time I bought premium the translations were actually worse than in the free version. I know they can be edited but it is one heck of a job. Is there a way to keep the current translations? I just want premium for the SEO and ideally google ads.

    Tia

    Thread Starter wpiseasie

    (@wpiseasie)

    Only on mobile, on the homepage indeed.

    It is working but it shows ALL languages and not just the few we picked by hand.

    it is wp fastest cache premium. I’ll check if i can turn it off

    Thread Starter wpiseasie

    (@wpiseasie)

    Thanks I added it. It does work on the initial start, but after that it still translates.

    I added in the customizer section: custom CSS/JS – oceanwp.

    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.

    Thread Starter wpiseasie

    (@wpiseasie)

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

    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' );
Viewing 6 replies - 1 through 6 (of 6 total)