Snippets Collections
/* code by https://websensepro.com */
.show_hide {
  cursor: pointer !important;
  font-weight: bold;
  text-decoration: underline;
  text-decoration: underline;
  font-size: 20px;
}
<a class="show_hide" >Read More</a>
<div class="read-more">

  Your Product Description
  
</div>
<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>
star

Tue Aug 02 2022 10:35:23 GMT+0000 (Coordinated Universal Time) https://websensepro.com/blog/how-to-add-read-more-button-in-shopify-product-page/

#readmore #shopify-product #product-page-customization
star

Tue Aug 02 2022 10:31:47 GMT+0000 (Coordinated Universal Time) https://websensepro.com/blog/how-to-add-read-more-button-in-shopify-product-page/

#readmore #shopify-product #product-page-customization
star

Tue Aug 02 2022 10:19:50 GMT+0000 (Coordinated Universal Time) https://websensepro.com/blog/how-to-add-read-more-button-in-shopify-product-page/

#readmore #shopify-product #product-page-customization

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension