schmacklab
Forum Replies Created
-
You rock! That seems to work great, thanks!
Awesome, thanks!
I just dropped this bit into the loop above:
<?php global $wp_query; $wp_query->in_the_loop = true; ?>
And now it works perfectly. Thanks for the help!
Here’s a link to the code on pastebin: https://pastebin.com/MLtKEsHE
The loop works fine and does what it’s supposed to. But the plugin only edits content on the front end that comes through the generic page loop.
Thanks for taking a look! I appreciate it.
Forum: Themes and Templates
In reply to: Category in ID=1 and not in ID=2Forum: Plugins
In reply to: [Plugin: WP Super Cache] Warning that “pages do not match. timestamps differ”So I get the error that my test pages don’t match but when I actually check the time stamps while loading the site they are the same.
I am assuming that everything is actually working but how can I know for sure?
It’s kind of imperative as a couple of my sites went down today for traffic when the plugin was disabled.
Forum: Themes and Templates
In reply to: single post template for custom post type woesFound this answer:
Have you tried going into the Admin going to Settings -> Permalinks and saving? You have to do this to flush the rewrite rules after adding any new ones…which registering a post type does by default.
Thanks to prettyboymp from reddit.com/r/wordpress
Forum: Themes and Templates
In reply to: tags archive is showing 404 errorThere are tags associated with the posts. On the index I do not display them. On this page: https://www.unitedwithlove.com/vendor-guide/hair-and-make-up/ you can see under the image in the featured section a link that says “See More”. This is a link to a tag associated with all posted from this vendor. It should use the archive page but instead is kicking to a 404. As far as I can tell the link is generating correctly.
Are there any reasons for this to be occurring?
EDIT: Apparently it has fixed itself. The 404 errors seem to be a part of a larger problem with timouts maybe? The site is hosted on a shared server with another blog and both receive a ton of traffic. Hopefully getting them to a VPS will solve the random 404’s as both sites experience this.
Forum: Themes and Templates
In reply to: How do I use get_tag_link($tag_id); but with the tag slug?Thanks this works great!
Final code for anyone interested:
<?php $tag_slug = get_post_meta($post->ID,'see_more',true); $this_tag = get_term_by('slug',$tag_slug,'post_tag'); if($this_tag) $tag_link = get_tag_link($this_tag->term_id);?> <?php if (get_post_meta($post->ID, 'see_more', true)) { ?> See more from <?php the_title(); ?> right <a href="<?php echo $tag_link; ?>">here.</a><?php } ?>
Forum: Themes and Templates
In reply to: How do I use get_tag_link($tag_id); but with the tag slug?I understand custom fields the problem I’m having is using the tag slug. From my understanding only <?php echo get_tag_link($tag_id); ?>
is supported.https://codex.www.ads-software.com/Function_Reference/get_tag_link
Forum: Themes and Templates
In reply to: Category in ID=1 and not in ID=2<iframe src=”https://pastebin.com/embed_iframe.php?i=ZZz3c6RW” style=”border:none;width:100%”></iframe>
<script src=”https://pastebin.com/embed_js.php?i=ZZz3c6RW”></script>
Not sure how to embed the paste code so if this doesn’t work here’s a link:pastebin code
Forum: Themes and Templates
In reply to: Category in ID=1 and not in ID=2EDIT Working on the code pastbin is new to me.
Forum: Themes and Templates
In reply to: Can anyone tell me why this wont clear?Sorry it was the post-meta-container.
Resolved with firebug and whole lot of mucking around.
Always find a solution 10 minutes after I post here. I swear that bug has haunted me for months!thanks
Forum: Fixing WordPress
In reply to: Images broken after wordpress directory changelast try anybody?
Forum: Fixing WordPress
In reply to: Images broken after wordpress directory changeUpon closer examination, post thumbs work and all images on the first page of the blog work. It appears as though only images after page1 in the blog are not updating properly. This seems really odd.
You can see the site here: https://www.schmacklab.com
This is pretty urgent so any help would be greatly appreciated!
Thanks
Forum: Fixing WordPress
In reply to: How do I store category post count in a variable?Unless I’m missing something that only gives you the total count of all posts where I need the count of posts within specific categories.
Thanks