Hi Ink themes, I have made a website in infoway theme and I have already removed the date, author etc. on posts so these are not showing on the website. However the dates on the posts are stills showing in google SERP. Now do I remove this? site:www.superlej.dk
Hello, Go to single.php present in your theme directory and remove the code given below Code: <ul class="post_meta"> <li class="post_date"><span></span> <?php the_date('Y-m-d'); ?> </li> <li class="posted_by"> <span>By</span> <?php the_author_posts_link(); ?> </li> <li class="post_category"> <span>Posted in</span> <?php the_category(', '); ?> </li> </ul> Use same process for blog.php also. Thanks & Regards Gourav Shrivastava
Hello Christina, For blog page Code: .content-bar .post .post_meta .post_category { display:none; } For single page Code: .content-bar .post.single .post_meta .post_category { display: none;} Thanks & Regards Nitesh Raghuwanshi