thindery
Forum Replies Created
-
did you ever figure this out? I am having the same problem using the login with ajax plugin.
Forum: Plugins
In reply to: [Plugin: Simple Twitter Connect] Widget?did you ever figure out how to do this? I am wondering the exact same thing…
Forum: Plugins
In reply to: [Simple Twitter Connect] – Twitter Followers List Widget php ErrorsHaha it’s all good. I figured it was something about the number of followers, since I googled and couldn’t find any info on the issue.
Forum: Fixing WordPress
In reply to: Post title and content repeats itselffigured it out after messing with plugins.
Tagga (Send to mobile) was causing the problem.
Forum: Fixing WordPress
In reply to: Post title and content repeats itselfYou can’t see that? It does it on every page/post for me.
http://mipages.net/2009/09/25/mms-now-available-for-iphone/
It says “MMS Now Available for iPhone As promised, the Apple iPhone finally has the capa”
right after my “[source: cNet]” which is suppose to be the final text of the post.
Forum: Fixing WordPress
In reply to: home tab is hilighted when it shouldn’ti just wanted to post the resolution that i came up with incase anyone else can use it some time. I attempted your suggesting and it solved the problem of not hiliting “home” when viewing the forums. But since all my pages are like: http://mipages.net/?page_id=167 it hilites the home on those pages aswell..
so.. this may be a little messy but it works:
<?php $a = $_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']); $b = "mipages.net/forum"; $c = "mipages.net/"; if (is_home() and $a == $b) { $addclass = ''; } elseif (is_home()) { $addclass = ' class="current_page"'; } else { $addclass = ''; } echo "<li" . $addclass . "><a href='" . get_option('home') . "/' title='Home'><span>Home</span></a>"; if ($a == $b) { $addclass = ' class="current_page"'; } else { $addclass = ''; } echo "<li" . $addclass . "><a href='" . get_option('forum') . "/' title='Forum'><span>Forum</span></a></li>"; echo list_all_pages();?>for some reason the is_home() function recognized site.com/forum/ as the home page too, so I just put in a check that if it passed the is_home() check and $a == $b then it was defenitely a forum and don’t make the home tab current!