I’d like to show the content of a quoted post (link) by default
The expand arrow is a bit too subtle.
What methods do I have available to do this?
Thanks
I’d like to show the content of a quoted post (link) by default
The expand arrow is a bit too subtle.
What methods do I have available to do this?
Thanks
There may be a better solution and we should try to avoid jquery, but this should work:
<script>
$(document).ready(function(){
jQuery(function(){
jQuery('.quote-toggle').click();
});
})
</script>