<span class=money> showing under collections

granelyst
Tourist
6 0 1

Hi guys. My website is showing this (photo). I've checked with BOLD, they say it is the theme's (Debut) coding. Any idea how to rectify it?

error.JPG

Replies 69 (69)
henhen
Tourist
4 0 1

Hello, I am using Bold Multi-Currency and I even have this <span class=money> appeared in my product pages when I switch the variants. All the bold installation has been done accordingly but still the problem are still there for my theme "Express". I did change the currency formatting as well according to google helps but problem is still there. Please help me out for this as I already seek as many help as possible but this still trouble me for a week. 

my shop: www.sneakyhenry.com

thank you and regards,

henry

hawraa-abdullah
Visitor
2 0 1

I am also having the same issue, can you please help?

hawraa-abdullah
Visitor
2 0 1

I am also having the same issue, can you please help?

 

www.dripnetic.com

KetanKumar
Shopify Partner
36843 3636 11978

@hawraa-abdullah 

Thanks for it 

are you able to code so can you please try this 

https://community.shopify.com/c/Technical-Q-A/Code-editing-Debute-theme-Pricing-issue/td-p/673532

https://www.shopify.in/partners/blog/collection-page-price-range

 or let me know i can do this.

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
scottnemiro
Excursionist
14 0 10

UNDER PRODUCT-THUMBNAIL.LIQUID i have this and it fixed my money showing issue. 

This starts at the product available liquid {% if product.available %}

 

 {% if product.available %}
          <!--   {% if product.price_varies and product.price_min > 0 %}
            <small><em>{{ 'products.general.from' | t }}</em></small>
            {% endif %}
            {% if product.price_min > 0 %}
              <span class="money">{{ product.price_min | money }}</span>
          
            {% else %}
              {{ settings.free_price_text }}
            {% endif %}
          {% else %}
            <span class="sold_out">{{ 'products.product.sold_out' | t }}</span>
          {% endif %}
          <!--{% if product.compare_at_price_max > product.price %}
            <span class="was_price">
              <span class="money">{{ product.compare_at_price_max | money }}</span>
            </span>
          {% endif %}-->

 

AnjoSantiago
Visitor
1 0 4

 


@granelyst wrote:

Hi guys. My website is showing this (photo). I've checked with BOLD, they say it is the theme's (Debut) coding. Any idea how to rectify it?

error.JPG



Easy, no customization needed. Go to your Shopify settings, then General. Scroll down to "Store Currency". Now there's a link to change formatting. Under HTML with currency, change 

 

<span class=money> ${{amount}} SGD </span>

to

${{amount}} SGD

You can do the same to "HTML without currency", just exclude SGD, or whatever currency you're using. 

 

Hope this helps!

 

Salikawebs
Visitor
1 0 0

worked for me. thanks a lot

srujansuman
Visitor
3 0 0

Hey, I'm facing the exact same issue with debut. How do I resolve this?

KetanKumar
Shopify Partner
36843 3636 11978

Please share your site URL,
So I will check and provide a solution here.

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
scottnemiro
Excursionist
14 0 10

could you please post what the fix is? i have similar issue but only some items show a --> code. I can tell it's part fo the span class money but i can not figure out where it is hiding. here is a link to a problem item: https://advancedmetalart.com/search?q=turtle 

KetanKumar
Shopify Partner
36843 3636 11978

@scottnemiro 

Thanks for post 

sorry but i can see this issue this page if possible to provide a proper link or screenshot 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
scottnemiro
Excursionist
14 0 10

i posted wrong link.

 

see this one: https://advancedmetalart.com/search?type=product&q=scuba

KetanKumar
Shopify Partner
36843 3636 11978

do you mean remove this

KetanKumar_0-1598934508847.png

 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
scottnemiro
Excursionist
14 0 10

yes. It only shows on certain items and I can not figure out why or where

 

it is supposed to hide the entire price like most of the listings. but certain ones have the price and -->

KetanKumar
Shopify Partner
36843 3636 11978

@scottnemiro 

yes, please share product card grid item code

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
scottnemiro
Excursionist
14 0 10

I FIXED IT. 

mine was located in product.thumbnail.liquid

 

here is original problem code:

 


{% unless collection_handles contains 'coming-soon' %}
<span class="price {% if product.compare_at_price_max > product.price %}sale{% endif %}" itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<meta itemprop="price" content="{{ product.price_min | money_without_currency }}" />
<meta itemprop="priceCurrency" content="{{ shop.currency }}" />
<meta itemprop="seller" content="{{ shop.name | escape }}" />
<link itemprop="availability" href="http://schema.org/{% if product.available %}InStock{% else %}OutOfStock{% endif %}">
<meta itemprop="itemCondition" content="New" />

{% if product.available %}
{% if product.price_varies and product.price_min > 0 %}
<!-- <small><em>{{ 'products.general.from' | t }}</em></small>
{% endif %}
{% if product.price_min > 0 %}
<span class="money">{{ product.price_min | money }}</span>
-->
{% else %}
{{ settings.free_price_text }}
{% endif %}
{% else %}
<span class="sold_out">{{ 'products.product.sold_out' | t }}</span>
{% endif %}
<!--{% if product.compare_at_price_max > product.price %}
<span class="was_price">
<span class="money">{{ product.compare_at_price_max | money }}</span>
</span>
{% endif %}-->
</span>
{% endunless %}
</div>
{% if settings.sale_banner_enabled and product.compare_at_price_max > product.price %}
<div class="sale_banner">{{ 'collections.general.sale' | t }}</div>
{% endif %}

 

i moved the incorrectly positioned <!--   and i removed the extra  --> (see attached)

 

Untitled.png

KetanKumar
Shopify Partner
36843 3636 11978

@scottnemiro 

Wow Grete this 

Thanks for update 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing

naman12
Tourist
3 0 1

how do i get rid of this. please help

KetanKumar
Shopify Partner
36843 3636 11978

@naman12 

Please share your site URL,
So I will check and provide a solution here.

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing

AnaGaleano
Shopify Partner
13 1 0

Hello! I have the same problem but it's only showing on my quick cart, could someone help me? 

Thanks in advance! 

 

Captura de Pantalla 2023-07-11 a las 10.15.52.png