Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1
    Join Date
    Nov 2006
    Location
    Brighton, CO
    Posts
    90
    Plugin Contributions
    0

    Default For more information, please visit this product's webpage

    Greetings,

    I would like to replace the phrase "For more information, please visit this product's webpage" with the products name and a "Get Info" icon next to it.

    I was able to get the products name and a "Get Info" icon to show up but unable to to get a link to go to the manucacturer's url.

    Any ideas?

    Thanks!

  2. #2
    Join Date
    Aug 2006
    Location
    UK
    Posts
    449
    Plugin Contributions
    0

    Default Re: For more information, please visit this product's webpage

    have you edited the template or the language file?

    can you give a link to your site... (helps to see the problem)

    are you typing the url correctly into the proucts url?
    ~Steve~

  3. #3
    Join Date
    Nov 2006
    Location
    Brighton, CO
    Posts
    90
    Plugin Contributions
    0

    Default Re: For more information, please visit this product's webpage

    Hi Steve,

    Thank you for replying.

    The problem I am having is writing the code for the image's URL.

    What I am after is the URL for this to be attached to an image (instead of using the "For more information..." text). In other words, replace the string of code below with an image.

    Code:
    <p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?></p>
    Code is located: /includes/templates/template_default/templates/tpl_product_info_display.php

    Thank you again for replying and for your assistance.

  4. #4
    Join Date
    Aug 2006
    Location
    UK
    Posts
    449
    Plugin Contributions
    0

    Default Re: For more information, please visit this product's webpage

    Replace;

    Code:
    <p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?></p>
    With;

    Code:
    <p id="productInfoLink" class="productGeneral centeredContent">
    <a href="<?php zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?>"><img src="<?php echo DIR_WS_TEMPLATE_IMAGES; ?>moreinforimage.jpg"  border="0" alt="More Information" /></a></p>
    you will have to change the image name moreinforimage.jpg you wish to use for you more information image, and put that image into your;
    includes - templates - yourtemplate - images folder
    ~Steve~

  5. #5
    Join Date
    Nov 2006
    Location
    Brighton, CO
    Posts
    90
    Plugin Contributions
    0

    Default Re: For more information, please visit this product's webpage

    Quote Originally Posted by s_t_e_v_e View Post
    Replace;

    Code:
    <p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?></p>
    With;

    Code:
    <p id="productInfoLink" class="productGeneral centeredContent">
    <a href="<?php zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?>"><img src="<?php echo DIR_WS_TEMPLATE_IMAGES; ?>moreinforimage.jpg"  border="0" alt="More Information" /></a></p>
    you will have to change the image name moreinforimage.jpg you wish to use for you more information image, and put that image into your;
    includes - templates - yourtemplate - images folder

    Steve,

    Thank you again for your assistance.

    Unfortunately I am sad to report it did not work - the area where the product was listed went blank.

    Any other suggestions.

    Thank you again for your help.

  6. #6
    Join Date
    Aug 2006
    Location
    UK
    Posts
    449
    Plugin Contributions
    0

    Default Re: For more information, please visit this product's webpage

    hmmmmph... having another look...
    ~Steve~

  7. #7
    Join Date
    Nov 2006
    Location
    Brighton, CO
    Posts
    90
    Plugin Contributions
    0

    Default Re: For more information, please visit this product's webpage

    Quote Originally Posted by s_t_e_v_e View Post
    hmmmmph... having another look...

    LOL - Thanks Steve!

  8. #8
    Join Date
    Aug 2006
    Location
    UK
    Posts
    449
    Plugin Contributions
    0

    Default Re: For more information, please visit this product's webpage

    DOHHHH i can't count brackets.....
    try this;

    <p id="productInfoLink" class="productGeneral centeredContent">
    <a href="<?php zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false); ?>"><img src="<?php echo DIR_WS_TEMPLATE_IMAGES; ?>moreinforimage.jpg" border="0" alt="More Information" /></a></p>
    ~Steve~

  9. #9
    Join Date
    Aug 2006
    Location
    UK
    Posts
    449
    Plugin Contributions
    0

    Default Re: For more information, please visit this product's webpage

    ignore that one... i tested the code below;

    <p id="productInfoLink" class="productGeneral centeredContent">
    <a href="<?php echo zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false); ?>"><img src="<?php echo DIR_WS_TEMPLATE_IMAGES; ?>moreinforimage.jpg" border="0" alt="More Information" /></a></p>
    ~Steve~

  10. #10
    Join Date
    Nov 2006
    Location
    Brighton, CO
    Posts
    90
    Plugin Contributions
    0

    Default Re: For more information, please visit this product's webpage

    Quote Originally Posted by s_t_e_v_e View Post
    ignore that one... i tested the code below;

    <p id="productInfoLink" class="productGeneral centeredContent">
    <a href="<?php echo zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false); ?>"><img src="<?php echo DIR_WS_TEMPLATE_IMAGES; ?>moreinforimage.jpg" border="0" alt="More Information" /></a></p>
    Steve,

    You are the man!

    Thank you so much for your relentless help!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v154 For more information, please visit this product's webpage.
    By Nightfly66 in forum General Questions
    Replies: 2
    Last Post: 18 May 2015, 05:35 PM
  2. For more information, please visit this product's webpage.
    By davik1000 in forum Templates, Stylesheets, Page Layout
    Replies: 13
    Last Post: 1 Feb 2011, 08:03 PM
  3. Replies: 3
    Last Post: 2 Jul 2010, 07:19 AM
  4. How to re-position text? "for more information, please visit this products webpage"
    By mrcastle in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 19 Mar 2010, 12:54 PM
  5. How do I change "For more information, please visit this product's webpage"???
    By willhenry in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 5 Mar 2010, 03:18 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