Forums › Forums › Search & Filter Pro › No results found
Tagged: No results
- This topic has 33 replies, 3 voices, and was last updated 5 years, 1 month ago by
Ross.
-
Trevor(Private) July 9, 2020 at 11:58 am #252168
As you are not searching Posts, you need to remove these:
https://www.screencast.com/t/5RqYgeocqA
Tags belong to Posts. In any case, where you want all terms, you should Select None.
Trevor(Private) July 9, 2020 at 4:01 pm #252252As you are using the Shortcode display results method, you need to follow the customising guide here:
https://searchandfilter.com/documentation/search-results/using-a-shortcode/#customising-the-results
Then you can edit the newly copied results.php file and translate those strings directly in the file.
You can edit and change the HTML as you need, so it would be possible to make text overlays, but not easy.
Trevor(Private) July 13, 2020 at 5:18 pm #252657This line makes the ‘found x results of x’ part:
Found <?php echo $query->found_posts; ?> Results<br />
So delete that line?
This line displays Categories:
<p><?php the_category(); ?></p>
So, delete that?
This line displays Tags:
<p><?php the_tags(); ?></p>
The coding is simple and self evident thus far, yes?
This line displays the Post date:
<p><small><?php the_date(); ?></small></p>
To make the image smaller, change this:
the_post_thumbnail("small");
to this:
the_post_thumbnail("thumb");
-
AuthorPosts