Title: areck's Replies | WordPress.org

---

# areck

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

 *   [Profile](https://wordpress.org/support/users/areck/)
 *   [Topics Started](https://wordpress.org/support/users/areck/topics/)
 *   [Replies Created](https://wordpress.org/support/users/areck/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/areck/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/areck/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/areck/engagements/)
 *   [Favorites](https://wordpress.org/support/users/areck/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: [[WooCommerce] Any way to add attachment to client note email in admin?](https://wordpress.org/support/topic/any-way-to-add-attachment-to-client-note-email-in-admin/)
 *  Thread Starter [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/any-way-to-add-attachment-to-client-note-email-in-admin/#post-7717399)
 * Thanks for reply. This plugin won’t let me to attach custom invoice (from the
   external accounting service) per user. I will try to figure out something. Thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Oxygen] comment submit button disappeared](https://wordpress.org/support/topic/comment-submit-button-disappeared/)
 *  [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/comment-submit-button-disappeared/#post-6071923)
 * thanks man! saved me hours of looking for the resolution!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] no output on "order-received" page and order status not updated payment](https://wordpress.org/support/topic/no-output-on-order-received-page-and-order-status-not-updated-payment/)
 *  [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/no-output-on-order-received-page-and-order-status-not-updated-payment/#post-4011081)
 * Thank you. In my case it turned out that I had those settings set up correctly
   in production account not in testing account panel in Ogone.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] no output on "order-received" page and order status not updated payment](https://wordpress.org/support/topic/no-output-on-order-received-page-and-order-status-not-updated-payment/)
 *  [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/no-output-on-order-received-page-and-order-status-not-updated-payment/#post-4011079)
 * any solution to that? I think this is some kind of a problem with the settings
   in Ogone panel. Anyone resolved that?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Awesome Filterable Portfolio] Thumbnail won't show](https://wordpress.org/support/topic/thumbnail-wont-show/)
 *  [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [13 years ago](https://wordpress.org/support/topic/thumbnail-wont-show/#post-3668072)
 * how? I can’t make my thumbnail working. Can you share your resolution?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Using post thumbnails outside the loop](https://wordpress.org/support/topic/using-post-thumbnails-outside-the-loop/)
 *  [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/using-post-thumbnails-outside-the-loop/#post-1474034)
 * I managed to display all attachments via code
 *     ```
       <?php
       $args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => null );
       $attachments = get_posts( $args );
       if ($attachments) {
       	foreach ( $attachments as $post ) {
       		setup_postdata($post);
       		the_title();
       		the_attachment_link($post->ID, false);
       		the_excerpt();
       	}
       }
       ?>
       ```
   
 * That displayed all the attachments including featured images. So how to exclude
   now any other types of attachments and leave only the featured images?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Using post thumbnails outside the loop](https://wordpress.org/support/topic/using-post-thumbnails-outside-the-loop/)
 *  [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/using-post-thumbnails-outside-the-loop/#post-1474033)
 * Is there any way to display all posts thumbnails outside the loop? I need to 
   create some kind of a gallery with posts thumbnails so i need to display them
   all together
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to limit the "recent comments" by date](https://wordpress.org/support/topic/how-to-limit-the-recent-comments-by-date/)
 *  [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/how-to-limit-the-recent-comments-by-date/#post-1599545)
 * anybody? help 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [highlight category links in sidebar once again](https://wordpress.org/support/topic/highligt-category-links-in-sidebar-once-again/)
 *  Thread Starter [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/highligt-category-links-in-sidebar-once-again/#post-1731591)
 * Ok I’ve changed the code and I managed to display categories in sidebar and I
   can highlight them when entering single post or category archive. But a strange
   thing happened. When I moved my site to another hosting provider I’m not able
   to highlight category when I’m in category archive! (Code is is still the same!)
 * Here’s a code:
 *     ```
       <div class="sidemenu">
       <?php
   
       	  $categories = get_categories('depth=1&hide_empty=false&exclude=1');
   
               foreach ($categories as $cat) {
   
                	 // Gets currently selected category id.
       			 $id = get_the_ID();
       		  	 $category = get_the_category($id);
   
       			 if($category[0]->cat_ID == $cat->cat_ID){
       			   if(!is_home() && !is_author() && !is_tag() &&){ $link_color = 'style="color:#336699;"'; }
   
       				echo '<a href="'.get_option('home').get_option('category_base').'/category/'.$cat->category_nicename.'/"' . $link_color . '>'.$cat->cat_name.'</a> ';
       			   }
       			 else{
       			   echo '<a href="'.get_option('home').get_option('category_base').'/category/'.$cat->category_nicename.'/">'.$cat->cat_name.'</a>';
       			}
   
                   if ($cat->category_description != '') {
                       echo '<p><span class="mendesc">' .$cat->category_description. '</span><span style="font-size: 10px; float: right">' . ' (' . $cat->category_count  . ')</span></p>';
                   }
       			else{
       	            echo '<p>&nbsp;</p>';
       			}
                   if ($cat->category_parent != 0) {
                       echo '<p>&nbsp;</p>';
   
                   }
               }
               ?>
       </div>
       ```
   
 * this is so strange! is the hosting provider server not supporting some wp variables?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to limit the "recent comments" by date](https://wordpress.org/support/topic/how-to-limit-the-recent-comments-by-date/)
 *  [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/how-to-limit-the-recent-comments-by-date/#post-1599540)
 * I refresh the question, any idea how it can be done?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [highlight category links in sidebar once again](https://wordpress.org/support/topic/highligt-category-links-in-sidebar-once-again/)
 *  Thread Starter [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/highligt-category-links-in-sidebar-once-again/#post-1731554)
 * anyone? :)still not resolved. It must be very similar to what i’ve done to highlight
   category when user is in category archive.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [display all comments from given month](https://wordpress.org/support/topic/display-all-comments-from-given-month/)
 *  Thread Starter [areck](https://wordpress.org/support/users/areck/)
 * (@areck)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/display-all-comments-from-given-month/#post-1709884)
 * anyone? :/

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