monkeynotes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: V1.5 wp_list_pages problemIt appears that wp_list_pages does not like being requested after things like:
<?php the_title(); ?>
<?php the_content(); ?>Have been processed. If I take them out of the page it goes through just fine. This is really odd.
Forum: Fixing WordPress
In reply to: <!–more–> not workingNope, it does not seem to work at all. I must have broken it somehow, but I really have not done that much to the template…
Forum: Fixing WordPress
In reply to: Single categoriesThanks this works great – no need for the plugin – just do this:
<!-- build first query loop-->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<!--set special selective loop in this instance, filter Cat=News and display 1 post-->
<?php query_posts("category_name=News&showposts=1"); ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Do your story stuff here -->
<?php endwhile; ?>
<?php endwhile; ?>I imagine I have not done this in the most elegant fashion but it works perfectly.
Forum: Fixing WordPress
In reply to: URL changed, now I am pooched.Yes, just found that seconds before you replied – this seems to have fixed it. Sorry to have wasted your time.
Forum: Plugins
In reply to: google-hilite bugsThanks rboren
Forum: Plugins
In reply to: Exhibit 1.1d Photo Gallery PluginHi, this plugin solves most of my image management problems, I have customised it a little to suit my needs but now I am stuck. What I want is an option to display the small thumbnail image in the post but without it linking to the bigger version. This is useful for posts where just a thumbnail image suffices and there is no need to link to a larger image. I have been poking through the exhibit10p.php file but I am a bit lost when it comes to raw php.
Forum: Plugins
In reply to: google-hilite bugs<bump>
I am getting this error on some google search strings:
Warning: Unknown modifier 'r' in /home/public_html/plastic/wp-content/plugins/google-hilite.php on line 107
The search that produced this was “pictures of trash/rubbish” I expect the “/” and its immediate proximity to the “r” is the problem.Forum: Plugins
In reply to: Exhibit 1.1d Photo Gallery PluginWhat browser are you using eric211c ?
Forum: Plugins
In reply to: Error with exhibitChmod your image directory to 777
Forum: Plugins
In reply to: Fix WordPress RSS feedsI get a 500 server error when I add this to my .htaccess file:
<files rss.xml>
ForceType application/x-httpd-php
</files>
<files rss2.xml>
ForceType application/x-httpd-php
< /files >
<files index.rdf>
ForceType application/x-httpd-php
</files>
<files atom.xml>
ForceType application/x-httpd-php
</files>Forum: Fixing WordPress
In reply to: Excerpt/Entire Post<bump>
Hi, I am using this excerpt code on my site (https://www.plasticpattern.org/plastic/) but it does not seem to write good XHTML when I include <div>s in the excerpt. Is there any way to get it to behave?