Title: Mem's Replies | WordPress.org

---

# Mem

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 34 total)

1 [2](https://wordpress.org/support/users/mem/replies/page/2/?output_format=md) 
[3](https://wordpress.org/support/users/mem/replies/page/3/?output_format=md) [→](https://wordpress.org/support/users/mem/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Blackoot Lite] showing an entire blog post](https://wordpress.org/support/topic/showing-an-entire-blog-post/)
 *  [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/showing-an-entire-blog-post/#post-5941428)
 * Appearance – Theme Options – Main Settings – Blog Index Shows – Full Content –
   Save all Changes
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Gridster-Lite] Getting rid of the featured image while keeping the thumbnail](https://wordpress.org/support/topic/getting-rid-of-the-featured-image-while-keeping-the-thumbnail-1/)
 *  [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/getting-rid-of-the-featured-image-while-keeping-the-thumbnail-1/page/2/#post-4584371)
 * I removed
    `<?php the_post_thumbnail('post-full', array('class' => 'postimage'));?
   >` from content-single php file
 * to get rid of the thumbnail image in the post so only have the 1 image. Dunno
   if thats what you meant but might help someone else
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fifteen] How do I remove the large space?](https://wordpress.org/support/topic/how-do-i-remove-the-large-space/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/how-do-i-remove-the-large-space/#post-5525866)
 * Nevermind. Using better theme.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Alphabeticalisation of Archive Titles?](https://wordpress.org/support/topic/alphabeticalisation-of-archive-titles/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/alphabeticalisation-of-archive-titles/#post-5221270)
 * Was wp-sticky plugin interfering
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Alphabeticalisation of Archive Titles?](https://wordpress.org/support/topic/alphabeticalisation-of-archive-titles/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/alphabeticalisation-of-archive-titles/#post-5221256)
 * ok I’ve noticed part of the page is a-z and the other isn’t .. like it’s doubling
   the posts in category archives
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Alphabeticalisation of Archive Titles?](https://wordpress.org/support/topic/alphabeticalisation-of-archive-titles/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/alphabeticalisation-of-archive-titles/#post-5221240)
 * No it’s Magazine Shack. I renamed it.
 * All the changes I have made dont seem to work .. hence why I have come here. 
   Thanks anyway.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Alphabeticalisation of Archive Titles?](https://wordpress.org/support/topic/alphabeticalisation-of-archive-titles/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/alphabeticalisation-of-archive-titles/#post-5221237)
 * My index.php
 *     ```
       <?php get_header(); ?>
   
       	<!-- start content -->
           <div id="content">
           	<div id="entries">
       			<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
                       query_posts("showposts=5&paged=$paged"); ?>
   
                   <?php while (have_posts()) : the_post(); ?>
   
                    <!-- start entry post -->
                   <div class="entry" id="post-<?php the_ID(); ?>">
                   	<div class="entryinfo"><?php edit_post_link('Edit', '', ' &nbsp;&bull;&nbsp;'); ?> <?php the_time('d M Y'); ?> &nbsp;&bull;&nbsp; <?php the_category(', ') ?> &nbsp;&bull;&nbsp; <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?></div>
                       <div class="post">
                       	<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
       					<?php the_content(); ?>
                       </div>
                   </div>
                    <!-- end entry post -->
                   <?php endwhile; ?>
               </div>
               <div class="navigation">
       <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
               </div>
           </div>
           <!-- end content -->
   
       <?php get_sidebar(); ?>
   
       <?php get_footer(); ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Alphabeticalisation of Archive Titles?](https://wordpress.org/support/topic/alphabeticalisation-of-archive-titles/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/alphabeticalisation-of-archive-titles/#post-5221228)
 * I don’t have a category php page and couldn’t work out how to get it to work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Calendar] pop up and hover text not working](https://wordpress.org/support/topic/pop-up-and-hover-text-not-working/)
 *  [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/pop-up-and-hover-text-not-working/#post-3417466)
 * [http://wordpress.org/support/topic/plugin-events-calendar-mouseovers?replies=4](http://wordpress.org/support/topic/plugin-events-calendar-mouseovers?replies=4)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Need help to decrypt an encoded footer](https://wordpress.org/support/topic/need-help-to-decrypt-an-encoded-footer/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/need-help-to-decrypt-an-encoded-footer/#post-1712361)
 * Closing this. I got help here [http://www.sharemafia.com/decode-help/15518-please-decode-base64-decode.html](http://www.sharemafia.com/decode-help/15518-please-decode-base64-decode.html).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Need help to decrypt an encoded footer](https://wordpress.org/support/topic/need-help-to-decrypt-an-encoded-footer/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/need-help-to-decrypt-an-encoded-footer/#post-1712238)
 * Ugh didn’t work. Took out some things that where there before.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Need help to decrypt an encoded footer](https://wordpress.org/support/topic/need-help-to-decrypt-an-encoded-footer/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/need-help-to-decrypt-an-encoded-footer/#post-1712237)
 * Mmmmwwwaaa thankyou .. ugh why didn’t I think of that *facepalms* lol
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Admin Panel Gone Bonkers](https://wordpress.org/support/topic/admin-panel-gone-bonkers/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/admin-panel-gone-bonkers/#post-1710970)
 * It was Links/Categories. Thanks for the help but will have to wait a few hours
   to go back to 3.0.1 now. Am at work and have to leave shortly so was trying to
   get my site back up so it worked before I left to go home lol.
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Admin Panel Gone Bonkers](https://wordpress.org/support/topic/admin-panel-gone-bonkers/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/admin-panel-gone-bonkers/#post-1710963)
 * I went to v3 which allowed me to use the widgets again. But it wouldnt let me
   do categories. Did the repair tables but that didn’t work. I stuck the thing 
   in the config file and even though I can’t add categories via the category page..
   I can now at least add them on the add new link part (where before I couldn’t
   do that).
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Admin Panel Gone Bonkers](https://wordpress.org/support/topic/admin-panel-gone-bonkers/)
 *  Thread Starter [Mem](https://wordpress.org/support/users/mem/)
 * (@mem)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/admin-panel-gone-bonkers/#post-1710935)
 * Found the archive and going to unistall the current version. Am hoping there 
   is a fix for the latest version and that installing a previous version makes 
   my wordpress work ugh

Viewing 15 replies - 1 through 15 (of 34 total)

1 [2](https://wordpress.org/support/users/mem/replies/page/2/?output_format=md) 
[3](https://wordpress.org/support/users/mem/replies/page/3/?output_format=md) [→](https://wordpress.org/support/users/mem/replies/page/2/?output_format=md)