grobs38
Forum Replies Created
-
Hi,
The latest version available here https://www.ads-software.com/plugins/wp-reviews-plugin-for-google/ is the 8.2.2.
How can I found the 8.2.3+ ?
Regards
Forum: Plugins
In reply to: [SlickNav Mobile Menu] Parent menu item as simple dropdown linkOh yes, that did the trick!
Thank you very much.
Forum: Themes and Templates
In reply to: [Oblique] Parent menu item as simple dropdown linkOk, I understand your point of view.
Thanks anyway
Forum: Themes and Templates
In reply to: [Oblique] Parent menu item as simple dropdown linkAnother option which would be satisfying for me is that dropdown menus are opened by default.
Forum: Themes and Templates
In reply to: [Oblique] Add a “return to home” buttonWow, so many mistakes in a post, I think I was drunk at that moment haha.
I thought that a “home” link could be a good thing at the bottom of each page but you’re right, I can add it to the menu.Thanks and keep going ??
Forum: Themes and Templates
In reply to: [Oblique] Replace footer in a child themeThanks a lot jowaltham, it now works like a charm!
Forum: Themes and Templates
In reply to: [Oblique] Replace footer in a child themeThanks again jowaltham to take the time to help me ??
I tried this snippet but it seems that nothing changed. The parent AND child’s footer messages are displayed.
function custom_oblique_footer_credits() { echo 'My custom text'; } add_action( 'oblique_footer', 'custom_oblique_footer_credits' ); remove_action( 'oblique_footer', 'oblique_footer_credits' );
As child theme’s function.php file is loaded before the parent, maybe that the remove_action function couldn’t work properly (parent’s function is not declared yet when remove_action is executed)?
Forum: Themes and Templates
In reply to: [Oblique] Replace footer in a child themeHi jowaltham, thanks for your reply.
I already tried this but instead of replacing the footer message, it adds it the custom one before the parent one.
With your code, the footer becomes: “My custom textProudly powered by WordPress | Theme: Oblique by Themeisle.” instead of just “My custom text”.
What have I to do to remove the parent footer?