HI.
My link is in Private Message.
Bye
Andy
Hey Ismael,
the link is in the private content.
thanks.
Hi Ismael,
I just edited the functions.php file
here is the code:
function allow_excerpt_linebreak(){
?>
<script>
$(document).ready(function() {
$(".entry-content").html(function(index, currentHtml) {
return currentHtml.replace('String to replace', '</br> replaced String');
});
});
</script>
<?php
}
add_action('wp_head', 'allow_excerpt_linebreak');
Is there on the archive page a different class?
I can’t find my mistake.
thanks
Markus
Hey Jordan,
I’d like to have the same layout on the archive site (http://umzug.kamhuber.at/2018/02/) like on this side: http://umzug.kamhuber.at/kondolieren/.
The Grid Layout is perfect, but the line break in the excerpt is missing.
I can’t find my mistake.
with best regards.
Markus
Hi Support.
I have the solution for my problem found in function.php – child theme
/* Deferring parsing of JavaScript */
/*
function defer_parsing_of_js ( $url ) {
if ( FALSE === strpos( $url, ‘.js’ ) ) return $url;
if ( strpos( $url, ‘jquery.js’ ) ) return $url;
return “$url’ defer “;
}
add_filter( ‘clean_url’, ‘defer_parsing_of_js’, 11, 1 );
*/