europatech
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress search supporting dynamic contentWill check those options out. Thanks, Topher.
- This reply was modified 2 years, 4 months ago by europatech.
Forum: Fixing WordPress
In reply to: Media Library super slowI resolved this problem by disabling the “Find Posts Using Attachment” (v1.0) plug-in. There doesn’t seem to be any other reports of this nature for this useful plug-in, so it’s perhaps an incompatibility rather than an outright bug. I hope this is useful for anyone else having the same issue.
Forum: Plugins
In reply to: [Contact Form 7] CF7 baggage on every webpage?Even the other method in my wp-config.php:
define( ‘WPCF7_LOAD_JS’, false );
define( ‘WPCF7_LOAD_CSS’, false );… doesn’t seem to work for me either!
/W
Forum: Plugins
In reply to: [Contact Form 7] CF7 baggage on every webpage?I’ve added:
add_filter( ‘wpcf7_load_js’, ‘__return_false’ );
add_filter( ‘wpcf7_load_css’, ‘__return_false’ );to functions.php in my theme but it’s not switching off CF7.
There doesn’t seem to be much that could go wrong here, but sadly it’s not working. Any ideas?
/W
- This reply was modified 4 years, 6 months ago by europatech.
Forum: Plugins
In reply to: [Contact Form 7] CF7 baggage on every webpage?Thanks, Takayuki. I’m glad there is a solution to this.
Rather that create another page template, could I use an existing one, use a call to the_title(“”,””,false) to identify the page and call:
add_filter( ‘wpcf7_load_js’, ‘__return_false’ );
add_filter( ‘wpcf7_load_css’, ‘__return_false’ );… when I know I’m on a page which doesn’t need CF7?
/W
Follow-up: it looks like the “something went wrong” problem is intermittent and a problem at Twitter’s end.
Any help on my other question (with is specific to this plugin) would still be appreciated.
/W
Embarrassingly, this seems to have been a slip-up on my part. It looks like I accidentally changed my screen_name parameter to include the @ prefix of my Twitter handle. This stops Rotating Tweets working and shows the last cached set of tweets instead.
Posting this answer in case someone else falls into the same trap!