HI all
I use Joomla 1.7 and VM 2.0
I modify some fields in product table for create VOD store
i use this great tutorial ->
http://www.abemedia.co.uk/blog/tutorials/create-pay-on-demand-content-in-joomla-using-virtuemart-chameleon.htmlMy question is simple
OK product_desc ok for Content plugin but how and news elements for include this on rules:
if ( VmConfig::get('enable_content_plugin',0)) {
// add content plugin //
$dispatcher =& JDispatcher::getInstance();
JPluginHelper::importPlugin('content');
$product->text = $product->product_desc;
$params = "";
$results = $dispatcher->trigger('onPrepareContent',
array (& $product, & $params, 0));
$product->product_desc = $product->text;
I have 2 fields include in this code:
product_premium_content and product_premium_teaser
How modify code for include this fields of table ? like
product_descI use
allvideo plugins and only display in the
product_desc, because he's only include in the rule

Thx lot of and sorry for my bad english (im french ^^)
David