homer.tmx Posted January 24, 2019 Share Posted January 24, 2019 Hi, I need some help.I have more than 1,000 products but I now need to add text to one of the catagory products.And also to products that have the same word in the title ..I do not know the advice .. Link to comment Share on other sites More sharing options...
tdsoft Posted January 25, 2019 Share Posted January 25, 2019 You can logged in PhpMyadmin and make a SQL Statement for there tables: ps_category_lang, ps_product_lang Link to comment Share on other sites More sharing options...
Krystian Podemski Posted January 26, 2019 Share Posted January 26, 2019 If that's some dynamic text you can also add it directly in template with a code like: {if $product.id_category_default === ID_OF_CATEGORY} some text {/if} Link to comment Share on other sites More sharing options...
homer.tmx Posted February 2, 2019 Author Share Posted February 2, 2019 Hi.thank you for telling the direction of the solution @Krystian Podemski I have found several solutions, but none works for me - P.S. 1.7.4.3. {if $product.id_category_default === 392} my code here {/if} {if $product->id_category_default == 392} my code here {/if} {if Tools::getValue('id_category')== 392} my code here {/if} {if in_array(392,Product::getProductCategories($product->id|intval))} my code here {/if} I tested it on product which is in category with id 392 (which is default as well). The only code that appeared in product.tpl was {if Tools::getValue('id_category')==$product->id_category_default} my code here {/if} but I did not come out how to enter the category id.Posts I've been looking for: Link to comment Share on other sites More sharing options...
Krystian Podemski Posted February 6, 2019 Share Posted February 6, 2019 @homer.tmxare you trying to display something on product page or product list? Link to comment Share on other sites More sharing options...
homer.tmx Posted February 14, 2019 Author Share Posted February 14, 2019 @Krystian Podemski Hi, on product page. 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