Stef Verbeeck
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS feed only works for categoriesChanged the setting, problem stays the same. Only the category feed works for me.
Feed validator says it’s still broken too: https://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fwww.twizted.be%2Ffeed
Forum: Fixing WordPress
In reply to: RSS feed only works for categories/%postname%
Forum: Fixing WordPress
In reply to: RSS feed only works for categoriesI tried that, it resulted in my site no longer working as it should, all pages (including the feed) returned a 404 error.
Forum: Fixing WordPress
In reply to: Blog Posts Page a Static Page – not pulling correct php/css infoI have used lesfreeman’s fix on two different sites now, works like a charm. I had noticed this behaviour by accident, and it seems he found the exact same fix for it. ??
Forum: Fixing WordPress
In reply to: Feed only shows one (excluded) categoryMeanwhile, I discovered the comments feed DOES work (?!?), but the regular one, or those for comments/authors DONT.
Does anyone have an idea on how to fix this? Is using feedburner a good alternative?
Thanks in advance.
Forum: Fixing WordPress
In reply to: Feed only shows one (excluded) categoryNo change.
I have this code on two different pages.
One is the homepage, which you see upon entering the site. This is a page setup to be the static homepage in wp-admin; and has only the click-able titles of the 3 latest posts visible:
<?php query_posts('showposts=3&cat=-626'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="headline"> <div class="headline_date"><?php the_time('d M Y') ?></div> <div class="headline_title"><a href='<?php the_permalink() ?>' class="headline_title"><?php the_title(); ?></a></div> </div> <?php endwhile; endif;?><?php wp_reset_query(); ?>
The second one is the actual blog page, a page setup to show ALL posts except those from category 626. I another code here:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-626&paged=$paged"); ?> <?php while (have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>"> <h1><?php the_title(); ?></h1> <p>door <strong><?php the_author() ?></strong> <img src="https://fileserv.twizted.be/vX/gui/icon_date.png" border="0" class="posticons" /> <?php the_time('d F Y') ?> <img src="https://fileserv.twizted.be/vX/gui/icon_comments.png" border="0" class="posticons" /> <?php comments_number('0 reacties','1 reactie','% reacties'); ?></p> <?php the_content(); ?> </div> <hr size="1" color="#dadfe3" /><p> </p> <?php endwhile; ?><?php wp_reset_query(); ?> <div id="pagination"> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?> </div>
Could it have something to with this? Also, I deleted a plugin that generated events as posts (in category 626), which made sure these posts would not show up on any other page. Could it be that this setting is still in my database or something?
Forum: Fixing WordPress
In reply to: Feed only shows one (excluded) categoryUse this to reset the effect.
wp_reset_query();Looks great, never knew that existed. Still no change though, only one category showing up in feed.
Forum: Fixing WordPress
In reply to: Feed only shows one (excluded) categoryThere should be 85 posts in that feed to be precise (limited in settings to 10 posts). It should not be a theme thing, as I said: I tried switching to default Kubrick theme, with no result… ??
Forum: Fixing WordPress
In reply to: Feed only shows one (excluded) categoryThe query you’re using only excludes that category from your web pages – not your RSS feed.
That’s what I figured, but it seemed so coincidental that exactly THAT category is the only one that DOES show up in my feed. Where’s the rest? I just don’t get it.
I have the same issue. I’ve created a website and want the homepage to be a static page using adminpanel -> settings -> reading. This page uses a special template file called home.php that is only used for this specific page.
I changed the “posts page” to a page called “blog”, which should use the normal template I’ve created for my pages. However, this blog page now uses the same template as the homepage, which is not what I intended. Can this be changed somehow? Modifying index.php does not seem to do the trick…
Does this have anything to do with my template for HOME actually being called home.php and WP prefers this one over index.php?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] installed plugin, can’t find it in adminFixed it by reinstalling the whole thing.
Might have had something to do with the warning I got the last time, stating that there wasn’t enough memory (editted this in php.ini).
Forum: Installing WordPress
In reply to: can’t find page 2Same problem here, my blog/db are installed too, but page two isn’t loaded.
I tried to reset my admin password, and I receive an email with a link but they page always replies “invalid key” when I click it to confirm the password change…
Can’t I find the pasword in the mySQL somewhere?