vickislade
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] WordPress 4.3 conflict?One other thing … if this happens to you and [like me] you lose access to your admin dashboard so can’t change the theme, you could follow the instructions on the following site to change the theme via the database (assuming you have another theme installed – a reason why I always have an unused and common theme sitting in the wings).
http://www.inmotionhosting.com/support/edu/wordpress/change-theme-in-dbForum: Themes and Templates
In reply to: [Virtue] WordPress 4.3 conflict?All good. Deleted the Virtue theme then installed it again and activated and it’s all fine now. However, I’ve made no changes to the site for a few weeks, so it was an automatic upgrade of something else that triggered the problem.
Forum: Themes and Templates
In reply to: [Virtue] WordPress 4.3 conflict?I’m kicking myself – sorry folks! I’ve just seen the posts from a day ago from others having the same issue. I’ll remove the theme and reinstall to see if that’s solves the problem…. and then I’ll report back.
Forum: Plugins
In reply to: [WP Post Navigation] Hifde the navigation in the post?I’m not a developer, but the following change to wp-post-navigation.php appears to have worked for me.
Please someone let me know if I’ve done something silly!
Towards the end of the file I commented out one line (with //) as shown:
if(isset($WPPostNavigation)){ register_activation_hook(__FILE__, array(&$WPPostNavigation, 'WP_Post_Navigation_install')); add_filter('wp_head', array(&$WPPostNavigation, 'wp_post_navigation_HeadAction')); // add_filter('the_content', array(&$WPPostNavigation, 'WP_Pre_Next_Navigation_Bottom')); add_action('admin_menu', array(&$WPPostNavigation, 'wp_admin_menu')); add_action( 'wp_enqueue_scripts', array(&$WPPostNavigation, 'wp_post_navigation_stylesheet'));Forum: Plugins
In reply to: [WP Post Navigation] Swapping side of next and previousI’m not a developer, but the following code in wp-post-navigation.php appears to be incorrect.
$pre_post = get_next_post($navi); $next_post = get_previous_post($navi);I solved the problem by editing the code, as follows:
$pre_post = get_previous_post($navi); $next_post = get_next_post($navi);I hope I haven’t done anything silly, but it does seem to have worked for me.
Forum: Themes and Templates
In reply to: [Suffusion] Possible to change how a post format is displayed?I’ve since posted my question on the aquoid forum – previously I’d been unable to create a login on that site.