James Jeffery

Results 4 comments of James Jeffery

The fix from [104-contextual-links](https://github.com/nuvoleweb/ui_patterns/tree/104-contextual-links) doesn't appear to fix the issue of my layout pattern showing its contextual links.

The 'pre_get_posts' seems to break search on admin pages. I added `!is_admin() && !empty( $query->get( 's' ) )` to the conditional.

Yes, the site is hosted on Pantheon. I've tried a few different things. The simplest was the following: ```php add_filter( 'solr_index_custom_fields', function( $indexed_keys ) { $indexed_keys[] = 'solr_search_boost'; return $indexed_keys;...

Thanks. I applied #359 solution and it seems to help but I'm still not able to get the boost working. I set the boost to `post_title^2 post_content^1.2 solr_search_boost_str^5` but even...