Jump to content

[SOLVED] How to show/hide some div(link) in specific categories? HELP


Recommended Posts

I whant to add a pop-up link in a product page ... but visible only if that product is in one specific category

 

i tried to add this in product.tpl  :

 

{if $category->id != 50} 
                      <p><a href="../popup/marimi_incaltaminte.html" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=800px,height=600px');" class="btn_size" data-toggle="modal" data-target="#sizeModal"> GHID MARIMI </a>
                            </p>
                            {/if}

 

 

 
not working
 
image atached post-724682-0-91220400-1401709657_thumb.jpg
Edited by vekia (see edit history)
Link to comment
Share on other sites

  • 9 months later...

 

 
 
As my status says, I'm a PrestaShop Newbie ..... please tell me if you whant, how exactly I do this? 
What i need to add or change in productcontroller.php?

 

 

 

Solved with this:

{if $category->id_category == 45}
text just for products from category 45

 {/if}


{if $category->id_category == 65 OR $category->id_category == 70 OR $category->id_category == 71 OR $category->id_category == 72 OR $category->id_category == 73 OR $category->id_category == 74 OR $category->id_category == 75 OR $category->id_category == 76 OR $category->id_category == 77 OR $category->id_category == 78 OR $category->id_category == 79 OR $category->id_category == 80 OR $category->id_category == 81 OR $category->id_category == 82 OR $category->id_category == 83 OR $category->id_category == 84 OR $category->id_category == 85 OR $category->id_category == 86 OR $category->id_category == 87 OR $category->id_category == 88}

text for multiple categories

 {/if}
Edited by eduard02 (see edit history)
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...