View Single Post
  #15  
Old 11-13-2006, 06:51 AM
 
lachild lachild is offline
 

Advanced Member
  
Join Date: May 2006
Posts: 92
 

Default Re: Show All Products in Catagory

EDIT: Looking into this further... I see that you have the code in there correctly it's just that when the forums moved to the new BBS software it currupted the link. I have fixed the original post.

For your problem locate line 11 that reads:
Code:
{if $navigation_page gt 1} <td valign="middle"><a href="{$navigation_script}&amp;page={math equation="page-1" page=$navigation_page}"><img src="{$ImagesDir}/larrow.gif" class="NavigationArrow" alt="{$lng.lbl_prev_page|escape}" /></a>&nbsp;</td><td>Show All |</td> {/if}

Change it so it reads:

Code:
{if $navigation_page gt 1} <td valign="middle"><a href="{$navigation_script}&amp;page={math equation="page-1" page=$navigation_page}"><img src="{$ImagesDir}/larrow.gif" class="NavigationArrow" alt="{$lng.lbl_prev_page|escape}" /></a>&nbsp;</td> {** View All Add on **} {if $smarty.server.PHP_SELF ne '/manufacturers.php' && $smarty.server.PHP_SELF ne '/admin/orders.php' && $smarty.server.PHP_SELF ne '/orders.php' } <td><a href="{$navigation_script}&amp;show=all">View All</a> |</td> {/if} {** End View All**} {/if}




Hope this helps
__________________
Westin Shafer
Come Together Technologies
http://www.ComeTogetherTechnologies.com
Reply With Quote