Search results (gravity forms)

Hi, when I use the search function, I get a list of all results.
If there is a gravity form in the results, it shows a weird version with all the countries available in the form. As you can see it here :

Is there an option to only show the title of the pages / posts in the results ?
Or any other hack to hide this ?

I tried this css:
.entry-content.excerpt { display:none!important;}

But this applies also to the blog posts… Can I target only the search results ?

Thanks.

Hello @baysquentin,

Thanks for writing in!

You need to use the Google Chrome Developer Toolbar to check the live HTML code and find which CSS selector you need to use. In your case, you will have to use just the entry-content since pages do not have any excerpts.

.search .entry-content.excerpt { 
   display:none!important;
}

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Hope this helps.

Great !
Thanks.

You are most welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.