Change "guarantee" location (Debutify Theme)

Hey team,

Want to change the location of my ‘guarantee’ icons to above my reviews widget.

If anyone has the code I can paste in that would be awesome.

Much appreciated!

https://ap-perform.com/products/smartcup%E2%84%A2-recovery-massager?variant=44688358244640

Hey @Nato0201

This is not possible via CSS, You will have to make some changes in your product.liquid file. If you’re not familiar with coding the I suggest you to hire a Shopify developer who can perform these changes for you. Also I recommend you to always duplicate your theme before performing any changes in your code. Feel free to text me if you require any assistance.

Best Regards,
Moeed

Thanks for getting back to me!

Correct, via the product.liquid files is what I meant, not the CSS via app.

Do you know the required code for this?

Much appreciated

If you can share the code of your product.liquid file then I can share the updated code with you here

Hi @Nato0201 ,

Guarantee section is added in your theme.liquid file and Review section is added in your product.liquid file so if you want to do that, you will need to move review-widget section to theme.liquid file.

Like the entire code?

{%- if content_for_layout contains “product-template” -%}

{%- if settings.enable_payment_button -%}

{%- endif -%} {%- endif -%}

{%- if content_for_layout contains “featured-video” -%}

{%- endif -%}

{%- if content_for_layout contains “map” -%}

{%- endif -%}

{%- if request.page_type == “contact” or request.page_type == “product” or request.page_type == “captcha” -%}

{%- endif -%}

{%- if settings.dbtfy_automatic_geolocation -%}

{%- endif -%}

{%- if settings.dbtfy_instagram_feed -%}

{%- endif -%}

{%- if settings.dbtfy_facebook_messenger -%}

{%- endif -%}

{%- liquid
assign accent_family = settings.accent_family
assign base_family = settings.base_family
assign header_family = settings.header_family
assign base_family_bold = base_family | font_modify: “weight”, “bolder”
assign base_family_italic = base_family | font_modify: “style”, “italic”
assign base_family_bold_italic = base_family_bold | font_modify: “style”, “italic”
assign accent_family_bold = accent_family | font_modify: “weight”, “bolder”
assign icon_split = settings.icon | split: “-”
capture icon_family
for icon in icon_split
unless forloop.last == true
echo icon | capitalize | append: " "
else
echo icon | capitalize
endunless
endfor
endcapture
-%}

{%- if canonical_url != blank -%}

{%- endif -%}

{%- assign favicon_url = settings.favicon | img_url: “100x100”, crop: “center” -%}

{%- if settings.favicon == blank -%}
{%- assign favicon_url = “data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=” -%}
{%- endif -%}

{{ page_title }}{% if current_tags %}{%- assign meta_tags = current_tags | join: ", " -%} – {{ "general.meta.tags" | t: tags: meta_tags }}{% endif %}{% if current_page != 1 %} – {{ "general.meta.page" | t: page: current_page }}{% endif %}{% unless page_title contains shop.name %} – {{ shop.name }}{% endunless %}

{%- if page_description -%}

{%- endif -%}

{%- render “social-meta-tags” -%}

{{ “theme.scss.css” | asset_url | stylesheet_tag }}

{%- if settings.dbtfy_delivery_date -%}
{{ “flatpickr.min.css” | asset_url | stylesheet_tag }}
{%- endif -%}

{{ header_family | font_face: font_display: "swap" }} {{ accent_family | font_face: font_display: "swap" }} {{ base_family | font_face: font_display: "swap" }} {{ base_family_bold | font_face: font_display: "swap" }} {{ base_family_italic | font_face: font_display: "swap" }} {{ base_family_bold_italic | font_face: font_display: "swap" }} {{ accent_family_bold | font_face: font_display: "swap" }} @font-face { font-family: {{ icon_family }}; font-weight: 400; font-style: normal; font-display: block; src: url({{ settings.icon | append: ".woff2" | asset_url }}) format("woff2"); }

{%- if settings.google_tag_manager_id != blank -%}

{%- endif -%}

{%- render “translations-js” -%}

{{ “jquery-2.2.3.min.js” | asset_url | script_tag }}

{%- if settings.show_currency_selector -%}
{%- if settings.dbtfy_custom_currencies or shop.enabled_currencies.size > 1 and settings.dbtfy_cart_goal -%}

{%- endif -%}
{%- endif -%}

{%- if request.page_type contains “customers/” -%}
{{ “shopify_common.js” | shopify_asset_url | script_tag }}
{%- endif -%}

{{ content_for_header }}

{% render ‘review-head’ %}

{{ “fancybox.min.css” | asset_url | stylesheet_tag }}

{% render 'judgeme_core' %}

{% render ‘shogun-head’ %}
{% capture cur %}{% include “booster-currency” %}{% endcapture %}{% unless cur contains “Liquid error” %}{{ cur }}{% endunless %}

{{ “fancybox.min.js” | asset_url | script_tag }}

{%- if settings.google_tag_manager_id != blank -%}

{%- endif -%}

{%- liquid
render ‘hero-header’
render “toasts”

if settings.cart_type == “drawer”
render “drawer-cart”
elsif settings.cart_type == “modal”
render “cart-modal”
endif

render “drawer-search”
render “dbtfy-age-check”
render “dbtfy-cookie-box”
render “dbtfy-facebook-messenger”
render “dbtfy-newsletter-popup”
render “dbtfy-page-transition”
render “dbtfy-quick-view”, type: “container”
render “dbtfy-social-discount”
render “cart-message-toast”
render “dbtfy-cart-reminder”

section “dbtfy-account-settings”
section “dbtfy-bullet-points”
section “dbtfy-cart-goal”
section “dbtfy-cart-upsell”
if request.page_type == “collection”
section “dbtfy-collection-filters”
endif
section “dbtfy-color-swatches”
section “dbtfy-customizable-products”
section “dbtfy-delivery-time”
section “dbtfy-product-tabs”
section “dbtfy-product-swatches”
section “dbtfy-quantity-breaks”
section “dbtfy-size-chart”
section “dbtfy-upsell-popup”
section “drawer-menu”

-%}

{{ "shopify.checkout.general.skip_to_content" | t }}

{%- liquid
section “announcement”
section “header”
render “dbtfy-menu-bar”
render “dbtfy-quick-compare”, type: “page”
render “dbtfy-quick-compare”, type: “markup”

unless request.page_type == “collection”
render “breadcrumbs”
endunless
-%}

{%- if request.page_type == "captcha" or request.page_type == "policy" -%}
{%- endif -%}

{%- if template == ‘index’ -%}

{%- endif -%}

{{ content_for_layout }}

{%- if template == ‘index’ -%}

{%- endif -%}

{%- if request.page_type == “captcha” or request.page_type == “policy” -%}

{%- endif -%}

{%- liquid
render “dbtfy-recently-viewed”
section “dbtfy-instagram-feed”
section “guarantee”
section “footer”
-%}

{%- if settings.show_top_button -%}

keyboard_arrow_up

{%- endif -%}

{%- if settings.newsletter_app == “klaviyo” and settings.klaviyo_app_public_key != blank and settings.klaviyo_app_list_id != blank -%}

{%- endif -%}
{% include ‘cjpod’ %}