Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2006
    Location
    Dark Side of the Moon
    Posts
    987
    Plugin Contributions
    1

    Default Additional Product Description info IF logged in

    I have a situation where certain product information should only be displayed when a user is logged in much like when you set the store to view prices only when logged in.

    I tried to add code like this to the products description:

    <?php if ($_SESSION['customer_id']) { ?>
    <p>added info when logged in</p>
    <?php } ?>

    But it appears the php code is being scrubbed from the description before output, and "<p>added info when logged in</p>" is always displayed.

    Suggestions on how to best implement this would be appreciated, especially with the least amount of core modification.

    thanks!

  2. #2
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,196
    Plugin Contributions
    0

    Default Re: Additional Product Description info IF logged in

    This thread is similar to your problem... Look at #2


  3. #3
    Join Date
    Apr 2006
    Location
    Dark Side of the Moon
    Posts
    987
    Plugin Contributions
    1

    Default Re: Additional Product Description info IF logged in

    After more digging, I found a simple solution to modify tpl_product_info_display.php

    from:
    <?php echo stripslashes($products_description); ?>

    to:
    <?php echo eval(stripslashes('?>'.$products_description)); ?>

    This does work, but I'm wondering if there is anything to be concerned about?

 

 

Similar Threads

  1. v154 Change product description when logged in
    By aestheticdesign in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 3 Sep 2015, 12:20 PM
  2. v150 Show Product Description only when logged in
    By fsu711 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 4 Apr 2012, 11:57 PM
  3. Add more info link to product listing description when description is truncated
    By MaureenT in forum Templates, Stylesheets, Page Layout
    Replies: 11
    Last Post: 16 Sep 2010, 05:44 PM
  4. Replies: 11
    Last Post: 20 Apr 2009, 10:22 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg