Category view does not allow me to click on posts (Fatima Theme)
-
Hi there,
I am a complete noob when it comes to wordpress and coding so this might be a really stupid question, apologies if it is! I am using the Fatima theme and this is the current webpage (still very much under construction): https://the-best-electronic-cigarette-review.com/
When I click on a category on the top menu (for instance the electronic cigarette info) it sends me to the category view under which I have some posts – all good so far. However there is no link on these posts at all and I am unable to click on them. On the home page a button appears over the posts allowing you to click on them and I would like this on the category view as well. The same goes for when you search as the posts appear but again cannot be clicked on.
I have read some posts and searched google and some people were talking about the category.php and content vs excerpt etc but I cant seem to work it out on this theme that I am using.As far as I can it is showing the content but just no clickable bit on it.
Any help would greatly be appreciated! Thanks very much.
Here is the category code if this helps:<?php get_header(); ?> <!-- Fatima category page --> <div id="content" class="clearfix"> <?php if ( $data['fatima_sidebar_lr'] == '2c-l-fixed'):?> <div id="main_left" class="col620 clearfix" role="main"> <?php else: ?> <div id="main" class="col620 clearfix" role="main"> <?php endif; ?> <?php if ( have_posts() ) : ?> <h2 class="heading-latest"><?php printf( __( 'Category: %s', 'fatima' ), single_cat_title( '', false ) ); ?></h2> <div class="colorbar"></div> <?php $category_description = category_description(); if ( ! empty( $category_description ) ) echo apply_filters( 'category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>' ); ?> <div id="grid-wrap" class="clearfix"> <?php /* Fatima start the loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <div class="grid-box"> <?php get_template_part( 'content'); ?> </div> <?php endwhile; ?> </div> <?php if (function_exists("fatima_pagination")) { fatima_pagination(); } elseif (function_exists("newswire_content_nav")) { newswire_content_nav( 'nav-below' ); }?> <?php else : ?> <article id="post-0" class="post no-results not-found"> <h2 class="heading-latest"><?php _e( 'Nothing Found', 'fatima' ); ?></h2> <div class="colorbar"></div> <!--Fatima entry-header --> <div class="entry-content post-content"> <p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'fatima' ); ?></p> <?php get_search_form(); ?> </div> <!-- Fatima entry content --> </article> <?php endif; ?> </div> <?php if ( $data['fatima_sidebar_lr'] == '2c-l-fixed'):?> <?php get_sidebar('left'); ?> <?php else: ?> <?php get_sidebar('right'); ?> <?php endif; ?> </div> <?php get_footer(); ?>
- The topic ‘Category view does not allow me to click on posts (Fatima Theme)’ is closed to new replies.