Now that seems like an interesting solution. All the product details are contained in a SmartDD Mysql db which have to be entered manually in two places. Under the "Inventory" tab you enter: Product name, Selling Price, Digital Download or Physical Goods tag, Real location i.e you have to upload to a "digital download location directory" the zipped files ready to be downloaded, and optionally a downloadable file name (if you do not wish the actual file name to be seen by the purchaser before downloading).
Under the "Item" tag yo are able to select the "product" from a list (from details entered under the inventory tag). Here again you enter the currency type, selling price (again?), shopping cart provider (either Paypal or Clickbank) and a few other "housekeeping" items such as what email(s) to want sent etc. Once you have saved these details you are presented with a list of "Items" with a number of options: Amend, View, Manage Images, Code Generator, Remove.
The code generator options are: Price Widget 2 examples of code below:
"Please note: In order to use the price widget, your sales page
must reside on the same domain as your SmartDD installation and must
have a .php extension.
Add the following line to the very top of the page. Note: If you want to use the price widget more than once on a page, you should only include this line once"
<?php include("/home/photosof/public_html/smartdd/pricewidget.php");?>
"Wherever you want to include the item description, put the following line:"
<?=PriceWidgetGetDescription(7);?>
"Wherever you want to include the item price, put the following line:"
<?=PriceWidgetGetPrice(7);?>
Another example of the price widget script is:
<?=PriceWidgetGetDescription(6);?>
<?=PriceWidgetGetPrice(6);?>
There are also options to generate code for Paypal and Clickbank buttons as follows:
Select Live or test mode
Select button style, there are 8 to choice from
Give commission to the referring affiliate
Add the following line to the very top of the page. Note: If you have more than one item on the page,
you should only include this line once
<?php include("/home/photosof/public_html/smartdd/saleshelper.php");?>
Add the following line to the very bottom of the page. Note: If you have more than one item on the page,
you should only include this line once
<?php include("/home/photosof/public_html/smartdd/saleshelperbottom.php");?>
And her is the code for two different products using the same button style and "Live" selected" and give commision deselected.
<form method="post" action="http://photosoffood.co.uk/smartdd/paypalredir.php">
<input type="hidden" name="aid" id="aid" value="6"/>
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but03.gif" border="0" name="submit" alt="Buy now" title="Buy now"/>
<img alt="" border="0" src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1"/>
</form>
And
<form method="post" action="http://photosoffood.co.uk/smartdd/paypalredir.php">
<input type="hidden" name="aid" id="aid" value="7"/>
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but03.gif" border="0" name="submit" alt="Buy now" title="Buy now"/>
<img alt="" border="0" src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1"/>
</form>
Does that help, is it of interest. Of course I would like to be able to use the price widget but an not sure which files(s) to rename to ."php" if any, at least that what the documentaion says I need to do, I quote " To make this(price widget) work, you need to rename your web pages extension to .php." an an example is given. As I understand it using the price widget means you can easily display and change the product price and description in the admin panel of Smartdd.
Hope that helps