Title: raphaefeli's Replies | WordPress.org

---

# raphaefeli

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Thumbnails on galleries are in different sizes](https://wordpress.org/support/topic/thumbnails-on-galleries-are-in-different-sizes/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/thumbnails-on-galleries-are-in-different-sizes/#post-5960879)
 * ok, i made another change. to keep up with the aspect ratio of the featured image,
   i updated my thumbnail sizes to 279×130 and changed my galleries to 3 column 
   instead. ran the regenerate plugin and things seem to work now. the blurry images
   are also gone.
 * thanks for the help bdbrown!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Thumbnails on galleries are in different sizes](https://wordpress.org/support/topic/thumbnails-on-galleries-are-in-different-sizes/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/thumbnails-on-galleries-are-in-different-sizes/#post-5960877)
 * so, i began with setting the default thumbnail size back to 150×150 and ran the
   regenerate plugin. did not work, in fact, it looks worse.
 * here’s a screenshot of my settings: [http://www.thef1fan.com/wp-content/uploads/2015/04/2015-04-02_1117.png](http://www.thef1fan.com/wp-content/uploads/2015/04/2015-04-02_1117.png)
 * Example page: [http://www.thef1fan.com/formula-1-news/2015-malaysian-grand-prix-photos?cache=no](http://www.thef1fan.com/formula-1-news/2015-malaysian-grand-prix-photos?cache=no)
 * still no luck 🙁
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Thumbnails on galleries are in different sizes](https://wordpress.org/support/topic/thumbnails-on-galleries-are-in-different-sizes/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/thumbnails-on-galleries-are-in-different-sizes/#post-5960853)
 * Thank you. The default thumbnail size is in fact reset. Since the container width
   is 209px, should I change the auto size to 209×209 so that the images are not
   distorted?
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FB Page Promoter Lightbox] FB Page promoter doesnt work on homepage](https://wordpress.org/support/topic/fb-page-promoter-doesnt-work-on-homepage/)
 *  [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/fb-page-promoter-doesnt-work-on-homepage/#post-5769822)
 * does anyone know how to fix this issue? it is not working on the home page for
   me.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Ommiting Pages from Search results but NOT in Edit Mode](https://wordpress.org/support/topic/ommiting-pages-from-search-results-but-not-in-edit-mode-1/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/ommiting-pages-from-search-results-but-not-in-edit-mode-1/#post-5881793)
 * still not working. still getting a syntax error… here’s all the code in my functions
   file:
 *     ```
       <?php
       /* ------------------------------------------------------------------------- *
        *  Custom functions
       /* ------------------------------------------------------------------------- */
   
       	// Add your custom functions here, or overwrite existing ones. Read more how to use:
       	// http://codex.wordpress.org/Child_Themes
   
        // function to pull custom responsive css
       	function alx_styles() {
       		wp_enqueue_style( 'style', get_stylesheet_uri() );
       		if ( ot_get_option('responsive') != 'off' ) { wp_enqueue_style( 'responsive', get_stylesheet_directory_uri().'/responsive.css' ); }
       		if ( ot_get_option('custom') == 'on' ) { wp_enqueue_style( 'custom', get_template_directory_uri().'/custom.css' ); }
       		wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome.min.css' );
       	}
   
        // function to remove pages from search
   
       function mySearchFilter($query) {
       if ($query->is_search) && (! is_admin()) {
       $query->set('post_type', 'post');
       }
       return $query;
       }
   
       add_filter('pre_get_posts','mySearchFilter');
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Ommiting Pages from Search results but NOT in Edit Mode](https://wordpress.org/support/topic/ommiting-pages-from-search-results-but-not-in-edit-mode-1/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/ommiting-pages-from-search-results-but-not-in-edit-mode-1/#post-5881779)
 * I’m getting a syntax error… i’m not a php expert, i can’t figure out why.
 *     ```
       function mySearchFilter($query) {
       if ($query->is_search) && (! is_admin())}
       $query->set('post_type', 'post');
       }
       return $query;
       }
   
       add_filter('pre_get_posts','mySearchFilter');
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Ommiting Pages from Search results but NOT in Edit Mode](https://wordpress.org/support/topic/ommiting-pages-from-search-results-but-not-in-edit-mode-1/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/ommiting-pages-from-search-results-but-not-in-edit-mode-1/#post-5881777)
 * i’m not sure what to do here. can you give me the steps? thx
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Backfilling content on blog – Posts not ordered chronologically](https://wordpress.org/support/topic/backfilling-content-on-blog-posts-not-ordered-chronologically/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/backfilling-content-on-blog-posts-not-ordered-chronologically/#post-5881710)
 * Ok bdbrown, I figured out! I disabled all my plugins one-by-one and there was
   some sort of conflict between Yoast SEO and Simple Custom Post Order.
 * Disabling Yoast fixed the problem and enabling Simple Custom Post Order brought
   the problem back. I went ahead and deleted Simple Custom Post Order and the issue
   is gone.
 * Thanks for your help. I’ll have more questions on other things and I’m looking
   forward to your help!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Backfilling content on blog – Posts not ordered chronologically](https://wordpress.org/support/topic/backfilling-content-on-blog-posts-not-ordered-chronologically/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/backfilling-content-on-blog-posts-not-ordered-chronologically/#post-5881694)
 * hi bdbrown, i just changed it and nothing happened. take a look…
 * this is strange stuff!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Backfilling content on blog – Posts not ordered chronologically](https://wordpress.org/support/topic/backfilling-content-on-blog-posts-not-ordered-chronologically/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/backfilling-content-on-blog-posts-not-ordered-chronologically/#post-5881668)
 * Nope, the visibility is set to public and the “stick” box is unchecked.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Backfilling content on blog – Posts not ordered chronologically](https://wordpress.org/support/topic/backfilling-content-on-blog-posts-not-ordered-chronologically/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/backfilling-content-on-blog-posts-not-ordered-chronologically/#post-5881658)
 * Hi bdbrown the post date is “Published on: Mar 3, 2015 @ 20:56” . I changed the
   dates around to a different day and then back to Mar 3 and nothing changed….
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Featured articles showing twice on index page](https://wordpress.org/support/topic/featured-articles-showing-twice-on-index-page/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/featured-articles-showing-twice-on-index-page/#post-5881657)
 * Thanks bdbrown!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Collapse Mobile Menu in Initial State](https://wordpress.org/support/topic/collapse-mobile-menu-in-initial-state/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/collapse-mobile-menu-in-initial-state/#post-5839780)
 * hi bdbrown, thanks for looking into this. here’s a test page – it is the only
   one working the site, but it has a nav bar with multiple items.
 * [http://www.thef1fan.com/circuits/](http://www.thef1fan.com/circuits/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Collapse Mobile Menu in Initial State](https://wordpress.org/support/topic/collapse-mobile-menu-in-initial-state/)
 *  Thread Starter [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/collapse-mobile-menu-in-initial-state/#post-5839748)
 * hi bdbrown, i’m working on a local instance, but will move everything online 
   and let you know. thanks for the help!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Mobile / Tablet Menu Collapsing](https://wordpress.org/support/topic/mobile-tablet-menu-collapsing/)
 *  [raphaefeli](https://wordpress.org/support/users/raphaefeli/)
 * (@raphaefeli)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/mobile-tablet-menu-collapsing/#post-4741639)
 * Does anyone know if there’s a solution to this? The menu is collapsed with the
   code above, but it hides behind the page content once you expand it. I’d really
   love if I could have a functional menu since i have lots of pages and don’t want
   my users to scroll a lot.

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

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