Hi
How change blog sub title tags from h5 to h2.
i find it in includes/func.php but how i can use it in child theme.
@hamidhakaki,
I can give you the javascript code to change the title tag instead of overwriting it.
thanks, please give it to me and explain how can i use it?
@hamiddhakaki,
Please Go to wp-admin > WPLMS > Footer > Google Analytics Code and paste the below given script with these script tags.
<script>
$(document).ready(function(){
$(".blog .pagetitle h5").replaceWith(function () {
return "<h2>" + $(this).text() + "</h2>";
});
});
</script>
thanks alot, it work with little change
$(document).ready(function(){
$(".pagetitle h5").replaceWith(function () {
return "" + $(this).text() + "";
});
});