What is the easiest way to add custom fields to products in aMember? For instance add: product thumb url, product overview url, product demo url so I can use them in the templates?
Use the amember admin / add fields, then you can display them on the members page etc.. {$smarty.request.fieldname} David
That seems to be a customer side field. What I mean is, how can I add custom values like a thumbnail url, or a product demo url in the admin so I can use them in the template? For example, I want to display the products with a thumbnail; to spice up the template. How can this be done?
Oh, misread, that would require customization to amember, possibly could be done with a plugin. I have helped my members do this without using database entries, but instead using the product ID to call an image in the template eg product1.gif David
Add this code to /amember/site.inc.php: PHP: <?php add_product_field('thumbnail', 'Thumbnail Image URL', 'text', '');?> this will add field to product settings. Then you will be able to use it in template: {$p.thumbnail} or {$product.thumbnail} depends on template.