Abro
Forum Replies Created
-
Forum: Plugins
In reply to: [Invisible reCaptcha for WordPress] Custom Badge Postition / Shortcode+1 for shortcode
Took me a minute, but this finally worked for me:
//add this to your functions.php add_action('wp_print_styles','lm_dequeue_header_styles'); function lm_dequeue_header_styles() { wp_dequeue_style('yarppWidgetCss'); } add_action('get_footer','lm_dequeue_footer_styles'); function lm_dequeue_footer_styles() { wp_dequeue_style('yarppRelatedCss'); }To quote Yoast:
When you do *not* have a robots.txt file, WordPress serves a default robots.txt file
You cannot change the content of the virtual robots.txt via this plugin, i’m sorry. But you can simply upload a real robots.txt via FTP – this one will be editabe under /wp-admin/admin.php?page=wpseo_files
Forum: Plugins
In reply to: [Adminer] [Plugin: Adminer] just not workingSame problem here – it was a HTTP 500 Error.
I just enabled PHP’s error_reporting, which resulted in:
Warning: include_once(C:/xampp/htdocs/wpbeta/wp-load.php): failed to open stream: No such file or directory [...]The solution is to edit /wp-content/plugins/adminer/config.php
so that the preconfigured WP-root path matches the environment.This task does not appear in the Install-instructions ;o)