My Description won’t go back to normal after deleting an app that was meant to be used for product tabs to make navigation easier. How can I remove or code it back to a normal text description area with the description that im supposed to originally have before i installed the product tabs app. My theme is debut and an example of the product page on my website is, https://www.shopluxxe.co/products/copy-of-13mm-iced-prong-18k-gold
<< Make this tab back to the original description
@RobertMalagisi - did you made any code edit when you added this app? because looks like your original description code is edited, I recommend to remove that code, or if you find it difficult then add this css to the very end of theme.css and check
.ymq-original-tab{ymq-original-tab}
What exact code would I remove from the theme.css collectio to make the description go back to normal? I’ve had the product tabs app deleted so i’m not sure why it’s still there and also I tried adding that code you gave and nothing has changed
@RobertMalagisi - my bad, did not gave correct code, please add this
.ymq-original-tab{display:block !important}
Thank you for the update! I just added the code and it brought back the original description but the description button from the product tab app is somehow still there
@RobertMalagisi - please add this css to remove button
#ymq-tab-box{display:none; visibility:hidden;}
1 Like
Hi @RobertMalagisi ,
After uninstalling some apps, there are still left some codes in different liquid or CSS files.
You can look at this link, How To Uninstall Apps Complete
Indeed, hiding unused “Description” elements is not a good solution. Because your customer’s browser will still load and parse unused scripts from this app’s server, and as a result will slow down your site. You can safely comment on the unused code snippets.
Please follow my steps:
-
Go to Online Theme → edit code → sections-> product-template.liquid
-
Ctrl + F to search for
-
replace the code with new one
{% comment %} this is old {% endcomment %}
{% render 'ymq-tab-initializer' %}
{% comment %} this is new {% endcomment %}
{{ product.description }}
{% comment %} {% render 'ymq-tab-initializer' %} {% endcomment %}
If you are not fine coding, you’d like better to hire a web developer or Shopify developer to solve this issue.
Hope it works.