jeremyhawes
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Crontrol] Unable to Delete after ImportThanks John, I just emailed you.
Forum: Plugins
In reply to: [WP Crontrol] Unable to Delete after ImportWould I be able to share you a secure download link to the file? My email is [email protected] – I won’t email you more than the download link too (I’ll keep all the conversation in here).
Forum: Fixing WordPress
In reply to: Posts forced as DraftsThank you.
It was the Plugin “Post Expirator”
Forum: Fixing WordPress
In reply to: Footer Not Reaching BottomIt appears to be at the bottom of the page, possibly in the footer.php
I would guess it’s a type of signature by the template designer.
Forum: Fixing WordPress
In reply to: Footer Not Reaching BottomYou will need to access your files through FTP.
Depending on your theme there may have been a way it was edited through your Admin area.
Forum: Fixing WordPress
In reply to: Footer Not Reaching Bottomhaha sorry that was funny, just the way you worded it all with the LOL and what not.
I’m not entirely sure where the ” ?? ” is located at exactly. From common structure I would guess that it might be in your footer.php file
I also noticed that it’s actually an image file that seems to be linked out with this source…
src="https://stats.wordpress.com/g.gif?host=spoiledmuch.com&rand=0.8653325638733804&v=ext&j=1&blog=26476149&post=0&ref="
Forum: Fixing WordPress
In reply to: Footer Not Reaching BottomI saw in the bottom left of your page this…
??
I would remove that.
If you want to re-include it put in in your header.php after the <body> tag like this…
<div style="position: absolute; bottom: 0; left: 0;">:)</div>
Forum: Fixing WordPress
In reply to: Display ONLY Selected Categories Inside a PostExcellent, that did it. Thanks your help!
Forum: Fixing WordPress
In reply to: Display ONLY Selected Categories Inside a PostRight now it is
<?php wp_list_categories(); ?>
I haven’t added the ‘include’ param as I’m not sure how to write it to only include those in the post. Any guidance?
Forum: Fixing WordPress
In reply to: What am I missing? Can't get an image to centerTry popping this at the bottom of your style.css
img.alignright {float:right; margin:0 0 1em 1em} img.alignleft {float:left; margin:0 1em 1em 0} img.aligncenter {display: block; margin-left: auto; margin-right: auto} a img.alignright {float:right; margin:0 0 1em 1em} a img.alignleft {float:left; margin:0 1em 1em 0} a img.aligncenter {display: block; margin-left: auto; margin-right: auto}
Not a guaranteed fix, but it’s worked for me when I’ve had that problem.
Forum: Fixing WordPress
In reply to: Titles are repeating twiceNot familiar with that theme, but I’ll take a stab at it (I did look on your page too). It looks like the author put this into the design of the theme.
I would look on the index.php and page.php files. These will be located in wp-content/themes/NAME where NAME is the name of your theme. Look particularly for this tag…
<?php the_title(); ?>
If you can find it wrapped in
<strong></strong>
tags then that’s the culprit.Let me know if that helps.
Forum: Fixing WordPress
In reply to: Create a blog on a static pageI’m not sure I understand entirely, but you could download the plugin PHP-Exec that allows you to paste PHP codes in your Page HTML section.
Then make a call to paste your Blog Posts… ie.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h1><a href="<?php the_permalink() ?>"> <?php the_title(); ?></a></h1> <?php include (TEMPLATEPATH . '/inc/meta.php' ); ?> <div class="entry"> <?php the_content(); ?> </div> </div> <?php endwhile; ?> <?php include (TEMPLATEPATH . '/inc/nav.php' ); ?> <?php else : ?> <h2>Not Found</h2> <?php endif; ?>
Note, you might also want to replace
the_content()
withthe_excerpt()
I’m not sure if this is a solution or not, but please let me know if it is or isn’t.
Forum: Plugins
In reply to: [WP-PageNavi] Numbers not linking to PagesThanks Scribu,
I’ve read that already and I thought I understood it, but I’m finding that it didn’t completely, so you are right in pointing me there.
I just need to learn more at this point – thx for thelp ??
Forum: Fixing WordPress
In reply to: How do I maintain order in my html?I suppose what I was really suggesting is to make edits to any of the files you’re suggesting with a text editor. There are essentially three general ways to make your edits in this situation:
1 – Edit it with Dreamweaver’s Design interface, which will add and remove spaces by it’s own settings.
2 – Edit it with Dreamweaver’s Code interface, which should keep spaces and comment tags, but if not…
3 – Edit it with another Text Editor (ie Notepad ++).Forum: Fixing WordPress
In reply to: How to add navigation links on headerNo problem Evangelie – I hope it all helps and that you are able to make some great progress.
Keep me posted and I’ll help more if I can ??