Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1207071

    All of a sudden there are three dots below the “Read more” text. I don’t know where they come from and want to get rid of them. But how?

    Three dots

    #1207116

    Hey Schwimmsport Steiner,
    To remove the 3 dots try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
        $(".slide-entry-excerpt.entry-content").contents().filter(function(){ return this.nodeType == 3; }).remove();
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.