youreviltw1n
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Twitter Tweets] Can't hide @ replies…Has there been any progress on this? I’d love to be able to hide my @ replies on my Twitter feed on my site. Even if there was as simple as a ID or Class incorporated into the
- , I could hide them.
Forum: Everything else WordPress
In reply to: How to Edit FTP info?You’re on top of it! That was exactly it, thanks.
Forum: Themes and Templates
In reply to: “Older Posts” not showing older postsSong, it doesn’t look like that worked either. I don’t really know php, so I am just closing my eyes and cutting and pasting things. Maybe I’ll take a look into this later in the future.
Thanks for all your help everyone.
Forum: Themes and Templates
In reply to: “Older Posts” not showing older postsI think I do that. I start the second loop with:
<?php rewind_posts(); ?> <?php query_posts(array('post__not_in' => $ids)); while (have_posts()) : the_post(); ?>
If you look at my index page without any of the CSS or info pulling in the excerpts or post authors I think the loop PHP is:
<?php query_posts('showposts=1'); $ids = array(); while (have_posts()) : the_post(); $ids[] = get_the_ID(); ?> <?php endwhile; ?> <?php rewind_posts(); ?> <?php query_posts(array('post__not_in' => $ids)); while (have_posts()) : the_post(); ?> <?php endwhile; ?>
Forum: Themes and Templates
In reply to: “Older Posts” not showing older postsThanks for the help, Michael, but it didn’t look like that made a difference. The only thing that changed is that when I click on the “<< older posts” the address always goes to “(website)/?paged=2,” wherein with the old code, the page numbers had no limit.
Forum: Themes and Templates
In reply to: “Older Posts” not showing older postsThanks for getting back to me!
Songdog, I have like a bajillion posts of gibberish on the site, so it should definitely be able to pull something in. I set up the reading options to display only 2 per page and it still wouldn’t show any back log.
Michael, here is my index code: https://wordpress.pastebin.ca/1595592
The older posts works fine in the archives and under categories, so maybe it has something to do with the 2 loops on the index page?
Forum: Fixing WordPress
In reply to: Admin has no permissionsThanks for the help. Oddly enough, my problem fixed itself magically as I ignored it. As always, ignorance is the best answer.
thanks!
Forum: Fixing WordPress
In reply to: File archive, etc on another pageAlright, thanks. I’ll take a look at this.
Forum: Plugins
In reply to: plugins not workingActivate. I assumed that meant that the plugin was already activated.
Thank you for your replies everyone.
I’m just not too bright.
Haha, activate…Forum: Plugins
In reply to: plugins not workingI am using the most recent version of Firefox. I am not getting any error message, the plugins just do not seem to be doing anything.
Forum: Fixing WordPress
In reply to: Different fonts?As I am not so hot with coding and such, where should I put that info? Stylesheet, header, etc?
Thanks for the help, by the way.