Jak upravit text read more nebo more nebo číst více?
Pokud máte DIVI šablonu, tak jednoduše, musíte vložit skript níže do DIVI – nastavení – Integrace – <head>
<script>
jQuery(function($){
$(„.et_pb_blog_grid_wrapper .more-link“).html(function() {
return $(this).html().replace(„číst více“, „your Text here“) ;
});
});
</script>
případně tento kód
<script>
jQuery(function($){
$(„.et_pb_posts .more-link“).html(function() {
return $(this).html().replace(„číst více“, „více“) ;
});
});
</script>
