geekjon
Forum Replies Created
-
Forum: Plugins
In reply to: [WPtouch - Make your WordPress Website Mobile-Friendly] Slider doesn’t workShould there be a checkbox to “Enable featured slider”? If so, I’m not seeing one.
Forum: Plugins
In reply to: [Hyper Cache] Refresh homepage after new postOk. I found the index.hml file in the cache and opened it up and inspected it. It was modified and updated when I published a new post. However, that information is not what shows when going to domain.com . The homepage shows old posts since before cleaning the cache.
Forum: Plugins
In reply to: [Hyper Cache] Refresh homepage after new postI’m having the same trouble with the homepage not invalidating when a new post is published/edited/unpublished. I don’t want to turn off caching for my busy homepage.
I looked in the cache folder and I see no file that would be the homepage, so I’m not entirely sure where it is stored.
I was able to get the query to work with this array:
$args = array( 'post_type' => 'post', 'taxonomy' => 'artist', 'field' => 'slug', 'term' => $current_artist, 'post_status' => 'publish', 'posts_per_page' => -1, 'caller_get_posts'=> 1, );
HOWEVER, part of what made this difficult to troubleshoot is that there seems to be some inconsistencies with the relationships of my Artists (CPT-onomy) to my posts.
Is there any way to “rebuild” those relationships?Forum: Hacks
In reply to: How to exclude tags via URL parameters?Thanks. This looks promising, but I haven’t been able to test it yet.
Do you happen to know how to modify this to be a simple plugin?Thanks. I must have overlooked the Customize tab.
Forum: Plugins
In reply to: Any cache plugins that automatically purge unpublished page?Anyone?
I may have posted this in the wrong forum, but when I tried to repost it in a more appropriate forum, the post was deleted. Sorry about that.
Forum: Fixing WordPress
In reply to: client denied by server configurationI just realized that Search Permalink hasn’t been updated in quite a while. I am trying Nice Search instead.
Forum: Fixing WordPress
In reply to: client denied by server configurationThe permissions are 644 for search-permalink.php, just like all the other plugins.
Forum: Fixing WordPress
In reply to: Remove all images from posts using phpMyAdminAnyone?
Thanks
Forum: Fixing WordPress
In reply to: How to improve WordPress search?I’ve tried some search plugins, but the ones I have tried tend to broaden the results instead of make them more concise. I’ll continue to look at the available plugins.
Forum: Plugins
In reply to: Gallery link back to parent postWhat I did was create a template called
image.php
which is basically the same as myindex.php
but where the entry would go I put the following code:<p>This post belongs to <strong><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a></strong></p> <p style="text-align:center" class="attachment"><a title="<?php the_title(); ?>" href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p>
This puts a link back to the parent post and below that is the medium-sized image.
Forum: Fixing WordPress
In reply to: Gallery link back to parent postI figured it out myself. The changes needed to be made to the image.php which my theme was missing. Once I created the image.php file, I was able to add the functionality that I was looking for.
<p>This post belongs to <strong><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a></strong>
Forum: Fixing WordPress
In reply to: Gallery link back to parent postAnyone know how to do this?