Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1053225

    I want to remove the meta data below each blog post (date, number of commentaries, category and author) and the links too. Also I’d like to change the “Read more link” to another textstring (Forexample: “Curious?” or something else).

    Easy how to?

    Regards
    Metin

    #1053244

    Hey metin_aydin,
    To hide the meta data, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    span.post-meta-infos {
    display: none !important;
    }

    To change the read more link, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_more_link(){
     ?>
     <script>
    (function($){
    $(document).ready(function(){
    $(".more-link").text("Curious?");
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_more_link');

    Best regards,
    Mike

    #1053340

    Hi Mike,

    It worked! But only on the frontpage http://www.taekwondo-summercamp.dk/ and not on http://www.taekwondo-summercamp.dk/news/

    I can’t see how CSS is not affected on the latter page – can you grasp it?

    Regards
    Metin

    #1053406

    Hi,
    The read more button is replaced with the “more-link-arrow” button, please check your settings.
    If this doesn’t help, please include a admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

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