• Hi,

    I recently came across your plugin and I’m impressed with the features and consideration for the user interface.

    I operate a website with pages that are strictly used to promote a single product/service on each landing page. There is no shopping cart, the user clicks on a buy now button, a Stripe overlay accepts payment, then they are sent to a Thank You page. There is only one Thank You page.

    Can Pixel Caffeine / Facebook Pixel successfully track the conversions for multiple products/services with variable pricing ( sometimes I test different prices ) on one Thank You page. Not sure if this matters, but I use utm_ URL parameters to track paid inbound campaigns.

    Thanks in advance for your help.

    -Jorge

Viewing 1 replies (of 1 total)
  • Plugin Author Antonino Scarfì

    (@antoscarface)

    Hi,

    you can try to set the Pixel events in the “Conversions/Events” tab of the plugin settings, where you can define custom events for the landing page (ViewContent) and the Thank You page for Purchase event.

    For the amount, you can define placeholders via code. For example, in the event you create try to write {{pricing}} in the “value” attribute. Then, add this code at the end of functions.php file of the active theme:

    add_filter( 'aepc_event_placeholders', function( $placeholders, $event, $event_params ) {
    	$placeholders['pricing'] = floatval( $_GET['utm_pricing'] );
    	return $placeholders;
    });

    1. In $placeholders['pricing'] that pricing between the two quotes is what you use as placeholder in the settings.
    2. Note also that $_GET['utm_pricing'] is the value you pass in the query string for the utm_ parameters (so replace utm_pricing with the real parameter). You can pass instead what you want to get the pricing if you want.

    I hope is clear. ??

Viewing 1 replies (of 1 total)
  • The topic ‘Single Landing Page Multiple Products Variable Prices’ is closed to new replies.