noafilm
Forum Replies Created
-
Forum: Reviews
In reply to: [GDPR tools: Cookie notice + privacy] doesnt deinstall rightI”m using lightspeed cache and I did clear the cache but it still appeared, I just checked again and it appears that a second minify plugin was also caching pages, as soon as I cleared that the message disappeared. I changed the rating back to 5 as it is not a plugin issue, thx for the quick response!
Forum: Themes and Templates
In reply to: Blog title wrongI updated the “all in seo pack” but as soon as I activated it it added the word “gewijzigd” again. I”ll just leave it at that and decativate the plugin.
Anyway, thanks “shadow” for your assistance, it’s much appreciated.Forum: Themes and Templates
In reply to: Blog title wrongI think I found the problem, I deactivated the plug in “all in one seo pack” and the “gewijzigd” comment dissapeared. I still have not figured out why the plug in put the word “gewijzigd” in front of Noafilm’s blog. I will try to update the plugin first since an updated version has become available.
Forum: Themes and Templates
In reply to: Blog title wrongIf I change it to another theme the “gewijzigd” comment dissapears and it just says “Noafilm’s blog” like it should.
Forum: Themes and Templates
In reply to: Blog title wrongHi, it says:
<title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>Forum: Fixing WordPress
In reply to: Show posts from only one categoryThis is what I did for my “viki.eyeball” theme and that seems to work:
I pasted following code into my about page:<h2>Important</h2> <ul class="dates"> <?php // I love WordPress so query_posts('showposts=3'); query_posts("cat=36"); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <li><a>"><span class="date"><?php the_time( $hemingway->date_format() ) ?></span> <?php the_title() ?> </a></li> <?php endwhile; endif; ?>