I have some products with 5 or 6 options for the shopper to select. I'm using Manager version 8.3. Is it possible to make the menus display vertically, each on a new line or paragraph, rather than in one horizontal line across the page?
Or it is possible to hand code the menus and send the results to the system?
Option Menu Formatting
Both [-- Order_Option_Menu line --] and [-- Order_Option_Menu column --] place the output in a complete table so you shouldn't have to create one for that.
For an example of the CALL tag, I used the code below to get the add to cart image before there was an option to get it directly
the file inf.pl contains
For an example of the CALL tag, I used the code below to get the add to cart image before there was an option to get it directly
Code: Select all
<input type=image [-- CALL inf.pl ( OUTPUT_DIRECTORY_PATH , PRODUCT.addtocartbutton ,strip) --]
Code: Select all
#!/usr/bin/perl
# This file will use the passed directory path and image name to
# display the ShopSite .inf file associated with the image.
# i.e: [-- CALL inf.pl (OUTPUT_DIRECTORY_PATH, go.gif {,strip}) --]
# if the optional paramater "strip" is added then the <img and > are removed
# before the contents of the .inf file is displayed.
#print @ARGV;
#print "\n";
$filename = $ARGV[0] . "/media/.inf." . $ARGV[1];
#print "$filename\n";
open(INPUT,$filename);
@input = <INPUT>;
if (($ARGV[2] =~ /strip/is))
{
$coutput = $input[0];
if (! ($coutput =~ /\<img.*\>/is))
{
print $coutput;
}
else
{
$coutput =~ s/.*\<\s*img(.*?)\>.*/$1/is;
print $coutput;
}
}
else
{
print @input;
}
close (INPUT);
Jim,Jim wrote:You don't have to use perl, you can use what ever language you want, C, php, perl, any thing that can accept parameters and pass the information back.
I was unaware that PHP can be used with the call tag since it doesn't say this in the manual. This would have been extremely useful to me several times.
Does the call tag pass parameters to the script as if it were a function?
Should the script itself include opening and closing PHP tags?
I'm not familiar with PERL. Can you provide a simple example of how a php script looks that's receiving parameters from the call tag?
SD360.com
Certified ShopSite Designer
[url=http://www.sd360.com/websites/shopsite.html]ShopSite Templates Available Now[/url]
Certified ShopSite Designer
[url=http://www.sd360.com/websites/shopsite.html]ShopSite Templates Available Now[/url]