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.
We want to take a moment to celebrate the incredible ways you all engage with the Shopi...
By JasonH Oct 15, 2024Starting a B2B store is a big undertaking that requires careful planning and execution. W...
By JasonH Sep 23, 2024By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024