
Adding a Read More button in Shopify is a great way to keep your product descriptions concise while still providing enough information for your customers. In this video, I’ll show you how to add a Read More button in Shopify and style it to match your store’s design.
1. jQuery Code
Make sure to include jQuery and add the following code in Theme.liquid:

<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>
2. HTML Code
Add the following HTML Code in your product description, note where it says Your Product Description which you need to replace with your own product description.

<a class="show_hide" >Read More</a>
<div class="read-more">
Your Product Description
</div>
3. CSS Code
Add the following code to your CSS file. If you are using the Dawn theme you will need to add the following code in base.css file
/* code by https://websensepro.com */
.show_hide {
cursor: pointer !important;
font-weight: bold;
text-decoration: underline;
text-decoration: underline;
font-size: 20px;
}
![How to Install Any Claude Skill From GitHub [Step-by-step] - Beginner Tutorial](/_astro/How%20to%20Install%20Any%20Claude%20Skill%20From%20GitHub%20_Step-by-step_%20-%20Beginner%20Tutorial.Cgks_FcS_1swru6.webp)
.Bktem256_23EEnI.webp)
.rrgOIsSz_Z2n0to0.webp)


