New Zenner
- Join Date:
- Nov 2005
- Posts:
- 76
- Plugin Contributions:
- 0
Hiding manufacturers_name in product_listing.php
I need to hide the manufacturers_name when a user is logged-in. I have found the code that controls this in: /includes/modules/product_listing.php - but I am not fluent enough in PHP to know how to hide the manufacturers_name when a user is logged-in. I used the code below to hide info in the template pages but it will not work on this modules page. Any and all help is much appreciated!
<?php if ($_SESSION['customer_id']) { // display this link for logged in user echo ''; } else { //display something else for user not logged in echo $listing->fields['manufacturers_name']; } ?>