Tdude
Forum Replies Created
-
Forum: Installing WordPress
In reply to: drop downs, I’m dyin hereHi!
Look for a plugin or (carefully) hack the wp-includes/classes.php , starting at line 494Forum: Fixing WordPress
In reply to: Link to blogroll from sidebarNoo… Try this if you’re on an IIS with “not particularly friendly” urls:
<a href="<?php bloginfo('siteurl');?>/index.php/links/">My Blogroll</a>Or this if you’re on a real server:
<a href="<?php bloginfo('siteurl');?>/links/">My friendly link</a>You can change the name “links” to specify any page with a “Template name”
Example template name for the Blogroll (or links.php) above:
<?php /* Template Name: Links */ ?>All the best,
TForum: Fixing WordPress
In reply to: White Screen of Doom!Hi!
I get the whiteout all the time installing bits and pieces. Most of the time it´s just a php5 error thingie on the server: ALL php code must start with <?php Making a “find and replace” usually does the trick, but in php 5 you also need a space after the <?php start code, this means you have to eye down a few thousand lines of code…
I hope the code tag stays intact here. Good luck,
TForum: Themes and Templates
In reply to: Getting titles from the loop into two columnsHi! Don’t go out of your mind, go out and play! The easiest way is probably to make css float your posts like:
2nd 3d
4th 5thExample: say that your posts have a css class name of
.post{
float:left;
}that way it would look ok. You would have to be careful with IEs wicked box model handling, of course. I hope this helps. Read up on css float or ask again.
/TForum: Themes and Templates
In reply to: Newbie needs help with themesCheck so that style is activated first. After that, check so you didn’t just copy the new code before the old code in your style.css. If you can be more specific, it’s easier to help.
/TForum: Fixing WordPress
In reply to: Rename MySQL Database?Hi!
There´s plenty of freeware for hooking up to a MySQL db if you need it (I’m using CocoaMySQL for Mac and it works great of course) Most hosts have an online app that you could use.
I don’t see any problems with changing the db name for wp. The wp-config file even says: “// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!”Happy coding,
/TForum: Themes and Templates
In reply to: css png IE 6Hi!
If you read up on the MSDN site, they say you need some more arguments for the image object to activate the ActiveX for png transparency (bla bla bla 😉 http://msdn2.microsoft.com/en-us/library/ms532969.aspxForum: Plugins
In reply to: Adding a different style to each link in the wp_list_pages function.Kmak,
Otto42 at the forums here made this a ticket for the next upgrade of WP. Maybe we won’t need to hack this in the future? Anyway, thanx and you’re welcome!Forum: Fixing WordPress
In reply to: Two home pages in WP 2.1You’ve probably found it by now, but it’s probably the word “Home” and the single quotes around it that has to go because you have a page called “Home” too.
<li class=\\”<?php echo $highlight; ?>\\”>\\”><?php _e(‘Home’,’andreas09′); ?>
Forum: Fixing WordPress
In reply to: editor filtering codeNever mind. Thanks Sauceyman! Otto too!
Forum: Fixing WordPress
In reply to: 2.1 Code/wysiwyg issueOOOhh, kinky! I like that! Been messing with the TinyFiles and missed that. Thank you!
Forum: Plugins
In reply to: Page slug as li idOtto 42, you´re probably right. That’s why I stated the little fineprint on the last 6 rows of my post 😉
Nevertheless, thanx for the ticket. I tend to think that somebody must have gotten the idea before me all the time…Forum: Fixing WordPress
In reply to: WYSIWYG editor messing up div tags in 2.1You’re right. This is a stupid bug and should be fixed, but we just don’t have the right to demand getting it fixed. I tried to hack many TinyMCE files over this and just couldn’t get it working properly.
I could help you with any css if you help me with this!Forum: Developing with WordPress
In reply to: Problem with Tinymce EditorHmmm. I updated to the latest version of TinyMCE on another site I did (not WP) and it seems all html code generating issues are gone and it runs smoothly in IE/FF. Maybe you’ll just need to update the TinyMCE core files?
Another long shot is that Moxiecode changed the variable name where the editor is declared for the form where it’s going (uhmm, I hope you’re following)
It’s looking something like this in my (non WP) files:tinyMCE.init({ // deprecated // mode : "specific_textareas", // new mode : "textareas", editor_selector : "mceEditor", theme : "advanced",This code goes where the texterea is which should be replaced with the Editor.
I’ll give it a go in a wordpress installation and let you know.Forum: Fixing WordPress
In reply to: Visual Rich Editor – WYSIWYGHo ho. Many of us have had no answers…dont get depressed and start chewing the walls and jumping on your knuckles!
Hot linking (I think) has something to do with getting content from another domain or so. I’ve had problems with script redirecting that messes things up in ajax scripts. It seems you can control some of this in your browser. Let it “allow to get content from other sites” or so.
I’m definitely not an expert, just trying to cheer you up “Don” 😉
/T