Search Results for 'code'
-
Search Results
-
I’m calling the wp-headers in forum as advised in seamless integration thread. I need to add a link to the forum profile in the header as users get confused when they only see the admin tab for wordpress. I have the loginanywhere script, and need a link to the users profile edit somewhere in this code:
`echo “<div class=’greeting’>nHej, “; echo $user_identity; echo “! Inställningar | “;
echo “Logga utn</div>n”;`
My forum is here: http://www.doublepeace.se/forum/
I’ve got sloppy members not closing their tags and the markup runs through the rest of the page. Doesn’t WP already do auto close on tags? Did bbpress not pick up that part of the code?
After trying to add code between backticks, all I’m left with is something like this:
`
m
`
Instead of:
<img src="http://www.yourimghosthere.com/yourimage.gif" />
Deactivating plugins didn’t fix it, and nothing else has changed other than the upgrade. Is anyone else running into this?
Edit: okay, at least now I know it works on the bbPress forums. I’ve no clue where to look to fix this, can anyone toss out an idea or two?
‘code’ works, so long as I don’t include the brackets around the code I’m trying to show.
You may notice that the table row highlighting doesn’t work in IE (at least in IE 6.0 which many people use)
I found this easy, drop-in solution to use IE’s HTC support
http://www.xs4all.nl/~peterned/csshover.html
save this file into your template folder
http://www.xs4all.nl/~peterned/htc/csshover.htc
then add this to your stylesheet
body {behavior:url("/path-to-your-template/csshover.htc");}
optionally but recommended, you might also want to add this to your .htaccess in apache since it probably won’t serve the right mime type for HTC by default which breaks XP sp2
AddType text/x-component .htc
Now :hover can work on almost anything in IE just like real CSS browsers.