Search found 5 matches
- Tue Apr 20, 2010 5:45 pm
- Forum: Developers Discussion
- Topic: current page URL
- Replies: 8
- Views: 11392
Re: current page URL
For folks like me who find this thread and are asking the same questions... I found this solution to be the one that worked. I have the mod_rewrite for pretty urls and hierarchy switched on. I set up a UDT using this echo $_SERVER['REQUEST_URI']; and I named it pageurl so when I use {pageurl} in ...
- Fri Sep 26, 2008 6:19 pm
- Forum: Modules/Add-Ons
- Topic: That old cataloger missing image problem!
- Replies: 17
- Views: 8019
Re: That old cataloger missing image problem!
If you've tried all the above methods with no success, Try This: open your config.php file. Near the bottom. Swap this: $config['image_manipulation_prog'] = 'IM'; $config['image_transform_lib_path'] = '/usr/local/bin/'; For This: #$config['image_manipulation_prog'] = 'IM'; #$config['image_transform_...
- Fri Sep 26, 2008 6:19 pm
- Forum: Modules/Add-Ons
- Topic: Cataloger can't upload images
- Replies: 10
- Views: 4355
Re: Cataloger can't upload images
If you've tried all the above methods with no success, Try This: open your config.php file. Neat the bottom. Swap this: $config['image_manipulation_prog'] = 'IM'; $config['image_transform_lib_path'] = '/usr/local/bin/'; For This: #$config['image_manipulation_prog'] = 'IM'; #$config['image_transform_...
- Wed May 21, 2008 10:49 pm
- Forum: Modules/Add-Ons
- Topic: [solved] Cataloger Image Array - Exclude First Image
- Replies: 1
- Views: 1374
Re: Cataloger Image Array - Exclude First Image
w00t! Got it. After researching Smarty's site http://www.smarty.net/manual/en/language.function.section.php I found that you can start a loop at which ever integer you want. This was my solution. {section name=ind loop=$image_url_array [b]start=1[/b]} <span class="item_thumb_small"> <a hr...
- Wed May 21, 2008 6:32 pm
- Forum: Modules/Add-Ons
- Topic: [solved] Cataloger Image Array - Exclude First Image
- Replies: 1
- Views: 1374
[solved] Cataloger Image Array - Exclude First Image
Hi Guys, In the Cataloger module, I am using this template as my Item-CSS-Based Template : <a href="{$src_image_1_url}" title="{$title}"><img src="{$image_1_url}" alt="{$title}" /></a> <div class="item_thumbnails"> {section name=ind loop=$image_url_a...