Title: mossbit's Replies | WordPress.org

---

# mossbit

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MaxButtons - Create buttons] Upgraded Plugin – Fatal Error](https://wordpress.org/support/topic/upgraded-plugin-fatal-error/)
 *  [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/upgraded-plugin-fatal-error/#post-10720048)
 * I’m having the same issue. Need this resolved ASAP
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [User(s) already exists. Please provide a valid username.](https://wordpress.org/support/topic/users-already-exists-please-provide-a-valid-username/)
 *  [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/users-already-exists-please-provide-a-valid-username/#post-4553074)
 * I too am having issues with this.
    Do you have to create a new database and start
   over every time you upgrade MAMP, Xampp or WAMP?? I lost alot of sights not sure
   how to get them back. Can I with out recreating everything????
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Twelve php Coding Help](https://wordpress.org/support/topic/twenty-twelve-php-coding-help/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years ago](https://wordpress.org/support/topic/twenty-twelve-php-coding-help/#post-3655958)
 * I want to thank you again for your time and effort. you’re right this is a good
   plugin
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Twelve php Coding Help](https://wordpress.org/support/topic/twenty-twelve-php-coding-help/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years ago](https://wordpress.org/support/topic/twenty-twelve-php-coding-help/#post-3655952)
 * Thanks Wpyogi,
    I looked into this plugin and I think this will do the trick.
   I know what I want to do is complicated. I wanted to create my site with the 
   least amount of plugins. When I first started this project some folks said to
   use the least amount of plugins because they will slow down the site, but as 
   a beginner in WordPress this plugin will have to do until I can get up to speed
   with PHP
 * Thanks again for you immediate response 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Twelve php Coding Help](https://wordpress.org/support/topic/twenty-twelve-php-coding-help/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years ago](https://wordpress.org/support/topic/twenty-twelve-php-coding-help/#post-3655950)
 * Well it has taken me a couple of days to figure this out. What I believe I need
   to do is create a post for each and every mountain and place them in a mountain
   category. I can then create 3 loops. One that sorts the mountains the second 
   adds a mountain to the category the third adds a number to the mountain post 
   if it is there. I think the code will look something like this ( I do not have
   all of the pieces yet):
 *     ```
       <!-- Start the Loop. -->
        <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
   
        <?php if ( in_category('3') ) { ?>
                  <!-- Add a number to the mountain post. -->
        <?php } else { ?>
                 <!-- If not in mountain post add the mountain to the category. -->
        <?php } ?>
   
        <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
   
        <!-- How do I sort by mountain by altitude? Can I start the title with the altitude and sort by title?. -->
        by <?php the_title() ?>
   
        <div class="entry">
          <?php the_content(); ?>
        </div>
   
        <p class="postmetadata">Posted in <?php the_category(', '); ?></p>
        </div> <!-- closes the first div box -->
   
        <?php endwhile; else: ?>
        <?php endif; ?>
       ```
   
 * Can anyone see if I am still headed in the right direction Thanks so much
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [WordPress Twenty Twelve Theme different styling for page titles and post-titles](https://wordpress.org/support/topic/wordpress-twenty-twelve-theme-different-styling-for-page-titles-and-post-titles/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/wordpress-twenty-twelve-theme-different-styling-for-page-titles-and-post-titles/#post-3656323)
 * Thank you so much for your immediate response.
    I keep forgetting to use Firebug
   in Firefox. I need to tattoo this on my forehead. I ended up identifying the 
   page through the body tag and added the class behind it and this worked for me.
 *     ```
       #post-7 .entry-title {
       	background: #6F866A;
       	color: #FFF;
       	padding: 10px;
       }
       ```
   
 * I guess I will have to do this for every page.
    right? if it works can I assume
   I am doing the css properly?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Twelve create different CSS Styling For Excerpts & Full Posts](https://wordpress.org/support/topic/twenty-twelve-create-different-css-styling-for-excerpts-full-posts/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/twenty-twelve-create-different-css-styling-for-excerpts-full-posts/#post-3627410)
 * Thanks sometime I do make things harder than they are. Its a reminder I should
   stop for the night and continue again in the morning.
    It worked:)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Twelve create different CSS Styling For Excerpts & Full Posts](https://wordpress.org/support/topic/twenty-twelve-create-different-css-styling-for-excerpts-full-posts/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/twenty-twelve-create-different-css-styling-for-excerpts-full-posts/#post-3627401)
 * I am assuming I place my `<body class=" ">` in my category.php file and another
   in my home.php file. Do I place this before the loop? or at the bottom.
    I get
   what I have to do with the .css
 * thanks so much for this and your quick response
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Twelve create different CSS Styling For Excerpts & Full Posts](https://wordpress.org/support/topic/twenty-twelve-create-different-css-styling-for-excerpts-full-posts/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/twenty-twelve-create-different-css-styling-for-excerpts-full-posts/#post-3627392)
 * Now that you mention it it is for all the categories as well because they have
   excerpts too. I am not using Archives at the moment
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twelve] excerpt blog index and category index?](https://wordpress.org/support/topic/excerpt-blog-index-and-category-index/)
 *  [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/excerpt-blog-index-and-category-index/#post-3170253)
 * Great Post thank you all and alchymyth for the solution!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Visual Form Builder] shortcode](https://wordpress.org/support/topic/shortcode-21/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/shortcode-21/#post-3412305)
 * Never mind figured it out.
    I did not find it in your notes. I found it as I 
   examined the form area carefully. Below the box “form items” on the left hand
   side there is another box “display forms” and I open my page found the form upload
   and there is a lightbox type thing select the form needed to place the shortcode
   in the form.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Visual Form Builder] shortcode](https://wordpress.org/support/topic/shortcode-21/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/shortcode-21/#post-3412299)
 * I need to put this short code in a page where is it. I went through your documentation
   and I could not find it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Visual Form Builder] purchased](https://wordpress.org/support/topic/purchased/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/purchased/#post-3410748)
 * Thank you Matthew for taking care of this issue. I have the plugin and will be
   using it. Great plugin 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Visual Form Builder] questions](https://wordpress.org/support/topic/questions-7/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/questions-7/#post-3410711)
 * yes this does and it looks like I will have to get the pro version. Thank you
   for your immediate response
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MaxButtons - Create buttons] Can't change button](https://wordpress.org/support/topic/cant-change-button/)
 *  Thread Starter [mossbit](https://wordpress.org/support/users/mossbit/)
 * (@mossbit)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/cant-change-button/#post-3384319)
 * Thank you it worked

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