Title: gregalam's Replies | WordPress.org

---

# gregalam

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Double content in post](https://wordpress.org/support/topic/double-content-in-post/)
 *  Thread Starter [gregalam](https://wordpress.org/support/users/gregalam/)
 * (@gregalam)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/double-content-in-post/#post-1994522)
 * Ok,
 * Fixed my own problem. Pretty simple.
 * I needed to have the structure of the code
 * if
    else if else
 * as opposed to
 * if
    if else
 * My new code looks like
 *     ```
       <?php
       $post = $wp_query->post;
       if ( in_category('37') ) {
       include(TEMPLATEPATH . '/single-update.php');
       }
       else if ( in_category('55') ) {
       include(TEMPLATEPATH . '/single-diy-or-go-pro.php');
       }
       else {
       include(TEMPLATEPATH . '/single-all.php');
       }
       ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Paypal says button is too big due to .css code in WP](https://wordpress.org/support/topic/paypal-says-button-is-too-big-due-to-css-code-in-wp/)
 *  [gregalam](https://wordpress.org/support/users/gregalam/)
 * (@gregalam)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/paypal-says-button-is-too-big-due-to-css-code-in-wp/#post-1335272)
 * Thanks ancawonka. Your solution worked perfectly!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: MailChimp List Subscribe Form] Mailchimp plugin sidebar width takes up 2 sidebar widths – s](https://wordpress.org/support/topic/plugin-mailchimp-list-subscribe-form-mailchimp-plugin-sidebar-width-takes-up-2-sidebar-widths-seems-fixed/)
 *  [gregalam](https://wordpress.org/support/users/gregalam/)
 * (@gregalam)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/plugin-mailchimp-list-subscribe-form-mailchimp-plugin-sidebar-width-takes-up-2-sidebar-widths-seems-fixed/#post-1298300)
 * This is what I found out:
    - Go to the plugins editor and edit the mailchimp.php file
    - .mc_signup_submit – that will change the SUBMIT button
    -  #mc_signup_form .mc_var_label, #mc_signup_form .mc_input – this will change
      the signup boxes withthin the form container – EX: the email address, first
      name, and last name boxes
    - .mc_custom_border legend – this will change the container box that the form
      sits within
    - #mc_signup_form legend – controls the box within the signup form box that 
      has the title of your signup form
 * My form title text overflows if too long though, and for the life of me can’t
   figure out how to fix that. Tried overflow, text-overflow, and word-wrap.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Excerpts – No ‘read more’ link](https://wordpress.org/support/topic/excerpts-no-read-more-link/)
 *  [gregalam](https://wordpress.org/support/users/gregalam/)
 * (@gregalam)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/excerpts-no-read-more-link/#post-1048725)
 * The code to be pasted into the functions.php file should have
    <?php before it
   and ?> after it like this.
 *     ```
       <?php function excerpt_ellipse($text) {
          return str_replace('[...]', ' <a href="'.get_permalink().'">Read more...</a>', $text); }
       add_filter('the_excerpt', 'excerpt_ellipse');
       ?>
       ```
   

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