Jump to content

Zmiana kolejności kodu strony


Maximus Design

Recommended Posts

Sprawa wygląda tak:

Na stronie każdego produktu kolejność wyświetlania to najpierw cena netto a potem cena brutto (poniżej kod)

<meta property="product:pretax_price:amount" content="272.35">
<meta property="product:pretax_price:currency" content="PLN">
<meta property="product:price:amount" content="334.99">
<meta property="product:price:currency" content="PLN">

Używając Crawl z Google Merchant Center jako główne źródło pobierania danych, pobiera cenę netto bo jest pierwsza w kolejności kodu

Czy da się zmienić kolejność tego kodu?

Link to comment
Share on other sites

Pewnie, że się da - w szablonie strony zapewne w templates/catalog/product.tpl będzie na samej górze to wszystko opisane tak: 

{if $product.show_price}
  <meta property="product:pretax_price:amount" content="{$product.price_tax_exc}">
  <meta property="product:pretax_price:currency" content="{$currency.iso_code}">
  <meta property="product:price:amount" content="{$product.price_amount}">
  <meta property="product:price:currency" content="{$currency.iso_code}">
  {/if}

Zmieniasz kolejność i tyle ;)

Link to comment
Share on other sites

Najłatwiej zrobić to edytorem w którym kodujemy strony, ja np. używam Visual Studio Code, otwieram folder za pomocą programu, kilkam CTRL+SHIFT+F i szukam po całym folderze wszystkiego. Inaczej już ciężko pomóc, jeżeli nie znajduje się to w tych dwóch plikach.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...