Forum Replies Created

Viewing 15 replies - 646 through 660 (of 681 total)
  • If you want to use bei4u’s setup, I’d also suggest 1and1 Internet (http://www.1and1.com). They’re relatively inexpensive for hosting, and their domain names run about $7/year or less. You can use the same method bei4u just mentioned as well (each site lives in a directory on your hosting account and the individual domains just point directly to the folder).

    Here’s a very explanatory step-by-step article for backing things up: http://codex.wordpress.org/Backing_Up_Your_Database

    Here’s another for restoring from backups in the unlikely event that something goes wrong during the upgrade: http://codex.wordpress.org/Restoring_Your_Database_From_Backup

    Just make sure you keep the backup files on your local system and not on your server.

    In WordPress 2.1.2, the profile link is in the upper right hand corner next to “Howdy, yourname” and the “Sign Out” link. If you click the “My Profile” link, you’ll be taken to the page that lets you edit your name, contact information, biography, and change your password.

    Near the top of the page is a check mark next to the words, “Use the visual editor when writing.” This is an option for you and only you and will not change the way the blog displays or the edit screen for anyone else. However, when you now try to edit a post or page, you will see the code behind the page rather than the fancy wysiwyg editor.

    @bemmo – I did get your email, and I’ll still check whether or not your theme can be made to be compatible with later versions of WP if you want (or if this fix doesn’t help you).

    Antonella,

    Try replacing

    <?php if(is_front_page() || is_home()){?>
       <?php } else { ?>
       <h3><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
    <?php }?>

    With

    <?php if(is_home()){?>
       <?php } else { ?>
       <h3><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
    <?php }?>

    Rob,

    Your problem is in the stylesheet, particularly in the #sidebar definition. In IE, if a an element is fixed with “position:absolute” near a floating element, it can get stomped on. The way I’ve fixed this in the past is to add dummy divs (<div></div>) before calling on the fixed element.

    I’d recommend trying to add dummy divs both before and after you include the sidebar in you WP theme. Let me know if this is clear and if it fixes the problem.

    Antonella,

    The only other change I’d recommend is checking is_home in index.php.

    Change
    <?php if( ! is_front_page()){?><h3><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3><?php }?>
    To:

    <?php if(is_front_page() || is_home()){?>
       <?php } else { ?>
       <h3><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
    <?php }?>

    In index.php and let me know if that fixed the problem. If not, then something else is going on …

    This code will check if the user is on the front page or the home page (which are both the same in your case). If they are on either, then it will skip displaying the title. If they aren’t on either page, then it will display the title.

    Ruriko, that’s actually even simpler. Just put your welcome message as you normally would, and give them a link that references:

    <a href="<?php bloginfo('wpurl'); ?>/wp-login.php?action=logout">Log Out</a>

    Anyone clicking on that link will be logged off and returned to the WordPress login screen. If you want them to be sent elsewhere, change it to the following:

    <a href="<?php bloginfo('wpurl'); ?>/wp-login.php?action=logout&redirect_to=/home">Log Out</a>

    Make sure to change /home to whatever page you want them to be redirected to.

    bemmo, try checking your profile page. That’s where the option is on all of the later versions.

    Also, there are several people out there who would likely help you out for free. I’d even be willing to look through the Platinum template and check what (if any) changes need to be made for it to work with WP 2.6.2. Contact me off the forums and we can discuss this (eric [at] eamann [dot] com).

    bemmo – If you go to your profile as iridiax suggests, you will be able to change that option pretty easily. If I remember correctly, it’s just a checkbox.

    Also, I still recommend updating. I understand your concerns, but I’ve had sites hacked in the past and it’s an incredible hassle. There are plenty of knowledgeable people on the forums who could probably help you update if you want it (as well as bring your template and site up to specs). Or you could put out a line on http://jobs.wordpress.net.

    When you export, it saves the XML file on your computer. Just make sure you keep track of where you save it at so you can find it when you import things back into your main blog.

    Actually, that will work if you’re loading just that page. Unfortunately, when your blog is called, it references the Main Index Template (index.php). If you want the header to disappear on the front page, though, you’ll need to find the same section header code in index.php and change it to the following:

    <?php if( ! is_front_page()){?><h3><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3><?php }?>

    With both of those changes applied, you shouldn’t have any problems. Unless, of course, we’ve missed something. In that case, feel free to come back and let us know. 🙂

    Installing multiple themes would become highly involved if you want each page to have a different theme. You could always build a different template for each page and have the page templates call specific CSS, header, footer, and sidebar files. This would be somewhat advanced and require a lot of coding.

    Another option would be to use WordPress MU. This is a multi-user installation of WP that gives you essentially several different blogs (one for each of your podcast shows, for example). With this setup, it would be fairly easy to give each show it’s own theme, as each would really be it’s own site (usbn.net/rock and usbn.net/country, for example).

    WordPress MU runs on just one database, so you don’t need to set up separate installations at all. Just follow the directions at http://mu.wordpress.org/.

    Check the classes applied to images in your posts to make sure they match up with the CSS you added to your stylesheet. I had a similar problem because I was applying the “aligncenter” class to images, but had the “centered” class defined in my stylesheet instead.

    Yes!

    If you go to http://www.cmscareerxroads.com, you’ll see a horizontal login box in the upper right corner of the screen. Here’s the code that allowed me do put it there:

    <?php global $user_ID; ?>
    <?php get_currentuserinfo(); ?>
    <?php if(! $user_ID){ ?>
    	<div id="loginbar">
    	<form name="loginform" id="menulogin" action="<?php bloginfo('wpurl'); ?>/wp-login.php?redirect_to=/main" method="post">
    		<label><?php _e('username') ?> <input type="text" name="log" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" size="10" tabindex="1" /></label>
    		<label><?php _e('password') ?> <input type="password" name="pwd" value="" size="10" tabindex="2" /></label>
    		<?php do_action('login_form'); ?>
    		<input type="submit" name="wp-submit" value="<?php _e('log in'); ?>" tabindex="3" />
    		<input type="hidden" name="redirect_to" value="<?php echo attribute_escape($_SERVER['REQUEST_URI']); ?>main" />
    	</form>
    	</div>
    <?php } ?>

    The “loginbar” div gives you the ability to style things appropriately for your theme. I also recommend changing the “redirect-to=/main” line to whatever applies for your particular site. In this case, we’re redirecting people to a particular landing page.

    All of this is done from the Design » Theme Editor menu. You’ll probably be just editing the CSS style sheet to match whatever styles you have applied to the main site. Whether or not you want to add functionality depends entirely on your coding abilities and what exactly you want to add.

Viewing 15 replies - 646 through 660 (of 681 total)