Shopify: Cómo mostrar el porcentaje de descuento con redondeo

Shopify recently introduced some neat new Math Filters, making it possible to round numbers. I spent a lot of time figuring out how to show a percentage-based discount on the Cart Page and Product Page for a Shopify Client. I haven’t seen it posted anywhere else in its entirety; just in smaller pieces which are difficult to piece together.  To save you the trouble, here’s what you’ll need:

CART PAGE

{% if item.variant.compare_at_price > item.variant.price %}
{{ item.variant.compare_at_price | money }}

{{ item.variant.compare_at_price | minus: item.variant.price | times: 100.0 | divided_by: item.variant.compare_at_price | times: 100 | divided_by: 100 | <strong>floor</strong> }}%
{% endif %}

PRODUCT PAGE

Replace item.variant with product, like this:

{% if product.compare_at_price > item.variant.price %}

{{ product.compare_at_price | money }}
{{ product.compare_at_price | minus: product.price | times: 100.0 | divided_by:product.compare_at_price | times: 100 | divided_by: 100 | <strong>floor</strong> }}%
{% endif %}

Shopify Rounded Percentage

***

Gracias de nuevo por mantenerse al día con nuestro Shopify Insider blog @ Blackbelt Commerce. Por favor, asegúrese de revisar nuestra Productos. También tenemos algunas recomendaciones principales del blog para que usted Compruebe hacia fuera; Los beneficios del pensamiento multicanal, how to increase shopify revenue, an overview to e-commerce regulations, the most excited e-commerce marketing trendsLos mejores recursos de la hoja de trucos de Shopify.  Como siempre, vigila las nuevas publicaciones del blog.

Questions? Ask away in the comments below.

¿Cuáles son las principales tiendas de Shopify?

Toma lo que aprendimos y utilíla para tu ventaja.
Obtenga nuestra investigación exclusiva: Insights de más de 500 tiendas Shopify.

Impulsado por ConvertKit

Añadir comentario

Su dirección de correo electrónico no se publicará. Los campos obligatorios se marcan *

Este sitio utiliza Akismet para reducir el spam. Obtén información sobre cómo se procesan los datos de tus comentarios.

;

Añadir comentario

Su dirección de correo electrónico no se publicará. Los campos obligatorios se marcan *

Este sitio utiliza Akismet para reducir el spam. Obtén información sobre cómo se procesan los datos de tus comentarios.