Shopify themes, liquid, logos, and UX
I have added a new row in customer order page, as shown in the image, there are two links "Download Printable PDF", and "Download Digital Invitation"
I want the "Download Digital Invitation" to be unwrapped, how to do so?
To make the "Download Digital Invitation" link unwrapped and display on a separate line in the customer order page, you can modify the HTML structure of the row element. Here's how you can achieve this:
<div class="order-row">
<div class="download-links">
<a href="#" class="printable-pdf">Download Printable PDF</a>
<a href="#" class="digital-invitation">Download Digital Invitation</a>
</div>
</div>
<br>
) after the first link. Update the code as follows:
<div class="order-row">
<div class="download-links">
<a href="#" class="printable-pdf">Download Printable PDF</a><br>
<a href="#" class="digital-invitation">Download Digital Invitation</a>
</div>
</div>
Unfortunately, it didn't work.
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025