Forums › Forums › Search & Filter Pro › 3 dots at the end of each excerpt
- This topic has 9 replies, 2 voices, and was last updated 6 years, 6 months ago by
Trevor.
-
Anonymous(Private) August 16, 2018 at 10:16 pm #185831
Hi, After I use the search button i get this: https://ibb.co/d3WXNe
At the end of each result 3 dots are showing up.
I need the full result.
ThanksTrevor(Private) August 17, 2018 at 9:31 am #185837Are you able to send me a live link/URL to your search page so I can take a look?
The ellipsis indicates that the template being used is called the WordPress function the_excerpt(), but you need it to call the WordPress function the_content().
Which Display Result method does your form use?
Anonymous(Private) August 18, 2018 at 12:51 am #185922Hey Trevor,
Thanks first of all.
The site is: http://devcenter.pt/aptcci/directorio-de-psicoterapeutas/
In the template I changed the_excerpt(); for the_content(); at /templates/results.php
Thanks broTrevor(Private) August 21, 2018 at 10:30 am #186051This means that either another plugin or the theme is adding a filter to the_content() function.
You could use the get_the_content() function instead:
https://codex.wordpress.org/Function_Reference/get_the_content
It may require echo in front of it:
`<?php echo get_the_content(); ?>
Note that this function does not auto embed objects (like videos) and neither does it expand shortcodes.
-
AuthorPosts