Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
X-Cart/Smarty Custom PHP Scripts
Old 03-17-2008, 01:42 AM X-Cart/Smarty Custom PHP Scripts
Extreme Talker

Posts: 199
Trades: 0
i have what may be a very simple question for someone who has worked with X-Cart or Smarty.

I am adding a rollover image next to the category names in the main navigation. The following is my stripped down for this post version.
PHP Code:
{foreach from=$categories item=c}

     <
div>

          <
div><img name="{$c.category}_" src="{$ImagesDir}/custom/paw.gif"></div>
          <
div><a href="home.php?cat={$c.categoryid}">{$c.category}</a></div>

     </
div>

{/foreach} 
I need to remove spaces in the names given at
Code:
name="{$c.category}_"
I want to make it
Code:
name="{str_replace(" ","_",$c.category)}_"
My attempts don't work and I get this error
Quote:
Error: Smarty error: [in customer/categories.tpl line 26]: syntax error: unrecognized tag: str_replace(" ","_",$c.category) (Smarty_Compiler.class.php, line 436) in C:\apache2triad\htdocs\clients\sitename.com\www\Sm arty-2.6.12\Smarty.class.php on line 1095
My question is.. How can I make PHP functions work in X-Cart/Smarty?

I cant even find where $c.category is set. Thanks much.
empiresolutions is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 03-17-2008, 02:12 AM Re: X-Cart/Smarty Custom PHP Scripts
Extreme Talker

Posts: 199
Trades: 0
Thanks Jay. Here's the solution-
Code:
{$c.category|replace:" ":""}
im now finding that slashes are not allowed either.
Code:
{$c.category|replace:" ":""|replace:"/":""}
works too. sweet.
empiresolutions is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to X-Cart/Smarty Custom PHP Scripts
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.09750 seconds with 12 queries