garethooper
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Theme My Login] Double form on login page.Same here with the double login for two sites I updated.
Forum: Plugins
In reply to: [Plugin: WP to Twitter] Submitting Edited PostsPlugin still does this with 1.5.2
Forum: Plugins
In reply to: [Plugin: Resume Extended] Plugin Activation Fatal ErrorNo problem at all and Glad to help out.
Local setup, stats are:
WordPress: 2.8.2
MySQL: 5.0.45-community-nt
PHP Version : 5.2.6Disabled all plugins and re-activated on this plugin, failure still occurs: resume-extended.php on line 337
Live Site setup, stats are:
WordPress: 2.8.3
MYSQL Version : 5.0.32-Debian_7etch10-log
PHP Version : 5.2.0-8+etch15First time activation worked with no error and all original plugins activated. Testing further.
Forum: Themes and Templates
In reply to: One post per page on index / multiple posts per page on archivesTried the same string MichaelH advised on, but had the same problem from post three presenting a 404. Tried the plugin Asitis advised on it also works for me on WP2.8.3…So far so good.
Forum: Plugins
In reply to: Content Padding or Margin Spacereverted back to original theme, far easier to customize and less cumbersome on the bandwidth.
Forum: Plugins
In reply to: This post is password protected. Magazine BasicAdd the following to your Functions.php file under your theme folder:
// Password Protected Page Message function custom_password_form($form) { $subs = array( '#<p>This post is password protected. To view it please enter your password below:</p>#' => '<p>Hopefully this works.</p>', '#<form(.*?)>#' => '<form$1 class="passwordform">', '#<input(.*?)type="password"(.*?) />#' => '<input$1type="password"$2 class="text" />', '#<input(.*?)type="submit"(.*?) />#' => '<input$1type="submit"$2 class="button" />' ); echo preg_replace(array_keys($subs), array_values($subs), $form); } add_filter('the_password_form', 'custom_password_form');
Forum: Fixing WordPress
In reply to: Password Protect This Post – Change text?Add the following to your Funtions.php file under your theme folder:
// Password Protected Page Message function custom_password_form($form) { $subs = array( '#<p>This post is password protected. To view it please enter your password below:</p>#' => '<p>Change this for New Message.</p>', '#<form(.*?)>#' => '<form$1 class="passwordform">', '#<input(.*?)type="password"(.*?) />#' => '<input$1type="password"$2 class="text" />', '#<input(.*?)type="submit"(.*?) />#' => '<input$1type="submit"$2 class="button" />' ); echo preg_replace(array_keys($subs), array_values($subs), $form); } add_filter('the_password_form', 'custom_password_form');
Forum: Plugins
In reply to: Content Padding or Margin SpaceI do use both
Forum: Plugins
In reply to: [Plugin: JS Banner Rotate] UpdateCan I recommend that the Title be an option in future releases. It just does not have any purpose if it is used on the Homepage which is were I intend using this plugin. With this forced at the moment, it will not be used.
Forum: Plugins
In reply to: [Plugin: JS Banner Rotate] UpdateMagic, will update first and review the paramters first.
Forum: Installing WordPress
In reply to: How to remove RSS in top nav?Hi,
Remove the
<a>
Link reference from the line/s:
Replace:echo '<li class="page_item"><a href="'. get_bloginfo_rss('rss2_url') .'">RSS</a></li></ul></div>';
With:
echo '<li class="page_item"><a href="'. get_bloginfo_rss('rss2_url') .'">RSS</a></li></ul></div>';
Ver: 0.9.7
Line: 452Gareth
Forum: Fixing WordPress
In reply to: how to remove “home” from autofocus themeDo the same as the Home link and remove the Link in the line:
Version: 0.9.7
Edit Line: 452From:
echo '<li class="page_item"><a href="'. get_bloginfo_rss('rss2_url') .'">RSS</a></li></ul></div>';
To:
<a href="'. get_bloginfo_rss('rss2_url') .'">RSS</a>
I am needing the same and am not finding anything on what this should be, if possible, only W and H. I am needing to place in the Sidebar which is easy enough but the custom duration is required as the current set duration is what is needed for the home page.
Forum: Plugins
In reply to: nextGen Gallery SlideshowI will presume you have uploaded and activated the plugin.
Add a new Gallery via the Gallery dropdown in the Navigation of WP.
then add images to that gallery (Make note of the ID) and once that is done you can either manually add it into the page as per the readme, this is where the ID will be needed.Alternatively create a new page, click the NextGen Button on the Kitchen Sink icon list at the top of the page. Select the Gallery and Slideshow option, Insert. It is here you can also specify the Width and Height.
Forum: Fixing WordPress
In reply to: What is wrong with this php codeWhats the resolution?
By providing the resolution, even if self resolved, can help others with the same query.