edDraw
Forum Replies Created
-
Thank you danieliser, I’m going to add fallback pages as you suggested.
Forum: Plugins
In reply to: [Contact Form 7] PHP Notice: Undefined index: contact-form-7If someone try this again, the method has slightly changed :
http://contactform7.com/loading-javascript-and-stylesheet-only-when-it-is-necessary/
Forum: Plugins
In reply to: [Simple Backup] Change backup directoryHi ChrisHurst. When you set up WordPress and your content in separate directories and use version control systems such as git, it is interesting to keep certain directories outside.
For instance, my setup is something like that:
/content (custom wp-content) /shared (uploads etc) /wp (default wordpress)(see WordPress-Skeleton)
So it would be great to have the backup directory in the “shared” directory, which is out of version control (this way, it will not disappear when upgrading wordpress via git).
Forum: Plugins
In reply to: [Contact Form 7] PHP Notice: Undefined index: contact-form-7If you want to deregister CF7’s scripts and styles, you should consider this method :
In your wp-config.php:
define('WPCF7_LOAD_JS', false); define('WPCF7_LOAD_CSS', false);And if you want to register them again for a specific page, then in your function.php write something like that:
if ( is_single('contact') ) { wp_register_style( 'contact-form-7', 100 ); wp_register_script( 'contact-form-7', 100 ); }Or see complete explanations here : http://contactform7.com/loading-javascript-and-stylesheet-only-when-it-is-necessary/
Hope it will help!Perfect, thanks 🙂
Same problem for me (with WP 3.4.1)