ZeroGravity
Forum Replies Created
-
Forum: Plugins
In reply to: [Stray Random Quotes] Change contributoeOops. I should have checked the spelling of the title before I posted.
This is an option I would also love to see.
Forum: Plugins
In reply to: [Recent Posts Slider] Thumbnail not showing plugin conflict.I just upgraded wordpress to 3.1.2 and deactivated every plugin I have loaded and the slider still doesn’t show any thumbnails. This site is hosted with Godaddy (dev.trustedlendingadvisors.com) and the test site where it works is on my own hosting.
Has anyone had issues with Godaddy?
I found and fixed the problem. At line 859 I replaced
if( !empty($post_details[$p]['post_first_img']['0']) || !empty($post_details[$p]['post_excerpt'])){ $rps_img_src_path = $upload_dir['baseurl'].$post_details[$p]['post_first_img']['0']; $output .= '<a href="'.$post_details[$p]['post_permalink'].'"><img src="'.$rps_img_src_path.'" align="left" /></a>'; $output .= $post_details[$p]['post_excerpt']; }
with
if( !empty($post_details[$p]['post_first_img']['0'])){ $rps_img_src_path = $upload_dir['baseurl'].$post_details[$p]['post_first_img']['0']; $output .= '<a href="'.$post_details[$p]['post_permalink'].'"><img src="'.$rps_img_src_path.'" align="left" /></a>'; } if (!empty($post_details[$p]['post_excerpt'])) { $output .= $post_details[$p]['post_excerpt']; }
Forum: Fixing WordPress
In reply to: Can't change WordPress address (URL)SOLVED!!!
Not content for a work around I went digging. I also don’t have WP_SITEURL or WP_HOME set in my wp-config.php. I guessed it might have been a plugin and sure enough, Bingo!!!
I use stray random quotes to put testimonials on a site (love this plugin). The way it works it needs to disable changing the address URL otherwise it would break. I haven’t checked the documentation fully to see if it is mentioned. I disabled the plugin, moved the site, then activated the plugin again. All the settings and quotes were still there.
I hope this helps, there may be other plugins that do the same. Hopefully authors will start prominently documenting this to save some heartache.
Thanks Mike,
I had the feeling that would be the case but wanted to check just in case there was a hidden feature somewhere. ??