Title: TerryMitchell's Replies | WordPress.org

---

# TerryMitchell

  [  ](https://wordpress.org/support/users/terrymitchell/)

 *   [Profile](https://wordpress.org/support/users/terrymitchell/)
 *   [Topics Started](https://wordpress.org/support/users/terrymitchell/topics/)
 *   [Replies Created](https://wordpress.org/support/users/terrymitchell/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/terrymitchell/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/terrymitchell/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/terrymitchell/engagements/)
 *   [Favorites](https://wordpress.org/support/users/terrymitchell/favorites/)

 Search replies:

## Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Share Buttons Adder] Suddenly only showing on posts, not categories or pages.](https://wordpress.org/support/topic/suddenly-only-showing-on-posts-not-categories-or-pages/)
 *  Thread Starter [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/suddenly-only-showing-on-posts-not-categories-or-pages/#post-10187139)
 * Yes, it seems fine!
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Chat Bro Live Group Chat] Incorrect CSRF token](https://wordpress.org/support/topic/incorrect-csrf-token/)
 *  [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/incorrect-csrf-token/#post-8716093)
 * Same problem here, nightmare on an otherwise great plugin!
 * It makes it unusable as there’s no option to deactivate the FB login option (
   same problem with Google+ too btw)
 * Thanks
 * Terry
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mobile Native Android App Maker for WordPress] Embedded Javascript not working](https://wordpress.org/support/topic/embedded-javascript-not-working/)
 *  Thread Starter [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/embedded-javascript-not-working/#post-4969708)
 * OK, I’m uploading my local site to an online testing environment as I write. 
   I’ll be in touch in the next few days with access.
 * Many thanks
 * Terry
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HTML5 Drag and drop code not working within posts](https://wordpress.org/support/topic/html5-drag-and-drop-code-not-working-within-posts/)
 *  Thread Starter [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/html5-drag-and-drop-code-not-working-within-posts/#post-4963502)
 * So, after checking in two other (older) themes I had on my localhost setup I’ve
   established that it’s not a ‘theme’ issue. It’s definitely something within the
   WordPress setup that’s freaking out the HTML5/JS code. The item being dragged
   always seems to jump around the same distance from the cursor – if that’s any
   help.
 * Oh, and this is all on my Localhost setup so I can’t include a link.
 * Thanks again
 * Terry
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Twenty Twelve: Help!! What have I done?? Page Navigation has disappeared.](https://wordpress.org/support/topic/twenty-twelve-help-what-have-i-done-page-navigation-has-disappeared/)
 *  Thread Starter [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/twenty-twelve-help-what-have-i-done-page-navigation-has-disappeared/#post-3336336)
 * Hi Aaron
 * It is a template for pages, I posted above (before your last post) a link to 
   the page link function which I’ve always used on my Twenty eleven wordpress site,
   which I’ve now got to work, but only seems to link to other pages and not within
   category which is what I need now on my new site.
 *  If anyone has any ideas I’d be very thankful.
 * Cheers
 * Terry
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Twenty Twelve: Help!! What have I done?? Page Navigation has disappeared.](https://wordpress.org/support/topic/twenty-twelve-help-what-have-i-done-page-navigation-has-disappeared/)
 *  Thread Starter [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/twenty-twelve-help-what-have-i-done-page-navigation-has-disappeared/#post-3336297)
 * OK, the workaround is not working…. Grrr. I’m going to paste the code for the
   page which displays the category I need pagination for.
 *     ```
       <? /* Template Name: QC */ ?>
       <?php
       /**
        * The template for displaying all pages.
        *
        * This is the template that displays all pages by default.
        * Please note that this is the WordPress construct of pages
        * and that other 'pages' on your WordPress site will use a
        * different template.
        *
        * @package WordPress
        * @subpackage Twenty_Twelve
        * @since Twenty Twelve 1.0
        */
   
       get_header(); ?>
   
       	<div id="primary" class="site-content" style="background-color:#D49F35; border: 2px; border-style:solid; border-color:#587776; margin: 4px; margin-top:4px; clear:both; padding:4px; margin-bottom:20px;">
       		<div id="content" role="main">
       			<?php while ( have_posts() ) : the_post(); ?>
       				<?php get_template_part( 'content', 'page' ); ?>
               <?php
       query_posts('cat=4');
       if(have_posts()) :
       while(have_posts()) :the_post();
       ?>
       <h2><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h2>
       <div><?php the_content('Read More') ?></div>
       <?php
       endwhile;
       endif;
       wp_reset_query();?>
       			<?php endwhile; // end of the loop. ?>
       		</div><!-- #content -->
       	</div><!-- #primary -->
   
       <?php get_sidebar(); ?>
       <?php get_footer(); ?>
       ```
   
 * Any help/suggestions would be greatly appreciated.
 * Once again, it’s a local site so no links are possible.
 * Thanks in advance.
 * Terry
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Twenty Twelve: Help!! What have I done?? Page Navigation has disappeared.](https://wordpress.org/support/topic/twenty-twelve-help-what-have-i-done-page-navigation-has-disappeared/)
 *  Thread Starter [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/twenty-twelve-help-what-have-i-done-page-navigation-has-disappeared/#post-3336287)
 * Hi Aaron!!
 * Thanks for getting back to me. Page navigation has been an integral part of my
   wordpress site since the beginning, codex here: [http://codex.wordpress.org/Next_and_Previous_Links](http://codex.wordpress.org/Next_and_Previous_Links)
 * But since upgrading to twentytwelve they just disappeared on me. As I said, I’m
   only working locally so can’t post any links, just confused as to why the links
   aren’t showing.
 * I think I may have discovered a workaround last night, testing now.
 * Thanks again.
 * Terry
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [TwentyTwelve: Remove entry title from home page ONLY](https://wordpress.org/support/topic/twentytwelve-remove-entry-title-from-home-page-only/)
 *  Thread Starter [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/twentytwelve-remove-entry-title-from-home-page-only/#post-3320418)
 * Managed to work around it by associating a different ‘page-content’ file with
   my home page and removing the header entry there. But if anyone can come up with
   any ideas as to why the CSS option wasn’t working I’d be very interested.
 * Thanks
 * Terry
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [TwentyTwelve: Remove entry title from home page ONLY](https://wordpress.org/support/topic/twentytwelve-remove-entry-title-from-home-page-only/)
 *  Thread Starter [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/twentytwelve-remove-entry-title-from-home-page-only/#post-3320403)
 * Many thanks for getting back to me Alchymyth, I know – it’s strange. It seems
   I have ‘ghosts in the machine’. I’m already doing all of the above, it’s obviously
   human error on my behalf but I just can’t seem to suss it out. I’ll get there
   eventually.
 * Thanks again!!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [twentytwelve: frontpage & header](https://wordpress.org/support/topic/twentytwelve-frontpage-header/)
 *  [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/twentytwelve-frontpage-header/#post-3088988)
 * I thought this was relevant here as it was the same problem and I used the same
   code?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [twentytwelve: frontpage & header](https://wordpress.org/support/topic/twentytwelve-frontpage-header/)
 *  [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/twentytwelve-frontpage-header/#post-3088986)
 * Having real trouble getting this to work on my localhost setup, any ideas why.
   I have my front page set to show a static page and I’d like to remove the entry
   title from that page/post only. Tried the above code with no luck. I also tried
   using the actual post’s class as follows:
 *     ```
       .post-4 .entry-title {
          display: none; !important
       }
       ```
   
 * I’m using Twenty Twelve.Any advice welcomed and no links available as it’s local.
 * Many thanks
    `
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Need to be able to access next page…](https://wordpress.org/support/topic/need-to-be-able-to-access-next-page/)
 *  Thread Starter [TerryMitchell](https://wordpress.org/support/users/terrymitchell/)
 * (@terrymitchell)
 * [14 years ago](https://wordpress.org/support/topic/need-to-be-able-to-access-next-page/#post-2725184)
 * Just a slight update regarding the terminology I’ve used. I’ve set my blog up
   to show batches of posts on category pages, this is what I mean by pages… Basically
   categories showing batches of posts together as a kind of newsfeed, unfortunately
   the category pages don’t allow for more than 100 per page with no way of linking
   to the next batch of posts and personally I’d like to show no more than 20 per
   page and then people can choose whether to look at the next batch or not.
    Please
   help.
 * thanks
 * Terry

Viewing 12 replies - 1 through 12 (of 12 total)