jlosh
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Fixing WordPress
In reply to: User Permissionsthanks
Forum: Fixing WordPress
In reply to: How do I delete the “Home” pageYou could edit the index file,
/wordpress_directory/theme/your_theme/index.php
And just delete the code that shows the link
Forum: Fixing WordPress
In reply to: Can I use my Main Web Template for my blog?Sure you can! All you have to do is ‘port’ the theme and then install it to your WordPress site.
Porting your theme- You will need to copy/edit your stylesheet
- Edit the theme files and add the coding for your stylesheet
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected T_STRINGTry the code I posted below, that should fix it, I think you had a character that was misplaced in the code.
<?php get_header(); ?> <div id="content"> <?php include(TEMPLATEPATH."/r_sidebar.php");?> <div id="contentmiddle"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="datetime"><?php the_time('M') ?><span><?php the_time('jS') ?></span></div><h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1> <p>Posted on <?php the_time(); ?> | Filed Under <?php the_category(', ') ?></p> <?php the_excerpt(__('Read more'));?><div style="clear:both;"></div> <?php include("postinfo.php"); ?> <!-- <?php trackback_rdf(); ?> --> <?php endwhile; else: ?> <p><?php _e('Sorry, but you are looking for something that is not here. You can try searching for other topics again.'); ?></p> <?php endif; ?> <?php posts_nav_link(' — ', __('« go back'), __('keep looking »')); ?><br /> </div> </div> <!-- The main column ends --> <?php get_footer(); ?>
Forum: Installing WordPress
In reply to: Broken links on logout pageIt looks like the stylesheet is missing, and goto your options menu and try typing in ‘https://www.multifamilypro.com/blog/’ for your blog url.
Forum: Fixing WordPress
In reply to: Image Uploading ErrorThanks so much!
Viewing 6 replies - 1 through 6 (of 6 total)