Forum Replies Created

Viewing 15 replies - 31 through 45 (of 69 total)
  • Hi!
    Look for a plugin or (carefully) hack the wp-includes/classes.php , starting at line 494

    Noo… 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,
    T

    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,
    T

    Hi! 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 5th

    Example: 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.
    /T

    Check 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.
    /T

    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,
    /T

    Forum: Themes and Templates
    In reply to: css png IE 6

    Hi!
    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.aspx

    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!

    You’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′); ?>

    Thread Starter Tdude

    (@tdude)

    Never mind. Thanks Sauceyman! Otto too!

    OOOhh, kinky! I like that! Been messing with the TinyFiles and missed that. Thank you!

    Forum: Plugins
    In reply to: Page slug as li id
    Thread Starter Tdude

    (@tdude)

    Otto 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…

    Thread Starter Tdude

    (@tdude)

    You’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!

    Hmmm. 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.

    Ho 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

Viewing 15 replies - 31 through 45 (of 69 total)