alanFW
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Contact Form 7] & Auto SaveAdded extra class to shortcode in CF7 –
[text* CompanyName id:CompanyName class:stored class:ucf_apply_online_text_field tabindex:1]Resolved.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] tabindex not workingMy bad, it wasn’t working (for unknown reasons) on my localhost, test site. Is working fine live.
Forum: Fixing WordPress
In reply to: Scheduled Posts Not Launching (WP 3.3.1)I worked on wp-cron.php :
At first wp-cron had some delay because i don’t understand why but in the WP folder the
echo time( ) doesn’t give the same result as elsewhere so I had to correct it line 51
$local_time = time( ) + ( 2 * 60 * 60 ) + ( 60* 11 ) ;Hi there, that is ok as a short term fix, but next time you update your installation of wordpress, it will be over-written.
Always avoid editing core files if at all possible!
Thanks,
A
Forum: Fixing WordPress
In reply to: wp_nav_menu category not working – forum recommended fix not working<div id="navigation"> <?php if (is_category('Blog')) { query_posts( 'cat=-external-videos' ); } ?> <?php wp_nav_menu( array('menu' => 'primary', 'container' => false, )); ?> </div><!--end navigation-->Fixed to stop the External Videos custom post type clashing with the wp_nav_menu when in blog category (default for all posts)
Forum: Fixing WordPress
In reply to: wp_nav_menu category not working – forum recommended fix not workingUpdate – Appears to be a conflict with the ‘External-Video’ plugin, which creates a custom post type for any video from Vimeo.
I guess my next step is to make WordPress skip these custom posts?
Thanks!