fishingfool
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Compatibilty with WP 3.0?Nice plugin, to bad the developer is not capable of supporting it with new versions on WP. Or for that matter, even commenting on support forums of “yes we are having issues but will be updating it soon”!
Thank you warwickp!!!!!!!!!!
Forum: Installing WordPress
In reply to: Widgets don’t drag and drop as advertisedI had the same problem and it was due to the plugin “WP Events Calendar”. Removed it and everything is okay.
Forum: Fixing WordPress
In reply to: Stop WordPress from adding p tags and removing line breakThe plugin that bitkahuna recommended https://urbangiraffe.com/plugins/disable-wpautop/ worked for me but I needed to un-check “Stop removing the <p> and
tags” in TinyMCE.Give that a try:)
Forum: Fixing WordPress
In reply to: Link Redirected in NavigationProblem Solved:
I deleted the subdomain and re-saved permalinks. Go figure?Forum: Themes and Templates
In reply to: PERMALINKS :@I’m having the same problem. Could you please explain how you resolved the issue. thanks
Forum: Fixing WordPress
In reply to: Link Redirected in NavigationI did do a database search via phpMyAdmin when I moved it and made the necessary changes. I performed several more searches and found no traces of blog.mydomain.com. It just does not make any sense. I have also searched all root files using Dreamweaver also finding no traces of the subdomain.
Any other suggestions on what to do?
Forum: Fixing WordPress
In reply to: Permalink badness@ sweyhrich
How did you fix your problem. I’m having one of my pages re-direct to the subdomain that I moved my site from.
thanks.Forum: Plugins
In reply to: [Plugin: Ozh’ Admin Drop Down Menu] hide / change menu items?@ mindshare
Did you ever find a solution to your question. I’m trying to do the same thing.
Thanks
Forum: Plugins
In reply to: Drop Down Menu Plugin for 2.7Also looking for the same thing:) Anyone have any info?
Forum: Installing WordPress
In reply to: 2.7 to 2.7.1 upgrade errorThank you Otto42!
I had two blank lines in my wp-config.php and also in a plugin names wp-polls. Thank you for the help! Much appreciated:)
Forum: Fixing WordPress
In reply to: BUG: You are attempting to log out of error in CarringtonUpdate,
I used code from an updated version at https://code.google.com/p/carrington/
Basically I replaced the WP version code:
<?php wp_list_pages(‘title_li=’); ?>
<?php global $user_ID;
if($user_ID) {
echo ‘<li class=”secondary”>< href=”‘ . site_url(‘wp-login.php?action=logout’, ‘login’) . ‘”>’ . __(‘Log Out’, ‘carrington’) . ‘</>’;
} else {
echo ‘<li class=”secondary”></>< href=”‘ . site_url(‘wp-login.php’, ‘login’) . ‘”>’ . __(‘Log In’, ‘carrington’) . ‘</>’;
}
?>
<?php wp_register(‘<li class=”secondary”>’, ”); ?>With:
<?php wp_list_pages(‘title_li=’); ?>
<li class=”secondary”><?php wp_loginout(); ?>
<?php wp_register(‘<li class=”secondary”>’, ”); ?>Everything works great now!
Forum: Fixing WordPress
In reply to: BUG: You are attempting to log out of error in Carrington@valendesigns
<?php wp_loginout(); ?> doesn’t seem to fit in with the way the theme has been coded.The following is the current theme code in an if statement:
href=”‘ . site_url(‘wp-login.php?action=logout’, ‘login’) . ‘”>’ . __(‘Log Out’, ‘carrington’) . ‘Does anyone have an more suggestions? I really need this link to work.
Forum: Fixing WordPress
In reply to: AC_FL_RunContent is not definedDoes anyone have any ideas?