Maximus Design Posted September 22, 2020 Share Posted September 22, 2020 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 More sharing options...
Mistrz Yoda Posted September 22, 2020 Share Posted September 22, 2020 Jaka wersja PS? Link to comment Share on other sites More sharing options...
Maximus Design Posted September 23, 2020 Author Share Posted September 23, 2020 1.6.1.19 Link to comment Share on other sites More sharing options...
Blaaszka Posted September 23, 2020 Share Posted September 23, 2020 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 More sharing options...
endriu107 Posted September 24, 2020 Share Posted September 24, 2020 W wersji 1.6 raczej to będzie w pliku header.tpl lub dodawane jakimś modułem do hooka header. Link to comment Share on other sites More sharing options...
Maximus Design Posted September 24, 2020 Author Share Posted September 24, 2020 Nie ma tego ani w products ani w header. Jest jakiś sposób na znajdowanie w jakim pliku jest dany kod strony czy trzeba znać strukturę Presty? Link to comment Share on other sites More sharing options...
endriu107 Posted September 24, 2020 Share Posted September 24, 2020 Umieściłeś post w dziale dla deweloperów więc zakładam że jesteś deweloperem i z podanych wyżej informacji jesteś w stanie odszukać odpowiedni plik. W zasadzie jeśli struktura szablonu nie jest przekombinowana to odpowiedź masz w moim poprzednim poście. Link to comment Share on other sites More sharing options...
Blaaszka Posted September 24, 2020 Share Posted September 24, 2020 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now