How can I rearrange pop-ups above the Add to Cart button in Wokiee?

Hello ,

I am trying to move the Wokiee “Size Guide”, “Shipping”, “Message”, etc. Pop ups to appear above the Add to Cart button instead of it being below product title. I’ve tried looking at the code but can’t figure out how to change the order of items. Is this possible to do?

Hi @Lutzco

Yes, it’s possible to move the sections you want through customizing the code.

Could you tell me which could would change the order of this? I am familiar with html and css but new to liquid

We need to check the code as every theme differs.

This is the Wokiee theme.

We don’t have the theme to check

{%- comment -%}
  The contents of the product.liquid template can be found in /sections/product-template.liquid
{%- endcomment -%}

{% assign current_variant = product.selected_or_first_available_variant %}

  
  
  {%- if product.featured_image -%}
  {%- assign image_size = product.featured_image.width | append: 'x' -%}
  
  {%- endif -%}
  
  {%- if current_variant.sku != blank -%}
  
  {%- endif -%}
  
  {%- for variant in product.variants -%}
  
    {%- if variant.sku != blank -%}
    
    {%- endif -%}
    
    

    
    
    
  

  {%- endfor -%}

{%- assign product_meta = product.metafields.description -%}

{%- assign sale_on = false -%}
{%- if product.selected_or_first_available_variant.compare_at_price > product.selected_or_first_available_variant.price -%}
  {%- assign sale_on = true -%}
{%- endif -%}

{%- comment -%} Main Image URL. {%- endcomment -%}
{%- assign main_url_image = product.featured_image -%}

{%- comment -%}
date_difference = 60 * 60 * 24 * day counter, this is new product period in seconds
{%- endcomment -%}
  {%- assign date_now = 'now' | date: "%s" -%}
  {%- assign date_published = product.published_at | date: "%s" -%}
  {%- assign date_difference = date_now | minus: date_published -%}
  {%- assign date_limit = 86400 | times: settings.new_product_period -%}
  {%- assign pr_variant = product.selected_or_first_available_variant -%}

{%- assign item = section.settings -%}

{%- include item.page_design -%}

{%- if item.show_share_buttons -%}

  

    {%- include 'addthis' -%}

  

{%- endif -%}

{%- if item.full_width_description != 'default' -%}
{%- if item.full_width_description == 'design_tabs_in_column' -%}

       
  

    {%- include "product_page_tabs" -%}
  

{%- elsif item.full_width_description == 'design_tabs_in_row' -%}
{% include "product_page_tabs_horizontal" %}
{%- endif -%}
{%- endif -%}

{%- include "product-page-upsellcollection-type2" -%}

{%- capture upsellcollection -%}{%- include "product-page-upsellcollection" -%}{%- endcapture -%}
{%- assign upsellcollection = upsellcollection | strip -%}
{{ upsellcollection }}

{%- if item.show_custom_related -%}
{%- assign product_meta = product.metafields.description -%}
{%- unless product_meta.related_collection == blank -%}
{%- assign name_collection = product_meta.related_collection -%}
{%- assign collection = collections[name_collection] -%}
{%- assign length = item.custom_related_length -%}
{%- assign _pr = product.handle -%}

  

    

      ## {{ item.custom_related_title }}
         Monthly
    

    
      {%- for product in collection.products limit: length -%}
      {%- if _pr != product.handle  -%}
      
{%- include 'product-grid-item' -%}

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

  

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

{%- for block in section.blocks -%}
{%- if block.type == 'recently_view_products' -%}

  

    

      {%- if block.settings.title != '' -%}## {{ block.settings.title }}{%- endif -%}
    

	

  

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

{%- include "product_page_sticky_addtocart" -%}

{%- include 'product-page-modals' -%}

{% include "modal-video" %}

  
{% schema %}
  {
    "name": "Product pages",
    "settings": [
      {
        "type": "header",
        "content": "Page design"
      },
      {
        "type": "select",
        "id": "page_design",
        "label": "Page Design",
        "options": [
          {
            "value": "product_page_1_design",
            "label": "Default design"
          },
          {
            "value": "product_page_2_design",
            "label": "Two columns. Gallery left, content right"
          },
          {
            "value": "product_page_3_design",
            "label": "Tree columns"
          }
        ],
        "default": "product_page_1_design"
      },
      {
        "type": "select",
        "id": "full_width_description",
        "label": "Tabs Description Type",
        "default": "default",
        "options": [
          {
            "value": "default",
            "label": "Default"
          },
          {
            "value": "design_tabs_in_column",
            "label": "Full width tabs in column"
          },
          {
            "value": "design_tabs_in_row",
            "label": "Full width tabs in row"
          }
        ]
      },
      {
        "type": "header",
        "content": "General"
      },
      {
        "type": "checkbox",
        "id": "history",
        "label": "Enable swatches history",
        "default": true,
		"info": "Work with browser history"
      },
      {
        "type": "checkbox",
        "id": "show_badge_new",
        "label": "Show Badge New",
        "default": true,
		"info": "Work with product time and metafield editor"
      },
      {
        "type": "checkbox",
        "id": "show_badge_featured",
        "label": "Show Custom Badge(Featured)",
        "default": true,
		"info": "Badge is created using a metafield editor"
      },
      {
        "type": "checkbox",
        "id": "show_review",
        "label": "Show review stars",
        "default": true
      },
      {
        "type": "checkbox",
        "id": "show_share_buttons",
        "label": "Show social buttons",
        "default": true
      },
      {
        "type": "checkbox",
        "id": "show_tax_text",
        "label": "Show TAX text",
        "default": true,
		"info": "It will work if TAX is enabled in the settings in the Shopify admin panel"
      },
      {
        "type": "checkbox",
        "id": "use_select_button",
        "label": "Show button Select Options",
        "default": false,
		"info": "When product does not have selected variant we can use select your options button"
      },
      {
        "type": "header",
        "content": "Gallery general settings"
      },
      {
        "type": "checkbox",
        "id": "gallery_no_zoom",
        "label": "Gallery zoom",
        "default": false
      },
      {
        "type": "checkbox",
        "id": "gallery_scroll",
        "label": "Gallery scroll zoom",
        "default": true
      },
      {
        "type": "checkbox",
        "id": "stickygallery",
        "label": "Sticky Gallery",
        "default": true
	  },
      {
        "type": "checkbox",
        "id": "mobiledots",
        "label": "Show gallery dots in mobile",
        "default": true
	  },
      {
        "type": "header",
        "content": "Gallery \"Default design\""
      },
      {
        "type": "select",
        "id": "gallery_type",
        "label": "Gallery type",
		"info": "Only for page \"Default design\"",
        "options": [
          {
            "value": "horizontal",
            "label": "Horizontal"
          },
          {
            "value": "vertical",
            "label": "Vertical"
          },
          {
            "value": "four_images",
            "label": "Four images"
          }
        ],
        "default": "horizontal"
      },
      {
        "type": "checkbox",
        "id": "show_thumbnails",
        "label": "Show thumbnails",
        "default": true,
		"info": "Only for horizontal and vertical \"Gallery type\""
      },
      {
        "type": "checkbox",
        "id": "show_thumbnails_arrows",
        "label": "Show arrow in big image",
        "default": true,
		"info": "Alert !!! Works only with thumbnails"
	  },
      {
        "type": "checkbox",
        "id": "show_thumbnails_zoom",
        "label": "Enable lightbox for thumbnails",
        "default": true,
		"info": "Alert !!! Works only with thumbnails"
      },
      {
        "type": "header",
        "content": "Product main information"
      },
      {
        "type": "checkbox",
        "id": "show_product_main_info",
        "label": "Show product main information",
        "default": true
      },
      {
        "type": "checkbox",
        "id": "show_sku",
        "label": "Show product SKU",
        "default": true
      },
      {
        "type": "checkbox",
        "id": "show_qiantity",
        "label": "Show product quantity",
        "default": true
      },
      {
        "type": "header",
        "content": "Trust Badge"
      },
      {
        "type": "checkbox",
        "id": "show_trust_badge",
        "label": "Show trust badge",
        "default": true
      },
      {
        "type": "image_picker",
        "id": "image_l",
        "label": "Image"
      },
      {
        "type": "text",
        "id": "image_max_width",
        "label": "Trust badge width (in pixels)",
        "default": "541"
      },
      {
        "type": "image_picker",
        "id": "image_lm",
        "label": "Image Mobile"
      },
      {
        "type": "text",
        "id": "image_max_width_m",
        "label": "Trust badge width mobile (in pixels)",
        "default": "541"
      },
      {
        "type": "header",
        "content": "Options Design"
      },
      {
        "type": "select",
        "id": "designoption1",
        "label": "Select design for options 1",
		"info": "After changing, click the Save button.",
        "options": [
          {
            "value": "getButtonHtml",
            "label": "Buttons"
          },
          {
            "value": "getSelectButtonHtml",
            "label": "Combobox"
          }
        ],
        "default": "getButtonHtml"
      },
      {
        "type": "select",
        "id": "designoption2",
        "label": "Select design for options 2",
		"info": "After changing, click the Save button.",
        "options": [
          {
            "value": "getButtonHtml",
            "label": "Buttons"
          },
          {
            "value": "getSelectButtonHtml",
            "label": "Combobox"
          }
        ],
        "default": "getButtonHtml"
      },
      {
        "type": "select",
        "id": "designoption3",
        "label": "Select design for options 3",
		"info": "After changing, click the Save button.",
        "options": [
          {
            "value": "getButtonHtml",
            "label": "Buttons"
          },
          {
            "value": "getSelectButtonHtml",
            "label": "Combobox"
          }
        ],
        "default": "getButtonHtml"
      },
      {
        "type": "header",
        "content": "Product information"
      },
      {
        "type": "checkbox",
        "id": "show_product_info",
        "label": "Show product information",
        "default": true
      },
      {
        "type": "checkbox",
        "id": "show_product_vendor",
        "label": "Show product vendor",
        "default": true
      },
      {
        "type": "checkbox",
        "id": "show_product_type",
        "label": "Show product type",
        "default": true
      },
      {
        "type": "checkbox",
        "id": "show_product_barcode",
        "label": "Show product barcode",
        "default": true
      },
      {
        "type": "checkbox",
        "id": "show_product_tags",
        "label": "Show product tags",
        "default": true
      },
      {
        "type": "textarea",
        "id": "product_tab_tags",
        "label": "Popular product tags",
        "info": "Enter all popular tags in this field. Example: dress,tops,shirts"
      },
      {
        "type": "checkbox",
        "id": "product_item_show_wishlist",
        "label": "Show Wishlist Button",
        "default": true
      },
      {
        "type": "checkbox",
        "id": "product_item_show_compare",
        "label": "Show Compare Button",
        "default": true
      },
      {
        "type": "header",
        "content": "Size chart"
      },
      {
        "type": "checkbox",
        "id": "show_sizechart",
        "label": "Show size chart information",
        "default": true
      },
      {
        "type": "textarea",
        "id": "btnname",
        "label": "Button link name",
        "default": "Size Guide"
      },
      {
        "type": "textarea",
        "id": "popupcontent",
        "label": "Modal html content",
        "default": "###### SIZE GUIDE<\/h6>\nThis is an approximate conversion table to help you find your size.\n
\n\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

| Italian<\/th>\n\t\t\t\t | Spanish<\/th>\n\t\t\t\t | German<\/th>\n\t\t\t\t | UK<\/th>\n\t\t\t\t | US<\/th>\n\t\t\t\t | Japanese<\/th>\n\t\t\t\t | Chinese<\/th>\n\t\t\t\t | Russian<\/th>\n\t\t\t\t | Korean<\/th>\n\t\t\t<\/tr>\n\t\t<\/thead>\n\t\t |
| - | - | - | - | - | - | - | - | - |
| 34<\/td>\n\t\t\t\t | 30<\/td>\n\t\t\t\t | 28<\/td>\n\t\t\t\t | 4<\/td>\n\t\t\t\t | 00<\/td>\n\t\t\t\t | 3<\/td>\n\t\t\t\t | 155\/75A<\/td>\n\t\t\t\t | 36<\/td>\n\t\t\t\t | 44<\/td>\n\t\t\t<\/tr>\n\t\t\t |
| 36<\/td>\n\t\t\t\t | 32<\/td>\n\t\t\t\t | 30<\/td>\n\t\t\t\t | 6<\/td>\n\t\t\t\t | 0<\/td>\n\t\t\t\t | 5<\/td>\n\t\t\t\t | 155\/80A<\/td>\n\t\t\t\t | 38<\/td>\n\t\t\t\t | 44<\/td>\n\t\t\t<\/tr>\n\t\t\t |
| 38<\/td>\n\t\t\t\t | 34<\/td>\n\t\t\t\t | 32<\/td>\n\t\t\t\t | 8<\/td>\n\t\t\t\t | 2<\/td>\n\t\t\t\t | 7<\/td>\n\t\t\t\t | 160\/84A<\/td>\n\t\t\t\t | 40<\/td>\n\t\t\t\t | 55<\/td>\n\t\t\t<\/tr>\n\t\t\t |
| 40<\/td>\n\t\t\t\t | 36<\/td>\n\t\t\t\t | 34<\/td>\n\t\t\t\t | 10<\/td>\n\t\t\t\t | 4<\/td>\n\t\t\t\t | 9<\/td>\n\t\t\t\t | 165\/88A<\/td>\n\t\t\t\t | 42<\/td>\n\t\t\t\t | 55<\/td>\n\t\t\t<\/tr>\n\t\t\t |
| 42<\/td>\n\t\t\t\t | 38<\/td>\n\t\t\t\t | 36<\/td>\n\t\t\t\t | 12<\/td>\n\t\t\t\t | 6<\/td>\n\t\t\t\t | 11<\/td>\n\t\t\t\t | 170\/92A<\/td>\n\t\t\t\t | 44<\/td>\n\t\t\t\t | 66<\/td>\n\t\t\t<\/tr>\n\t\t\t |
| 44<\/td>\n\t\t\t\t | 40<\/td>\n\t\t\t\t | 38<\/td>\n\t\t\t\t | 14<\/td>\n\t\t\t\t | 8<\/td>\n\t\t\t\t | 13<\/td>\n\t\t\t\t | 175\/96A<\/td>\n\t\t\t\t | 46<\/td>\n\t\t\t\t | 66<\/td>\n\t\t\t<\/tr>\n\t\t\t |
| 46<\/td>\n\t\t\t\t | 42<\/td>\n\t\t\t\t | 40<\/td>\n\t\t\t\t | 16<\/td>\n\t\t\t\t | 10<\/td>\n\t\t\t\t | 15<\/td>\n\t\t\t\t | 170\/98A<\/td>\n\t\t\t\t | 48<\/td>\n\t\t\t\t | 77<\/td>\n\t\t\t<\/tr>\n\t\t\t |
| 48<\/td>\n\t\t\t\t | 44<\/td>\n\t\t\t\t | 42<\/td>\n\t\t\t\t | 18<\/td>\n\t\t\t\t | 12<\/td>\n\t\t\t\t | 17<\/td>\n\t\t\t\t | 170\/100B<\/td>\n\t\t\t\t | 50<\/td>\n\t\t\t\t | 77<\/td>\n\t\t\t<\/tr>\n\t\t\t |
| 50<\/td>\n\t\t\t\t | 46<\/td>\n\t\t\t\t | 44<\/td>\n\t\t\t\t | 20<\/td>\n\t\t\t\t | 14<\/td>\n\t\t\t\t | 19<\/td>\n\t\t\t\t | 175\/100B<\/td>\n\t\t\t\t | 52<\/td>\n\t\t\t\t | 88<\/td>\n\t\t\t<\/tr>\n\t\t\t |
| 52<\/td>\n\t\t\t\t | 48<\/td>\n\t\t\t\t | 46<\/td>\n\t\t\t\t | 22<\/td>\n\t\t\t\t | 16<\/td>\n\t\t\t\t | 21<\/td>\n\t\t\t\t | 180\/104B<\/td>\n\t\t\t\t | 54<\/td>\n\t\t\t\t | 88<\/td>\n\t\t\t<\/tr>\n\t\t<\/tbody>\n\t<\/table>\n<\/div>",<br>		"info": "If content is clear buttom link will be hide"<br>      },<br>      {<br>        "type": "header",<br>        "content": "Shipping"<br>      },<br>      {<br>        "type": "checkbox",<br>        "id": "show_shipping",<br>        "label": "Show shipping information",<br>        "default": true<br>      },<br>      {<br>        "type": "textarea",<br>        "id": "btnname2",<br>        "label": "Button link name",<br>        "default": "Shipping"<br>      },<br>      {<br>        "type": "textarea",<br>        "id": "popupcontentshipping",<br>        "label": "Modal html content",<br>        "default": "###### SHIPPING<\/h6>\n<br>\n\t- Complimentary ground shipping within 1 to 7 business days<\/li>\n\t<br>- In-store collection available within 1 to 7 business days<\/li>\n\t<br>- Next-day and Express delivery options also available<\/li>\n\t<br>- Purchases are delivered in an orange box tied with a Bolduc ribbon, with the exception of certain items<\/li>\n\t<br>- See the delivery FAQs for details on shipping methods, costs and delivery times<\/li>\n<\/ul>\n###### RETURNS AND EXCHANGES<\/h6>\n<br>  \n\t- Easy and complimentary, within 14 days<\/li>\n\t<br>  - See conditions and procedure in our return FAQs<\/li>\n<\/ul>",<br>      		"info": "If content is clear buttom link will be hide"<br>            },<br>            {<br>              "type": "textarea",<br>              "id": "btnname3",<br>              "label": "Button link name",<br>              "default": "Ask about this product"<br>            },<br>            {<br>              "type": "header",<br>              "content": "Product page - three columns"<br>            },<br>            {<br>              "type": "textarea",<br>              "id": "prpage_tree_col_html",<br>              "label": "Custom html",<br>      		"default": "<br>      \n\t\n\t\t<br>      \n\t\t\t*<\/i>\n\t\t<\/div>\n\t\t*<i><br>      \n\t\t\t#### FREE SHIPPING<\/h4>\n\t\t\t<br><br>      Free shipping on all US order or order above $99<\/p>\n\t\t<\/div>\n\t<\/a>\n\t\n\t\t<br><br>      \n\t\t\t*<\/i>\n\t\t<\/div>\n\t\t*<i><br>      \n\t\t\t#### SUPPORT 24\/7<\/h4>\n\t\t\t<br><br>      Contact us 24 hours a day, 7 days a week<\/p>\n\t\t<\/div>\n\t<\/a>\n\t\n\t\t<br><br>      \n\t\t\t<i><\/i>\n\t\t<\/div>\n\t\t<br>      \n\t\t\t#### 30 DAYS RETURN<\/h4>\n\t\t\t<br><br>      Simply return it within 30 days for an exchange.<\/p>\n\t\t<\/div>\n\t<\/a>\n<\/div>",<br>      		"info": "For page design \"Tree columns\". [Icons](\/\/portotheme.com\/shopify\/wokiee\/icons)"<br>            },<br>            {<br>              "type": "header",<br>              "content": "Custom related products"<br>            },<br>            {<br>              "type": "checkbox",<br>              "id": "show_custom_related",<br>              "label": "Show сustom related products",<br>              "default": true,<br>      		"info": "Work with the metafield product. See documentation"<br>            },<br>            {<br>              "type": "checkbox",<br>              "id": "custom_related_fullscreen",<br>              "label": "Fullscreen",<br>              "default": false<br>            },<br>            {<br>              "type": "checkbox",<br>              "id": "custom_related_titleincenter",<br>              "label": "Title in center",<br>              "default": false<br>            },<br>            {<br>              "type": "textarea",<br>              "id": "custom_related_title",<br>              "label": "Custom related products title",<br>              "default": "CUSTOM PRODUCTS"<br>            },<br>            {<br>              "type": "text",<br>              "id": "custom_related_length",<br>              "label": "Count",<br>              "default": "8",<br>              "info": "Integer"<br>            },<br>            {<br>              "type": "select",<br>              "id": "custom_related_slickdesktoptoshow",<br>              "label": "Show items in desktop",<br>              "options": [<br>                {<br>                  "value": "3",<br>                  "label": "3"<br>                },<br>                {<br>                  "value": "4",<br>                  "label": "4"<br>                },<br>                {<br>                  "value": "5",<br>                  "label": "5"<br>                },<br>                {<br>                  "value": "6",<br>                  "label": "6"<br>                }<br>              ],<br>              "default": "4"<br>            }<br>          ],<br>          "blocks": [<br>            {<br>              "type": "tab_desc",<br>              "name": "Description Tab",<br>      		"limit": 1,<br>              "settings": [<br>                {<br>                  "type": "text",<br>                  "id": "title",<br>      			"label": "Title",<br>                  "default": "DESCRIPTION"<br>                },<br>                {<br>                  "type": "checkbox",<br>                  "id": "open_tab_by_default",<br>                  "label": "Open tab by default",<br>                  "default": false<br>                }<br>              ]<br>            },<br>            {<br>              "type": "tab_same_html",<br>              "name": "General Html Tab",<br>              "settings": [<br>                {<br>                  "type": "text",<br>                  "id": "title",<br>                  "label": "Title",<br>      			"default": "GENERAL TAB"<br>                },<br>                {<br>                  "type": "textarea",<br>                  "id": "html",<br>                  "label": "Custom Html"<br>                },<br>                {<br>                  "type": "checkbox",<br>                  "id": "open_tab_by_default",<br>                  "label": "Open tab by default",<br>                  "default": false<br>                }<br>              ]<br>            },<br>            {<br>              "type": "tab_unique",<br>              "name": "Unique Tab",<br>              "settings": [<br>                {<br>                  "type": "paragraph",<br>                  "content": "Work with [APP metafield](https:\/\/apps.shopify.com\/metafields-manager-by-hulkapps)"<br>                },<br>                {<br>                  "type": "paragraph",<br>                  "content": "Namespace = description. Write your key name and use this name in metafield editor as key name."<br>                },<br>                {<br>                  "type": "text",<br>                  "id": "key",<br>                  "label": "Key",<br>      			"default": "Key name"<br>                },<br>                {<br>                  "type": "text",<br>                  "id": "title",<br>                  "label": "Tab Title",<br>      			"default": "UNIQUE TAB"<br>                },<br>                {<br>                  "type": "checkbox",<br>                  "id": "open_tab_by_default",<br>                  "label": "Open tab by default",<br>                  "default": false<br>                }<br>              ]<br>            },<br>            {<br>              "type": "header",<br>              "content": "Message"<br>            },<br>            {<br>              "type": "checkbox",<br>              "id": "show_message",<br>              "label": "Show message",<br>              "default": true<br>            },<br>            {<br>              "type": "tab_review",<br>              "name": "Review Tab",<br>      		"limit": 1,<br>              "settings": [<br>                {<br>                  "type": "text",<br>                  "id": "title",<br>                  "label": "Title",<br>      			"default": "REVIEWS"<br>                },<br>                {<br>                  "type": "checkbox",<br>                  "id": "open_tab_by_default",<br>                  "label": "Open tab by default",<br>                  "default": false<br>                }<br>              ]<br>            },<br>            {<br>              "type": "related_products",<br>              "name": "Old. Related Products",<br>      		"limit": 1,<br>              "settings": [<br>                {<br>                  "type": "paragraph",<br>                  "content": "Work with old shopify method by tags"<br>                },<br>                {<br>                  "type": "checkbox",<br>                  "id": "fullscreen",<br>                  "label": "Fullscreen",<br>                  "default": false<br>                },<br>                {<br>                  "type": "checkbox",<br>                  "id": "titleincenter",<br>                  "label": "Title in center",<br>                  "default": false<br>                },<br>                {<br>                  "type": "text",<br>                  "id": "title",<br>                  "label": "Title",<br>      			"default": "RELATED PRODUCTS"<br>                },<br>                {<br>                  "type": "text",<br>                  "id": "product_upsell_collection_count",<br>                  "label": "Count",<br>                  "default": "8",<br>                  "info": "Integer"<br>                },<br>                {<br>                  "type": "select",<br>                  "id": "slickdesktoptoshow",<br>                  "label": "Show items in desktop",<br>                  "options": [<br>                    {<br>                      "value": "3",<br>                      "label": "3"<br>                    },<br>                    {<br>                      "value": "4",<br>                      "label": "4"<br>                    },<br>                    {<br>                      "value": "5",<br>                      "label": "5"<br>                    },<br>                    {<br>                      "value": "6",<br>                      "label": "6"<br>                    }<br>                  ],<br>                  "default": "4"<br>                }<br>              ]<br>            },<br>            {<br>              "type": "related_products_type2",<br>              "name": "New. Related Products",<br>      		"limit": 1,<br>              "settings": [<br>                {<br>                  "type": "paragraph",<br>                  "content": "Dynamic recommendations change and improve over time. [Learn more](https://help.shopify.com/en/themes/development/recommended-products)"<br>                },<br>                {<br>                  "type": "checkbox",<br>                  "id": "fullscreen",<br>                  "label": "Fullscreen",<br>                  "default": false<br>                },<br>                {<br>                  "type": "checkbox",<br>                  "id": "titleincenter",<br>                  "label": "Title in center",<br>                  "default": false<br>                },<br>                {<br>                  "type": "text",<br>                  "id": "title",<br>                  "label": "Title",<br>      			"default": "RELATED PRODUCTS"<br>                },<br>                {<br>                  "type": "text",<br>                  "id": "product_upsell_collection_count",<br>                  "label": "Count",<br>                  "default": "8",<br>                  "info": "Integer"<br>                },<br>                {<br>                  "type": "select",<br>                  "id": "slickdesktoptoshow",<br>                  "label": "Show items in desktop",<br>                  "options": [<br>                    {<br>                      "value": "3",<br>                      "label": "3"<br>                    },<br>                    {<br>                      "value": "4",<br>                      "label": "4"<br>                    },<br>                    {<br>                      "value": "5",<br>                      "label": "5"<br>                    },<br>                    {<br>                      "value": "6",<br>                      "label": "6"<br>                    }<br>                  ],<br>                  "default": "4"<br>                }<br>              ]<br>            },<br>            {<br>              "type": "recently_view_products",<br>              "name": "Recently Viewed Products",<br>      		"limit": 1,<br>              "settings": [<br>                {<br>                  "type": "checkbox",<br>                  "id": "fullscreen",<br>                  "label": "Fullscreen",<br>                  "default": false<br>                },<br>                {<br>                  "type": "checkbox",<br>                  "id": "titleincenter",<br>                  "label": "Title in center",<br>                  "default": false<br>                },<br>                {<br>                  "type": "text",<br>                  "id": "title",<br>                  "label": "Title",<br>      			"default": "RECENTLY VIEWED PRODUCTS"<br>                },<br>                {<br>                  "type": "text",<br>                  "id": "product_upsell_collection_count",<br>                  "label": "Count",<br>                  "default": "8",<br>                  "info": "Integer"<br>                },<br>                {<br>                  "type": "select",<br>                  "id": "slickdesktoptoshow",<br>                  "label": "Show items in desktop",<br>                  "options": [<br>                    {<br>                      "value": "3",<br>                      "label": "3"<br>                    },<br>                    {<br>                      "value": "4",<br>                      "label": "4"<br>                    },<br>                    {<br>                      "value": "5",<br>                      "label": "5"<br>                    },<br>                    {<br>                      "value": "6",<br>                      "label": "6"<br>                    }<br>                  ],<br>                  "default": "4"<br>                }<br>              ]<br>            }<br>      	]<br>        }<br>      {% endschema %}<br>      ```<br><br>      </i><br><br>      </i><br><br>      </i><br><br><br> |

Here is the file code.