wpiseasie
Forum Replies Created
-
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Language selector not properlyAfter 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:
- Is there a way to reduce the size of ‘float’ widget
- 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.
- 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
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Language selector not properlyOnly 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
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Skip translation of livechat pluginThanks 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.
Forum: Themes and Templates
In reply to: [OceanWP] Bottom Bar – New updateMay 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.
Forum: Themes and Templates
In reply to: [OceanWP] Bottom Bar – New updateEverything is up to date by the way. Ocean WP, WordPress and Woocommerce.
Forum: Themes and Templates
In reply to: [OceanWP] Bottom Bar – New updateHi,
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' );