Datafeeds: Editing
Aurora gives you the ability to easily modify any of your data feeds using the variables provided to you. Here we outline some of the variables you can use.
<name><![CDATA[{$product.product_name}]]></name>
<brand><![CDATA[{$product.fields.brand}]]></brand>
<purl>http://{$smarty.server.HTTP_HOST}{$product.product_filename}?source=affiliate_source_here</purl>
<imgurl>{product_image_uri product=$product width=700 height=700}</imgurl>
<thumburl>{product_image_uri product=$product width=100 height=100}</thumburl>
{$product}
Product contains all of the core product information, which will include, but not be limited to:
- Aurora ID
- Reference/SKU
- Name
- Price
- Overall product stock
- Description
- Copy
{$product.fields}
These are the additional fields within Aurora, which are extra pieces of information that you can include for any product. There are no limits on how many of these can be created. To determine how to use one, you simply take the Field Name, change it to lowercase and convert spaces into underscores (_), e.g. "My New Field" would be accessible by {$product.fields.my_new_field}
Updated over 2 years ago