Read more button jquery

PHOTO EMBED

Tue Aug 02 2022 10:19:50 GMT+0000 (Coordinated Universal Time)

Saved by @websensepro #readmore #shopify-product #product-page-customization

<script>
// code by https://websensepro.com

$(document).ready(function () {
    $(".read-more").hide();
    $(".show_hide").on("click", function () {
        var txt = $(".read-more").is(':visible') ? 'Read More' : 'Read Less';
        $(".show_hide").text(txt);
        $(this).next('.read-more').slideToggle(200);
    });
});
</script>
content_copyCOPY

https://websensepro.com/blog/how-to-add-read-more-button-in-shopify-product-page/