Forums Forums Search & Filter Pro 3 dots at the end of each excerpt

Viewing 10 posts - 1 through 10 (of 10 total)
  • Anonymous
    #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.
    Thanks

    Trevor
    #185837

    Are 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
    #185922

    Hey 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 bro

    Trevor
    #185926
    This reply has been marked as private.
    Anonymous
    #185935
    This reply has been marked as private.
    Trevor
    #185958

    To me, the 3 dots have now disappeared and the posts are now full?

    Anonymous
    #186029
    This reply has been marked as private.
    Trevor
    #186051

    This 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.

    Anonymous
    #186142
    This reply has been marked as private.
    Trevor
    #186144

    The problem lies, most likely, inside your theme, so you would need to talk with the theme author to see why it is doing this.

Viewing 10 posts - 1 through 10 (of 10 total)