RSI-SHOP Posted August 20, 2022 Share Posted August 20, 2022 Hello, I'd like to display some text on product page if manufacturer product name is DEMO and ID this manufacturer is 10. Could explain me how can I do that? Ps. 1.7. Thank you so much. Link to comment Share on other sites More sharing options...
endriu107 Posted August 20, 2022 Share Posted August 20, 2022 Try this: {if $product_manufacturer->id === 2 && $product_manufacturer->name == 'demo'} HERE YOUR CONTENT {/if} Link to comment Share on other sites More sharing options...
RSI-SHOP Posted August 20, 2022 Author Share Posted August 20, 2022 1 hour ago, endriu107 said: Try this: {if $product_manufacturer->id === 2 && $product_manufacturer->name == 'demo'} HERE YOUR CONTENT {/if} Hi thank you for you soultion but I find it doesn't work for me. Link to comment Share on other sites More sharing options...
endriu107 Posted August 20, 2022 Share Posted August 20, 2022 Did you adjust my code to your manufacturer ID and name? Link to comment Share on other sites More sharing options...
endriu107 Posted August 20, 2022 Share Posted August 20, 2022 Here is correct code to your issue: {if $product_manufacturer->id === 10 && $product_manufacturer->name == 'DEMO'} HERE YOUR CONTENT {/if} Link to comment Share on other sites More sharing options...
RSI-SHOP Posted August 20, 2022 Author Share Posted August 20, 2022 1 hour ago, endriu107 said: Did you adjust my code to your manufacturer ID and name? Yes i did it. Link to comment Share on other sites More sharing options...
RSI-SHOP Posted August 20, 2022 Author Share Posted August 20, 2022 1 hour ago, endriu107 said: Here is correct code to your issue: {if $product_manufacturer->id === 10 && $product_manufacturer->name == 'DEMO'} HERE YOUR CONTENT {/if} Hi Bro, That is amazing! Now this code works correctly. Thank you so much 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