- This topic has 18 replies, 2 voices, and was last updated 4 years, 11 months ago by
Elvin.
-
AuthorPosts
-
April 18, 2021 at 10:40 am #1739323
Emory Craig
I dug around the support resources and I’ve used your “Option_generate_blog_settings” to tweak the way search results are returned (single column instead of the two-column format elsewhere on my site. However, I would like to have a smaller feature image (300×300, or smaller) aligned left of the title and excerpt for the posts in search results. I see some resources about aligning feature images to the left, but I’m unclear if I need to do a separate filter for this or can it be incorporated into what I am now using – basically, the example you provide at the bottom of your page here: https://docs.generatepress.com/article/option_generate_blog_settings/
Any help on the code snippet I should use to shrink the feature image size and align left in search results is greatly appreciated. For an example of the format I’m looking to implement for search results, take a quick look the Road2VR site’s Top List page at: https://www.roadtovr.com/category/top-list/
If this works out, I may also want to use this layout for my category pages, but search results has priority right now. Thanks in advance for your amazing support of the best WP theme!
April 19, 2021 at 12:07 am #1739742Elvin
StaffCustomer SupportHi there,
I dug around the support resources and I’ve used your “Option_generate_blog_settings” to tweak the way search results are returned (single column instead of the two-column format elsewhere on my site. However, I would like to have a smaller feature image (300×300, or smaller) aligned left of the title and excerpt for the posts in search results. I see some resources about aligning feature images to the left, but I’m unclear if I need to do a separate filter for this or can it be incorporated into what I am now using – basically, the example you provide at the bottom of your page here: https://docs.generatepress.com/article/option_generate_blog_settings/
Yes you can definitely modify the current filter snippet you’re using. 🙂
Can you share with us the current snippet you’re using? So we can modify it to add the other parameters you require.
April 19, 2021 at 7:06 am #1740392Emory Craig
Elvin,
Can you share with us the current snippet you’re using? So we can modify it to add the other parameters you require.
As per my original message, it’s this one on your “Option_generate_blog_settings” page, with one minor change (I wanted the date to show in search results)
add_filter( ‘option_generate_blog_settings’, ‘lh_custom_search_results_page_settings’ );
function lh_custom_search_results_page_settings( $options ) {
if ( is_search() ) {
$options[‘read_more_button’] = true;
$options[‘date’] = true;
$options[‘categories’] = false;
$options[‘tags’] = false;
$options[‘comments’] = false;
$options[‘infinite_scroll’] = true;
$options[‘infinite_scroll_button’] = true;
$options[‘masonry_load_more’] = ‘More search results’;
$options[‘post_image’] = true;
$options[‘post_image_position’] = ‘post-image-aligned-center’;
$options[‘post_image_alignment’] = ‘post-image-aligned-center’;
$options[‘column_layout’] = false;
$options[‘featured_column’] = true;
$options[‘masonry’] = false;
}return $options;
}Again, I would like to model is something like the format on the Road2VR site’s Top List page at: https://www.roadtovr.com/category/top-list/
Thanks,
April 19, 2021 at 6:16 pm #1740977Elvin
StaffCustomer SupportThere are 2 parts to this.
For adjusting the image size, you’ll need to use a different filter.
Try this PHP snippet:
add_filter( 'generate_blog_image_attributes', function( $atts ) { // Set up our conditional if ( is_search( ) ) { $atts[ 'width' ] = 300; $atts[ 'height' ] = 300; $atts[ 'crop' ] = true; } // Return our options return $atts; } );As for the
option_generate_blog_settings, try this:add_filter( 'option_generate_blog_settings', 'lh_custom_search_results_page_settings' ); function lh_custom_search_results_page_settings( $options ) { if ( is_search() ) { $options['read_more_button'] = true; $options['date'] = true; $options['categories'] = false; $options['tags'] = false; $options['comments'] = false; $options['infinite_scroll'] = true; $options['infinite_scroll_button'] = true; $options['masonry_load_more'] = 'More search results'; $options['post_image'] = true; $options['post_image_position'] = 'post-image-above-header'; $options['post_image_alignment'] = 'post-image-aligned-left'; $options['column_layout'] = false; $options['featured_column'] = true; $options['masonry'] = false; } return $options; }Your snippet was halfway correct for the other things. You were already using
$options['date'] = true;. I just changedpost-image-aligned-centerto$options['post_image_alignment'] = 'post-image-aligned-left';.April 20, 2021 at 10:09 am #1742114Emory Craig
Elvin,
Thanks and I think I got what I needed. I had to dig through the Support Forums and find some CSS to reduce the font size and line-height. Unfortunately, that reduces it for everything on the page, including the sidebar, but that’s not a major issue.
One final question: is there an easy way to use the same filters and settings for category pages? If you like, I can create a new topic for that.
Thanks,
April 20, 2021 at 6:28 pm #1742445Elvin
StaffCustomer SupportThanks and I think I got what I needed. I had to dig through the Support Forums and find some CSS to reduce the font size and line-height. Unfortunately, that reduces it for everything on the page, including the sidebar, but that’s not a major issue.
If you can specify what fonts are you trying to adjust and on what page/s, I can help you out with the CSS writeup.
One final question: is there an easy way to use the same filters and settings for category pages? If you like, I can create a new topic for that.
You can add more conditions.
Example: removing date on category pages but keeping it on search results.
add_filter( 'option_generate_blog_settings', 'lh_custom_search_results_page_settings' ); function lh_custom_search_results_page_settings( $options ) { if ( is_search() ) { $options['date'] = true; } if ( is_category() ) { $options['date'] = false; } return $options; }April 21, 2021 at 2:45 pm #1743771Emory Craig
Elvin,
Here is the CSS I used to adjust the Search Results page – probably not nearly as elegant as what you might recommend – so any help is appreciated. It’s working okay but it also impacts the font in the sidebar:
.search-results h1 {
font-size: 36px;
}.search-results h2 {
font-size: 24px;
}.search-results {
line-height: 1.4em;
font-size: 15px;
}.search-results #breadcrumbs {
display: none;
}As for the Category pages, I was thinking not in terms of categories inside the search results page, but in the layout of the category pages themselves, such in the following example:https://www.digitalbodies.net/augmented-reality/ That’s where I was thinking of doing the same as I now have for Search Results as I like the single-column, feature image on the left-side for this.
Thank you,
April 21, 2021 at 5:29 pm #1743868Elvin
StaffCustomer SupportHere is the CSS I used to adjust the Search Results page – probably not nearly as elegant as what you might recommend – so any help is appreciated. It’s working okay but it also impacts the font in the sidebar:
This CSS affects every text within the page.
.search-results { line-height: 1.4em; font-size: 15px; }You can be more specific to avoid applying CSS on all.
Say for example you want to change the font size of
<p>tags within the main content area, you can do something like this:body.search-results .entry-content p { line-height: 1.4em; font-size: 15px; }Or say, you want to apply this on the right sidebar.
body.search-results #right-sidebar p { line-height: 1.4em; font-size: 15px; }.entry-contentand#right-sidebarare class selectors that specify which part/element of the page are you targeting.As for the Category pages, I was thinking not in terms of categories inside the search results page, but in the layout of the category pages themselves, such in the following example:https://www.digitalbodies.net/augmented-reality/ That’s where I was thinking of doing the same as I now have for Search Results as I like the single-column, feature image on the left-side for this.
If you want the category archive pages to have the same as search’s.
You can do something like this:
add_filter( 'option_generate_blog_settings', 'lh_custom_search_results_page_settings' ); function lh_custom_search_results_page_settings( $options ) { if ( is_search() || is_category() ) { //do your settings here. } return $options; }April 22, 2021 at 3:45 pm #1745297Emory Craig
ELvin,
Thanks for responding. I worked out the Search Results page format with a few tweaks of the CSS you recommended so that’s resolved.
However, when I tried to do the same with the Category Archive pages, it gave me an error. Here is what I tried (and below that, the error):
add_filter( ‘option_generate_blog_settings’, ‘lh_custom_search_results_page_settings’ );
function lh_custom_search_results_page_settings( $options ) {
if ( is_search() || is_category() ) {
$options[‘read_more_button’] = true;
$options[‘date’] = true;
$options[‘categories’] = false;
$options[‘tags’] = false;
$options[‘comments’] = false;
$options[‘infinite_scroll’] = true;
$options[‘infinite_scroll_button’] = true;
$options[‘masonry_load_more’] = ‘More search results’;
$options[‘post_image’] = true;
$options[‘post_image_position’] = ‘post-image-above-header’;
$options[‘post_image_alignment’] = ‘post-image-aligned-left’;
$options[‘column_layout’] = false;
$options[‘featured_column’] = true;
$options[‘masonry’] = false;
}
return $options;
}Here is the error message I am getting in Code Snippets when I try to Save and Activate it:
The code snippet you are trying to save produced a fatal error on line 2:
Cannot redeclare lh_custom_search_results_page_settings() (previously declared in /www/digitalbodies_932/public/wp-content/plugins/code-snippets/php/snippet-ops.php(361) : eval()’d code:2)Thanks in advance for any suggestions you might have to do the Category Pages in the same layout we’ve achieved for the Search Results page.
Emory
Emory Craig
https://www.digitalbodies.netApril 22, 2021 at 7:24 pm #1745384Elvin
StaffCustomer SupportThat error means the function name has been used before on some other snippet.
Perhaps you’ve added a new snippet instead of editing the existing one? If that’s the case, remove the newly added filter snippet and edit the older one that uses the same function name and filter.
April 22, 2021 at 8:13 pm #1745416Emory Craig
Elvin,
I did add a new snippet – my mistake! I will edit the original one. Two final questions and we can wrap this up.
How would I adjust the image size for category results? We used the following but I assume it needs to be modified to also cover categories:
add_filter( ‘generate_blog_image_attributes’, function( $atts ) {
// Set up our conditional
if ( is_search( ) ) {
$atts[ ‘width’ ] = 300;
$atts[ ‘height’ ] = 300;
$atts[ ‘crop’ ] = true;
}// Return our options
return $atts;
} );Second and last question, don’t I also need to modify the CSS as we did for Search Results? We have the following – do I add to it or do a separate CSS entry?
body.search-results .entry-content p {
line-height: 1.4em;
font-size: 15px;
}Thanks again,
Emory
Emory Craig
https://www.digitalbodies.netApril 22, 2021 at 8:31 pm #1745422Elvin
StaffCustomer SupportHow would I adjust the image size for category results? We used the following but I assume it needs to be modified to also cover categories:
for “category results” did you mean the category archive page?
You can do something like this.
add_filter( 'generate_blog_image_attributes', function( $atts ) { // Set up our conditional if ( is_search() || is_category() ) { $atts[ 'width' ] = 300; $atts[ 'height' ] = 300; $atts[ 'crop' ] = true; } // Return our options return $atts; } );Or you modify this code to do a separate if(){} condition for category.
Second and last question, don’t I also need to modify the CSS as we did for Search Results? We have the following – do I add to it or do a separate CSS entry?
Is it for category archive pages? or for all of the archive pages?
If it’s only for the category archive. we can just add that in.
body.category.archive .entry-content p, body.search-results .entry-content p { line-height: 1.4em; font-size: 15px; }April 23, 2021 at 10:14 pm #1746655Emory Craig
Elvin,
Thanks for these recommendations! My apologies, I got tied up with other work today and will try them out this weekend.
Emory
Emory Craig
https://www.digitalbodies.netApril 25, 2021 at 12:56 pm #1748577Emory Craig
Elvin,
I tried your recommendations and got the image located where I wanted it on the Category Pages. And I got the title and entry font on the Category pages to the size I wanted.
One last lingering problem I seem unable to resolve: the category entries still have the category name above them, which I would like to remove here. See the following link for what I mean in terms of the name of the category appearing above each entry. If I can remove that we’ll be all set.
https://www.digitalbodies.net/vr-games/
Thank you!
Emory
Emory Craig
https://www.digitalbodies.netApril 25, 2021 at 4:08 pm #1748668Elvin
StaffCustomer SupportOne last lingering problem I seem unable to resolve: the category entries still have the category name above them, which I would like to remove here. See the following link for what I mean in terms of the name of the category appearing above each entry. If I can remove that we’ll be all set.
The normal way of removing the category link is to Appearance > Customize > Layout > Blog and uncheck “Display post categories”.
Now if your category links are added by PHP snippets, you’ll have toe to remove the snippet responsible for it. 🙂
-
AuthorPosts
- You must be logged in to reply to this topic.