Inhalte aufrufen

Profilbild

Dynamic remarketing script


  • Bitte melden Sie sich an, um eine Antwort zu verfassen.
2 Antworten zu diesem Thema

#1 mihai8822m

mihai8822m

    Advanced Member

  • Members
  • PunktPunktPunkt
  • 35 Beiträge

Geschrieben: 25 January 2019 - 12:14

Hello,

 

I have a Dynamic remarketing script from a local provider witch requires the folowing:

 

add_to_cart_button_id

price_label_id

 

_ra.setEmail({

"email": "email_address",
"name": "full_name",
"phone": "phone_number",
"city": "city_name",
"sex": sex_code,
"birthday": "dd-mm-yyyy"
}, callback_function);

 

 

var _ra = _ra || {};
_ra.sendCategoryInfo = {
"id": category_id,
"name" : "category_name",
"parent": parent_category_id,
"breadcrumb": [
{
"id": parent_category_id,
"name": "parent_category_name",
"parent": parent_of_parent_category_id
},
{
"id": parent_of_parent_category_id,
"name": "parent_of_parent_category_name",
"parent": false
}
]
}

if (_ra.ready !== undefined) {
_ra.sendCategory(_ra.sendCategoryInfo);
}

 

 

and much more ...

 

Where can I find the values?

 

Thank you,

 



#2 Jannis_

Jannis_

    SmartStore Team

  • Administrators
  • 108 Beiträge

Geschrieben: 25 January 2019 - 15:26

Hello,
 
there is a plugin for it, which you can find in the marketplace under the name "Dynamic Scripts". However, it does not cover all your wishes. Here is the link.
 

Available placeholders:

 

Global: {StoreName}, {LanguageName}, {CurrencyCode}, {UniqueSeoCode}, {StoreUrl}

Productdetail: {ProductName}, {ProductPrice}, {SKU}, {Gtin}, {ManufacturerPartNumber}, {DeliveryTimeName}, {ShortDescription}, {FullDescription}, {Height}, {Length}, {Weight}, {Width} {IsAvailable}, {IsShipEnabled}, {MetaDescription}, {MetaKeywords}, {MetaTitle}, {QuantityUnitName}, {StockAvailability}

OrderCompleted: {OrderTotal}, {OrderSubTotal}, {OrderTax}, {OrderShippingInclTax}, {OrderNumber}, {CustomerCurrencyCode}, {BillingAddressAddress1}, {BillingAddressAddress2}, {BillingAddressCity}, {BillingAddressCompany}, {BillingAddressCountryName}, {BillingAddressEmail}, {BillingAddressFirstName}, {BillingAddressLastName}, {BillingAddressZipPostalCode}, {ProductLine}

Product Line: {SKU}, {ProductName}, {CategoryName}, {ListPosition}, {Quantity}, {ProductPrice}

 

Best regards
 
Jannis


#3 mihai8822m

mihai8822m

    Advanced Member

  • Members
  • PunktPunktPunkt
  • 35 Beiträge

Geschrieben: 25 January 2019 - 17:38

Thank you for the info!