oh_franck
Forum Replies Created
-
Forum: Plugins
In reply to: [Cookie Information | Free GDPR Consent Solution] DatenzugriffsanfrageSame for me
One part of a solution?
One of the errors I get in the logs is from helper.php line 399: undefined function WPGDPRC\\Includes\\get_blog_option()It would appear that the function “get_blog_option” is for multisite. For single site, “get_option” should be used.
Maybe something like this:if(is_multisite()){ $path = get_blog_option($blog_id,'siteurl'); }else{ $path = get_option('siteurl'); }
When I replace get_blog_option with get_option I don’t get the fatal error anymore. But it still doesn’t solve any of the problem described above.
- This reply was modified 6 years, 10 months ago by oh_franck.
Same problem here.
Forum: Plugins
In reply to: [Cookie Information | Free GDPR Consent Solution] activate pageThere is a “Retry” button at the top that you can use to retry creating database tables. I had the same error the first time then clicked that button and it worked.
Forum: Plugins
In reply to: [Request Call Back] How to add as widgetYou can paste the code
<?php do_action('wpcallback_button'); ?>
into the “Text” widget, but before that, you need to enable PHP code inside that widget, which by default only allow text or HTML.
In order to do that without the use of another plugin, just paste the following code in your theme’s functions.php file:add_filter('widget_text','execute_php',100); function execute_php($html){ if(strpos($html,"<"."?php")!==false){ ob_start(); eval("?".">".$html); $html=ob_get_contents(); ob_end_clean(); } return $html; }
There you go!
Forum: Plugins
In reply to: [Comments Evolved for WordPress] No Settings (plugin Admin) availableSo Sorry! You must have changed that with an update as I saw a tutorial video on YouTube that showed a “Settings” link on the plugin page.
Just “discovered” the setting page under “Comments”.
Thank you for this fantastic plugin!Forum: Plugins
In reply to: [WPGPlus] [Plugin: WPGPlus] "A valid URL was not provided."I understand, thanks for replying. We just have to hope you can find some time ??
Forum: Themes and Templates
In reply to: [Esplanade] Lightbox not workingAlso the slider does not work either: clicking on the numbers to switch to the next pic does nothing; it’s broken.
Forum: Plugins
In reply to: [WPGPlus] [Plugin: WPGPlus] "A valid URL was not provided."Is this bug being fixed, I have the exact same problem: “A valid URL was not provided.”
Nothing is never posted to Google Plus…
Any update coming soon?Forum: Themes and Templates
In reply to: [Esplanade] Tagline and "Home" menu item?UPDATE: for those having this problem, I fixed the Tagline too: it can only show if you remove ALL widgets from the header part (recent posts, search etc…)
Forum: Themes and Templates
In reply to: [Esplanade] Tagline and "Home" menu item?UPDATE: I did add the “Home” menu item by creating a custom menu.
Still haven’t figured out about the Tagline…Forum: Themes and Templates
In reply to: [Esplanade] Sidebar not showing in Chrome and FirefoxOK, I get it: the sidebar is there but empty until you add widget from the widget admin area!
Forum: Themes and Templates
In reply to: [Esplanade] Sidebar not showing in Chrome and FirefoxSame problem here. No sidebar, whatever layout I select… Not even in IE 9.
Please could somebody answer that? I see the developer answered many more recent questions. Thanks!
I think this could have been a separate question as mine is really simpler:
How to revert the default sorting order of the posts?
1- Oldest
2- To
3- Newest
Rather than current default:
1- Newest
2- To
3- OldestAnyone?