Client uses a lot of inline styles but we need a stripped version for Feefo
If I write this:
The stripped description prints but how can I get <actinic:variable name="BareProductDescription" />'; to hold the value so I can use it in the feed xml files instead of prodyct description?
Thank you
If I write this:
Code:
<actinic:block php="true">
$prodinput = '<actinic:variable encoding="perl" name="ProductDescription" selectable="false" />';
$bareproductdescr = str_replace("!!","",$prodinput);
echo strip_tags($bareproductdescr);
$bareproductdescr = '<actinic:variable encoding="perl" name="BareProductDescription" selectable="false" />';
echo ('<actinic:variable encoding="perl" name="BareProductDescription" selectable="false" />');
</actinic:block>
Thank you
Comment