jeremydsmith
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Yoast SEO] Yoast gone to split screenHi thanks for your reply
I do see POST and BLOCK on my side bar
When I click preferences, I do not see anything that says panel. I have tried changing a few settings but yoast still appears in split screen mode on my post screen instead of trailing at the end of it.
I can’t see how you attach an image here.
thanks
Jeremy
Forum: Fixing WordPress
In reply to: Can't get rid of Archive for the Category messageHmmmm for some reason the above is replacing my A
rchive for the ‘%s’
with %sForum: Fixing WordPress
In reply to: Can't get rid of Archive for the Category messageThe archive.php contains this. It is 8216 that is causing the problem.
Can anyone let me know what I should alter to stop this happening for this page/category?thanks
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?> <h2 class="pagetitle"><?php printf(__('Archive for the ‘%s’ Category', 'kubrick'), single_cat_title('', false)); ?></h2> <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?> <h2 class="pagetitle"><?php printf(__('Posts Tagged ‘%s’', 'kubrick'), single_tag_title('', false) ); ?></h2> <?php /* If this is a daily archive */ } elseif (is_day()) { ?> <h2 class="pagetitle"><?php printf(_c('Archive for %s|Daily archive page', 'kubrick'), get_the_time(__('F jS, Y', 'kubrick'))); ?></h2> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> <h2 class="pagetitle"><?php printf(_c('Archive for %s|Monthly archive page', 'kubrick'), get_the_time(__('F, Y', 'kubrick'))); ?></h2> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> <h2 class="pagetitle"><?php printf(_c('Archive for %s|Yearly archive page', 'kubrick'), get_the_time(__('Y', 'kubrick'))); ?></h2> <?php /* If this is an author archive */ } elseif (is_author()) { ?> <h2 class="pagetitle"><?php _e('Author Archive', 'kubrick'); ?></h2> <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> <h2 class="pagetitle"><?php _e('Blog Archives', 'kubrick'); ?></h2> <?php } ?>
Forum: Fixing WordPress
In reply to: How to remove Archive for blog categoryHi, I’ve also got this problem. Can someone tell me the fix please? thanks
Viewing 4 replies - 1 through 4 (of 4 total)