Patrick
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: When clicking on posted in link, categories aren't filteringHey VeVas, your last post did the trick. Added <?php wp_reset_query(); ?> to the bottom of sidebar.php and everything works as it should now. Thank you so much for your help!
Forum: Fixing WordPress
In reply to: When clicking on posted in link, categories aren't filteringfunctions.php is rediculously simple
<?php // custom functions add_theme_support( 'post-thumbnails' ); if(has_post_thumbnail()) { $image_src = wp_get_attachment_image_src( get_post_thumbnail_id(),'full' ); echo '<img src="' . $image_src[0] . '" width="100%" />'; } // Replaces the excerpt "more" text by a link function new_excerpt_more($more) { global $post; return ' <a class="moretag" href="'. get_permalink($post->ID) . '">read more...</a>'; } add_filter('excerpt_more', 'new_excerpt_more'); ?>I tried switching themes and yes, it worked. This is frustrating. I’m not sure what it could be. My template is so simple you is causing such a big issue.
Forum: Fixing WordPress
In reply to: When clicking on posted in link, categories aren't filteringindex.php and category.php are basically identical. I place your bit of code where you mentioned with the correct category and it worked. All I see is the post from that category.
Forum: Fixing WordPress
In reply to: When clicking on posted in link, categories aren't filteringI had tried that as well. Placed category.php with the same code from above within it and no change. I also just took the coed from your post, and placed it into category.php to see if it would do anything and nothing.
Forum: Fixing WordPress
In reply to: When clicking on posted in link, categories aren't filteringHi VeVas, my template hierarchy consists of,
Header
index
single
sidebar
footer
functionsso I believe it is using single. I only have one plugin installed and I already tried disabling it to see if that would help and I got nothing.
As for the permalinks I went back and reset them to default, saved, did not help and then reset to post name, saved and it did nothing as well.
Forum: Themes and Templates
In reply to: [Enigma] Mobile Menu doesn't workYes and posted again stating that it still does not work.
Forum: Themes and Templates
In reply to: [Enigma] Portfolio linkHi saiyajinss!
Try this,
Dashboard > Appearance > Theme Options > Portfolio Option
Then under the corresponding portfolio piece look for “Portfolio One Link” and input the URL of the page you want it to link to.Hope this helps!