B4BY.588
Home
Terminal
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sportmx
/
www
/
wp-content
/
plugins
/
facebook-conversion-pixel
/
includes
/
editor
/
Filename :
editor.php
back
Copy
<?php //////////////////////////// // SETTINGS PAGE //////////////////////////// function fca_pc_plugin_menu() { add_menu_page( esc_attr__( 'Pixel Cat', 'facebook-conversion-pixel' ), esc_attr__( 'Pixel Cat', 'facebook-conversion-pixel' ), 'manage_options', 'fca_pc_settings_page', 'fca_pc_settings_page', FCA_PC_PLUGINS_URL . '/assets/icon.png', 119 ); } add_action( 'admin_menu', 'fca_pc_plugin_menu' ); //ENQUEUE ANY SCRIPTS OR CSS FOR OUR ADMIN PAGE EDITOR function fca_pc_admin_enqueue() { wp_enqueue_style( 'dashicons' ); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'fca_pc_select2', FCA_PC_PLUGINS_URL . '/includes/select2/select2.min.js', array(), FCA_PC_PLUGIN_VER, true ); wp_enqueue_style( 'fca_pc_select2', FCA_PC_PLUGINS_URL . '/includes/select2/select2.min.css', array(), FCA_PC_PLUGIN_VER ); wp_enqueue_style( 'fca_pc_tooltipster_stylesheet', FCA_PC_PLUGINS_URL . '/includes/tooltipster/tooltipster.bundle.min.css', array(), FCA_PC_PLUGIN_VER ); wp_enqueue_style( 'fca_pc_tooltipster_borderless_css', FCA_PC_PLUGINS_URL . '/includes/tooltipster/tooltipster-borderless.min.css', array(), FCA_PC_PLUGIN_VER ); wp_enqueue_script( 'fca_pc_tooltipster_js',FCA_PC_PLUGINS_URL . '/includes/tooltipster/tooltipster.bundle.min.js', array( 'jquery' ), FCA_PC_PLUGIN_VER, true ); $admin_dependencies = array( 'jquery', 'fca_pc_select2', 'fca_pc_tooltipster_js' ); if ( FCA_PC_DEBUG ) { wp_enqueue_script( 'fca_pc_admin_js', FCA_PC_PLUGINS_URL . '/includes/editor/admin.js', $admin_dependencies, FCA_PC_PLUGIN_VER, true ); wp_enqueue_style( 'fca_pc_admin_stylesheet', FCA_PC_PLUGINS_URL . '/includes/editor/admin.css', array(), FCA_PC_PLUGIN_VER ); } else { wp_enqueue_script( 'fca_pc_admin_js', FCA_PC_PLUGINS_URL . '/includes/editor/admin.min.js', $admin_dependencies, FCA_PC_PLUGIN_VER, true ); wp_enqueue_style( 'fca_pc_admin_stylesheet', FCA_PC_PLUGINS_URL . '/includes/editor/admin.min.css', array(), FCA_PC_PLUGIN_VER ); } $admin_data = array ( 'ajaxurl' => admin_url ( 'admin-ajax.php' ), 'nonce' => wp_create_nonce( 'fca_pc_admin_nonce' ), 'pixelTemplate' => fca_pc_pixel_row_html(), 'eventTemplate' => fca_pc_event_row_html(), 'premium' => function_exists ( 'fca_pc_editor_premium_data' ), 'edd_active' => fca_pc_is_edd_active(), 'woo_active' => is_plugin_active( 'woocommerce/woocommerce.php' ), 'code_editor' => wp_enqueue_code_editor( [ 'type' => 'application/javascript', 'codemirror' => [ 'autoRefresh' => true, 'lineWrapping' => true ] ] ), 'debug' => FCA_PC_DEBUG, ); wp_localize_script( 'fca_pc_admin_js', 'fcaPcAdminData', $admin_data ); if ( function_exists( 'fca_pc_editor_premium_data' ) ) { fca_pc_editor_premium_data(); } } function fca_pc_settings_page() { global $wp_version; ob_start(); echo fca_pc_admin_header_nav(); $options = get_option( 'fca_pc', array() ); if ( isSet( $_POST['fca_pc_save'] ) ) { $nonce = sanitize_text_field( $_POST['fca_pc']['nonce'] ); if( wp_verify_nonce( $nonce, 'fca_pc_admin_nonce' ) === false ){ wp_die( 'Unauthorized, please log in and try again.' ); } $options = fca_pc_settings_save(); } $form_class = FCA_PC_PLUGIN_PACKAGE === 'Lite' ? 'fca-pc-free' : 'fca-pc-premium'; if ( version_compare( $wp_version, '7', '<' ) ) { $form_class .= ' wp-less-than-7'; } $options['events'] = empty ( $options['events'] ) ? array() : $options['events']; fca_pc_admin_enqueue(); ?> <div id='fca-pc-overlay' style='display:none'></div> <form novalidate style='display: none' action='' method='post' id='fca_pc_main_form' class='<?php echo $form_class ?>'> <?php echo wp_nonce_field( 'fca_pc_admin_nonce', 'fca_pc[nonce]' ) ?> <?php echo fca_pc_add_pixel_form(); ?> <?php echo fca_pc_add_event_form(); ?> <div class='twoup'> <div> <div class='fca-pc-nav'> <a href="#" data-target="#fca-pc-main-table, #fca-pc-active-pixels-table, #fca-pc-events-table" ><?php esc_attr_e( 'Home', 'facebook-conversion-pixel' ) ?></a> <a href="#" data-target="#fca-pc-e-commerce" ><?php esc_attr_e( 'E-commerce', 'facebook-conversion-pixel' ) ?></a> <a href="#" data-target="#fca_pc_settings "><?php esc_attr_e( 'Settings', 'facebook-conversion-pixel' ) ?></a> </div> </div> <div id='twoup-content'> <?php echo fca_pc_active_pixels_table( $options ); echo fca_pc_event_panel( $options ); echo fca_pc_add_settings_table( $options ); echo fca_pc_add_e_commerce_integrations( $options ); ?> <button id="fca_pc_save" type="submit" style="margin-top: 20px;" name="fca_pc_save" class="button button-primary"><?php esc_attr_e( 'Save All Settings', 'facebook-conversion-pixel' ) ?></button> </div> </div> </form> <?php if ( FCA_PC_PLUGIN_PACKAGE === 'Lite' ) { echo fca_pc_marketing_metabox(); } echo ob_get_clean(); } function fca_pc_add_event_form() { $events = array( 'AddPaymentInfo' => 'AddPaymentInfo', 'AddToCart' => 'AddToCart', 'AddToWishlist' => 'AddToWishlist', 'CompleteRegistration' => 'CompleteRegistration', 'Contact' => 'Contact', 'CustomizeProduct' => 'CustomizeProduct', 'Donate' => 'Donate', 'FindLocation' => 'FindLocation', 'InitiateCheckout' => 'InitiateCheckout', 'Lead' => 'Lead', 'Purchase' => 'Purchase', 'Schedule' => 'Schedule', 'StartTrial' => 'StartTrial', 'SubmitApplication' => 'SubmitApplication', 'Subscribe' => 'Subscribe', 'ViewContent' => 'ViewContent', 'AddPaymentInfoTiktok' => 'AddPaymentInfo', 'AddToCartTiktok' => 'AddToCart', 'AddToWishlistTiktok' => 'AddToWishlist', 'CompleteRegistrationTiktok' => 'CompleteRegistration', 'InitiateCheckoutTiktok' => 'InitiateCheckout', 'PurchaseTiktok' => 'CompletePayment', 'ViewContentTiktok' => 'ViewContent', 'AddToCartReddit' => 'AddToCart', 'AddToWishlistReddit' => 'AddToWishlist', 'CompleteRegistrationReddit' => 'SignUp', 'LeadReddit' => 'Lead', 'PurchaseReddit' => 'Purchase', 'ViewContentReddit' => 'ViewContent', 'AddPaymentInfoSnapchat' => 'ADD_BILLING', 'AddToCartSnapchat' => 'ADD_CART', 'AddToWishlistSnapchat' => 'ADD_TO_WISHLIST', 'InitiateCheckoutSnapchat' => 'START_CHECKOUT', 'PurchaseSnapchat' => 'PURCHASE', 'PageViewSnapchat' => 'PAGE_VIEW', 'ViewContentSnapchat' => 'VIEW_CONTENT', 'AddToCartPinterest' => 'AddToCart', 'CompleteRegistrationPinterest' => 'Signup', 'LeadPinterest' => 'Lead', 'AddPaymentInfoPinterest' => 'AddPaymentInfo', 'InitiateCheckoutPinterest' => 'InitiateCheckout', 'PurchasePinterest' => 'Checkout', 'ViewContentPinterest' => 'ViewContent', 'AddToCartGA' => 'add_to_cart', 'AddPaymentInfoGA' => 'add_payment_info', 'AddToWishlistGA' => 'add_to_wishlist', 'InitiateCheckoutGA' => 'begin_checkout', 'PurchaseGA' => 'purchase', 'ViewContentGA' => 'view_item', ); $triggers = fca_pc_get_post_triggers(); $modes = array ( 'post' => 'Page Visit', 'css' => 'Click on Element', 'hover' => 'Hover over Element', 'url' => 'URL Click', 'exact_url' => 'Exact URL Visit', ); ob_start(); ?> <div id='fca-pc-event-modal' style='display: none;'> <span id='fca-pc-event-cancel' title="<?php esc_attr_e( 'Cancel', 'facebook-conversion-pixel' ) ?>" class="dashicons dashicons-no-alt"></span> <input id='fca-pc-modal-event-pixel-type' type='hidden' > <h3><?php esc_attr_e( 'Edit', 'facebook-conversion-pixel' ) ?> <span id='fca-pc-event-pixel-type-span'></span> <?php esc_attr_e( 'Event', 'facebook-conversion-pixel' ) ?></h3> <table class="fca_pc_modal_table"> <tr> <span class='fca_pc_hint'><?php esc_attr_e("Note: Looking to add WooCommerce events? Add them all ", 'facebook-conversion-pixel') ?></span> <a href="#" class='fca_pc_hint' id="fca_pc_woo_toggle_link"> <?php esc_attr_e("with a single click!", 'facebook-conversion-pixel') ?></a> </tr> <tr> <th><?php esc_attr_e( 'Trigger', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_select( 'modal_post_trigger_input', array(), $modes, "id='fca-pc-modal-trigger-type-input'" ); ?></td> </tr> <tr id='fca-pc-css-input-tr'> <th><?php esc_attr_e( 'CSS Target', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter CSS classes or IDs that will trigger the event on click. Add more than one class or ID separted by commas. E.g. "#my-header, .checkout-button"', 'facebook-conversion-pixel' ) ) ?></th> <td> <input id='fca-pc-modal-css-trigger-input' type='text' placeholder='e.g. #checkout-button' class='fca-pc-input-text fca-pc-css-trigger' style='width: 100%'> </td> </tr> <tr id='fca-pc-url-input-tr'> <th><?php esc_attr_e( 'URL Click', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter the URL you wish to trigger the event on click.', 'facebook-conversion-pixel' ) ) ?></th> <td> <input id='fca-pc-modal-url-trigger-input' type='url' placeholder='https://fatcatapps.com' class='fca-pc-input-text fca-pc-url-trigger' style='width: 100%'> </td> </tr> <tr id='fca-pc-exact_url-input-tr'> <th><?php esc_attr_e( 'Exact URL Visit', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter the URL you wish to trigger the event on visit.', 'facebook-conversion-pixel' ) ) ?></th> <td> <input id='fca-pc-modal-exact_url-trigger-input' type='url' placeholder='https://fatcatapps.com' class='fca-pc-input-text fca-pc-exact_url-trigger' style='width: 100%'> </td> </tr> <tr id='fca-pc-post-input-tr'> <th><?php esc_attr_e( 'Pages', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Choose where on your site to trigger this event. You can choose any posts, pages, or categories. Add custom post type support in the Settings tab. (Premium only)', 'facebook-conversion-pixel' ) ) ?></th> <td> <?php echo fca_pc_select_multiple( 'modal_post_trigger_input', array(), $triggers, "id='fca-pc-modal-post-trigger-input'" ); ?> </td> </tr> <tr> <th><?php esc_attr_e( 'Event', 'facebook-conversion-pixel' ); ?></th> <td> <select id='fca-pc-modal-event-input' class='fca_pc_select' style='width: 100%' > <optgroup label='<?php esc_attr_e( 'Standard Events', 'facebook-conversion-pixel' ) ?>'> <?php forEach ( $events as $key => $value ) { echo "<option value='" . esc_attr( $key ) . "'>$value</option>"; }?> </optgroup> <option value='custom' id='custom-event-option' class='fca-bold'><?php esc_attr_e( 'Custom Event', 'facebook-conversion-pixel' ) ?></option> </select> </td> </tr> <tr id='fca_pc_param_event_name'> <th><?php esc_attr_e( 'Event Name', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Choose the name of the Custom Event. Max 50 characters', 'facebook-conversion-pixel' ) ) ?></th> <td><?php echo fca_pc_input ( 'event_name', '', '', 'text' ) ?></td> </tr> <tr> <th><?php echo esc_attr( 'Time delay', 'facebook-conversion-pixel' ) . fca_pc_tooltip( esc_attr__( 'You can add a time-delay to exclude bouncing visitors.', 'facebook-conversion-pixel' ) ) . fca_sp_premium_only_link() ?></th> <td><input id='fca-pc-modal-delay-input' type='number' min='0' max='3600' step='1' value='0'><?php esc_attr_e( 'seconds', 'facebook-conversion-pixel' ) ?></td> </tr> <tr> <th><?php echo esc_attr( 'Scroll %', 'facebook-conversion-pixel' ) . fca_pc_tooltip( esc_attr__( 'You can add a scroll percent trigger to exclude bouncing visitors.', 'facebook-conversion-pixel' ) ) . fca_sp_premium_only_link() ?></th> <td><input id='fca-pc-modal-scroll-input' type='number' min='0' max='100' step='5' value='0'><?php esc_attr_e( '%', 'facebook-conversion-pixel' ) ?></td> </tr> <tr> <th style='vertical-align: top'><?php esc_attr_e( 'Parameters', 'facebook-conversion-pixel' )?></th> <td><?php echo '<span id="fca-pc-show-param" class="fca-pc-param-toggle">' . esc_attr__( '(show)', 'facebook-conversion-pixel' ) . '</span><span style="display: none;" id="fca-pc-hide-param" class="fca-pc-param-toggle">' . esc_attr__( '(hide)', 'facebook-conversion-pixel' ) . '</span>' ?></td> </tr> <tr> <td id='fca-pc-param-help' class='fca-pc-param-row' colspan=2 style='font-style: italic;'><?php esc_attr_e( 'Add custom parameters here. You can use any of the following automatic parameters:', 'facebook-conversion-pixel' )?><br> {post_title}, {post_id}, {post_type}, {post_category} </td> </tr> <tr> <?php echo fca_pc_event_parameters() ?> </tr> </table> <button type='button' id='fca-pc-event-save' class='button button-primary' style='margin-right: 8px'><?php esc_attr_e( 'Save', 'facebook-conversion-pixel' ) ?></button> </div> <?php return ob_get_clean(); } //SPIT OUT THE DIFFERENT PARAMETER OPTIONS FOR EACH EVENT function fca_pc_event_parameters () { ob_start(); ?> <tr class='fca-pc-param-row' id='fca_pc_param_value'> <th>value:<span class='fca-required-param-tooltip'><?php echo fca_pc_tooltip( esc_attr__( 'The purchase price. This field is required.', 'facebook-conversion-pixel' ) ) ?></span></th> <td><?php echo fca_pc_input( 'value', '', '', 'text' ) ?></td> </tr> <tr class='fca-pc-param-row' id='fca_pc_param_currency'> <th>currency:<span class='fca-required-param-tooltip'><?php echo fca_pc_tooltip( esc_attr__( 'E.g. USD, EUR or JPY. This field is required.', 'facebook-conversion-pixel' ) ) ?></span></th> <td><?php echo fca_pc_input( 'currency', '', '', 'text' ) ?></td> </tr> <tr class='fca-pc-param-row' id='fca_pc_param_predicted_ltv'> <th>predicted_ltv:<span class='fca-required-param-tooltip'><?php echo fca_pc_tooltip( esc_attr__( 'Predicted lifetime value of a subscriber as defined by the advertiser and expressed as an exact value. This field is required.', 'facebook-conversion-pixel' ) ) ?></span></th> <td><?php echo fca_pc_input( 'predicted_ltv', '', '', 'text' ) ?></td> </tr> <tr class='fca-pc-param-row' id='fca_pc_param_content_name'> <th>content_name:</th> <td><?php echo fca_pc_input( 'content_name', '', '', 'text' ) ?></td> </tr> <tr class='fca-pc-param-row' id='fca_pc_param_content_type'> <th>content_type:</th> <td><?php echo fca_pc_select( 'content_type', '', array( 'product' => 'product', 'product_group' => 'product_group' ), "class='fca-pc-input-select fca-pc-content_type'" ) ?></td> </tr> <tr class='fca-pc-param-row' id='fca_pc_param_content_ids'> <th>content_ids:</th> <td><?php echo fca_pc_input( 'content_ids', '', '', 'text' ) ?></td> </tr> <tr class='fca-pc-param-row' id='fca_pc_param_content_category'> <th>content_category:</th> <td><?php echo fca_pc_input( 'content_category', '', '', 'text' ) ?></td> </tr> <tr class='fca-pc-param-row' id='fca_pc_param_search_string'> <th>search_string:</th> <td><?php echo fca_pc_input( 'search_string', '', '', 'text' ) ?></td> </tr> <tr class='fca-pc-param-row' id='fca_pc_param_num_items'> <th>num_items:</th> <td><?php echo fca_pc_input( 'num_items', '', '', 'text' ) ?></td> </tr> <tr class='fca-pc-param-row' id='fca_pc_param_status'> <th>status:</th> <td><?php echo fca_pc_input( 'status', '', '', 'text' ) ?></td> </tr> <tr class='fca-pc-param-row' id='fca_pc_param_custom'> <td colspan='3' style='position: relative; left: -3px;'> <?php echo fca_pc_custom_param_table(); if ( FCA_PC_PLUGIN_PACKAGE === 'Lite' ) { echo fca_sp_premium_only_link(); } ?> </td> </tr> <?php return ob_get_clean(); } function fca_pc_custom_param_table() { ob_start(); ?> <table id='fca_pc_custom_param_table' style='width:100%;'> </table> <button type='button' id='fca-pc-add-custom-param' class='button button-secondary' ><span class='dashicons dashicons-plus'' ></span><?php esc_attr_e( 'Add Custom Parameter', 'facebook-conversion-pixel' ) ?></button> <?php return ob_get_clean(); } function fca_pc_custom_param_row() { ob_start(); ?> <tr class='fca_deletable_item'> <td style='width: 120px;'><input type='text' style='width:100%; height: 35px;' placeholder='<?php esc_attr_e( 'Parameter', 'facebook-conversion-pixel' ) ?>' class='fca-pc-input-parameter-name'></td> <td><input type='text' style='width:100%; height: 35px;' placeholder='<?php esc_attr_e( 'Value', 'facebook-conversion-pixel' ) ?>' class='fca-pc-input-parameter-value'></td> <td style='width: 66px; text-align: right; height: 35px;'><?php echo fca_pc_delete_icons() ?></td> </tr> <?php return ob_get_clean(); } function fca_pc_event_tooltips(){ $viewcontent_hover_text = htmlentities ( esc_attr__("We'll automatically send the following event parameters to Facebook:<br>content_name: Post/Page title (eg. \"My first blogpost\")<br>content_type: Post type (eg. \"Post\", \"Page\", \"Product\")<br>content_ids: The WordPress post id (eg. \"47\")", 'facebook-conversion-pixel' ), ENT_QUOTES ); $lead_hover_text = htmlentities ( esc_attr__("We'll automatically send the following event parameters to Facebook:<br>content_name: Post/Page title (eg. \"My first blogpost\")<br>content_category: The post's category, if any (eg. \"News\")", 'facebook-conversion-pixel' ), ENT_QUOTES ); $html = "<p class='fca_pc_hint' id='fca_pc_tooltip_viewcontent'>"; $html .= sprintf( esc_attr__("Send the %1sViewContent%2s standard event to Facebook.<br>(%3sWhich Parameters will be sent?%4s)", 'facebook-conversion-pixel' ), '<strong>', '</strong>', "<span class='fca_pc_event_tooltip' title='$viewcontent_hover_text'>", '</span>' ); $html .= '</p>'; $html .= "<p class='fca_pc_hint' id='fca_pc_tooltip_lead' style='display: none'>"; $html .= sprintf( esc_attr__("Send the %1sLead%2s standard event to Facebook.<br>(%1sWhich Parameters will be sent?%2s)", 'facebook-conversion-pixel' ), '<strong>', '</strong>', "<span class='fca_pc_event_tooltip' title='$lead_hover_text'>", '</span>' ); $html .= '</p>'; return $html; } function fca_pc_add_pixel_form() { $types = array( 'Conversions API' => 'Facebook Conversions API', 'Facebook Pixel' => 'Facebook Pixel', 'GA3' => 'Google Universal Analytics (GA3)', 'GA4' => 'Google Analytics (GA4)', 'Adwords' => 'Google Ads', 'Pinterest' => 'Pinterest Pixel', 'Snapchat' => 'Snapchat Pixel', 'TikTok' => 'TikTok Pixel', 'Reddit' => 'Reddit Pixel', 'Custom Header Script' => 'Custom Header Script', ); if( FCA_PC_PLUGIN_PACKAGE === 'Lite' ) { $types = array( 'Conversions API' => 'Facebook Conversions API', 'Facebook Pixel' => 'Facebook Pixel', 'GA3' => 'Google Universal Analytics (GA3)', 'GA4' => 'Google Analytics (GA4)', 'Custom Header Script' => 'Custom Header Script', 'Adwords' => 'Google Ads (Premium Only)', 'Pinterest' => 'Pinterest Pixel (Premium Only)', 'TikTok' => 'TikTok Pixel (Premium Only)', 'Snapchat' => 'Snapchat Pixel (Premium Only)', 'Reddit' => 'Reddit Pixel (Premium Only)', ); } ob_start(); ?> <div id='fca-pc-pixel-modal' style='display: none;'> <span id='fca-pc-pixel-cancel' title="<?php esc_attr_e( 'Cancel', 'facebook-conversion-pixel' ) ?>" class="dashicons dashicons-no-alt"></span> <h3><?php esc_attr_e( 'Add a Pixel', 'facebook-conversion-pixel' ) ?></h3> <table class="fca_pc_pixel_modal_table"> <tr> <th><?php esc_attr_e( 'Type of Pixel', 'facebook-conversion-pixel' ); ?></th> <td> <select id='fca-pc-modal-type-select' class='fca_pc_select' style='width: 100%' > <optgroup label='<?php esc_attr_e( 'Type of Pixel', 'facebook-conversion-pixel' ) ?>'> <?php forEach ( $types as $key => $value ) { $atts = ''; if( FCA_PC_PLUGIN_PACKAGE === 'Lite' && in_array( $key, array( 'Pinterest', 'Snapchat', 'Adwords', 'TikTok', 'Reddit' ) ) ) { $atts = 'disabled'; } echo "<option $atts value='" . esc_attr( $key ) . "'>$value</option>"; } ?> </optgroup> </select> </td> </tr> <tr id='fca-pc-pixel-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Pixel ID', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Facebook Pixel ID here', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://fatcatapps.com/knowledge-base/facebook-pixel-id/" target="_blank"> <?php echo esc_attr__( 'What is my Pixel ID?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-pixel-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__('Your Facebook Pixel ID should only contain numbers', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-pixel-input' type='text' placeholder='e.g. 1234567890' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-capi-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Conversions API Token', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Conversions API Token here', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://developers.facebook.com/docs/marketing-api/conversions-api/get-started#access-token" target="_blank"> <?php echo esc_attr__( 'Where can I find this?', 'facebook-conversion-pixel' ) ?></a> </th> <td> <input id='fca-pc-modal-capi-input' type='text' placeholder='e.g. EAAMHTc1Wx2UBADK0r...' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-test-input-tr'> <th><?php esc_attr_e( 'Test Code', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Test Conversions API connectivity (found in Test Events in your Facebook Events Manager). Remove this when going live!', 'facebook-conversion-pixel' ) ) ?></th> <td> <input id='fca-pc-modal-test-input' type='text' placeholder='optional - e.g. TEST12345' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-ga3-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Universal ID', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Google Universal Analytics ID here', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://support.google.com/analytics/answer/10269537" target="_blank"> <?php echo esc_attr__( 'How do I get a Univesral Analytics ID?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-ga3-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__('Your GA3/Universal Analytics ID should start with "UA-" and contain a series of numbers and/or letters, like this: UA-123456789.', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-ga3-input' type='text' placeholder='e.g. UA-123456789' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-ga4-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Property ID', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Google Analytics Property ID here', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://support.google.com/analytics/answer/10089681" target="_blank"> <?php echo esc_attr__( 'How do I get a GA4 Property ID?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-ga4-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__('Your GA4 Property ID should start with "G-" and contain a series of numbers and/or letters, like this: G-JJJKKKLLLL.', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-ga4-input' type='text' placeholder='e.g. G-JJJKKKLLLL' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-adwords-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Property ID', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Google Ads Property ID here', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://support.google.com/google-ads/answer/6331314" target="_blank"> <?php echo esc_attr__( 'How do I get a Google Ads Property ID?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-adwords-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__('Your Google Ads tag ID should start with "AW-" and contain a series of numbers and/or letters, like this: AW-123456789.', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-adwords-input' type='text' placeholder='e.g. AW-123456789' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr class='fca-pc-header-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Header Script', 'facebook-conversion-pixel' ) ?></th> <td id="fca-pc-header-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__('Add any custom code to your site header. E.g. <script>alert("Hello World")</script>.', 'facebook-conversion-pixel' ) ?>"> <textarea rows=4 id='fca-pc-modal-header-code' placeholder='e.g. <script>alert("Hello World")</script>' style='width: 100%'></textarea> <p class='fca_pc_hint'><?php esc_attr_e( 'This custom script will be added to the website before the closing html </head>', 'facebook-conversion-pixel' ) ?></p> </td> </tr> <tr id='fca-pc-pinterest-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Tag ID', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Pinterest Tag ID here', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://help.pinterest.com/en/business/article/install-the-pinterest-tag" target="_blank"> <?php echo esc_attr__( 'What is my Tag ID?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-pinterest-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__('Your Pinterest Tag ID should only contain numbers', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-pinterest-input' type='text' placeholder='e.g. 1234567890' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-pinterest-capi-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Pinterest Access Token', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Pinterest Access Token here. Add to enable Pinterest Server Events API which is optional but may provide more reliable event tracking.', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://help.pinterest.com/en-gb/business/article/getting-started-with-the-conversions-api" target="_blank"> <?php echo esc_attr__( 'What is my Pinterest Access Token?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-pinterest-capi-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-pinterest-capi-input' type='text' placeholder='e.g. 18c5573fe0eeb2106ff7...' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-pinterest-account-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Pinterest Ad Account ID', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Pinterest Ad Account ID here. Add to enable Pinterest Server Events API which is optional but may provide more reliable event tracking.', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="#" target="_blank"> <?php echo esc_attr__( 'What is my Ad Account ID?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-pinterest-account-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-pinterest-account-input' type='text' placeholder='e.g. 549765364400' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-pinterest-test-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Pinterest Test Mode', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Test Pinterest Events API connectivity (found in Test events in your Pinterest Events Manager). Remove this when going live!', 'facebook-conversion-pixel' ) ) ?> <br> </th> <td id="fca-pc-pinterest-test-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <select id='fca-pc-modal-pinterest-test-input' > <option value=''>Disabled</option> <option value='true'>Enabled</option> </select> </td> </tr> <tr id='fca-pc-snapchat-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Snap Pixel ID', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Snap Pixel ID here', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://forbusiness.snapchat.com/blog/the-snap-pixel-how-it-works-and-how-to-install-it" target="_blank"> <?php echo esc_attr__( 'What is my Snap Pixel ID?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-snapchat-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-snapchat-input' type='text' placeholder='e.g. ca2a4cf8-b536-4b47-bdf7-a92ed596a420' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-snapchat-capi-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Snapchat Access Token', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Snapchat Access Token here. Add to enable Snapchat Conversions API which is optional but may provide more reliable event tracking.', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://businesshelp.snapchat.com/s/article/api-auth-tokens-capi-faq?language=en_US" target="_blank"> <?php echo esc_attr__( 'What is my Snapchat Access Token?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-snapchat-capi-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-snapchat-capi-input' type='text' placeholder='e.g. eyJhbGciOiJIUzI...' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-snapchat-test-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Snapchat Test Mode', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Test Snapchat Events API connectivity (found in Test events in your Events Manager). Remove this when going live!', 'facebook-conversion-pixel' ) ) ?> <br> </th> <td id="fca-pc-snapchat-test-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <select id='fca-pc-modal-snapchat-test-input' > <option value=''>Disabled</option> <option value='TEST12345'>Enabled</option> </select> </td> </tr> <tr id='fca-pc-tiktok-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'TikTok Pixel ID', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your TikTok Pixel ID here', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://ads.tiktok.com/help/article/get-started-pixel?lang=en#" target="_blank"> <?php echo esc_attr__( 'What is my TikTok Pixel ID?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-tiktok-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-tiktok-input' type='text' placeholder='e.g. CKMUJJJC77U3G7B8ASE2' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-tiktok-capi-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'TikTok Access Token', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your TikTok Access Token here. Add to enable TikTok Server Events API which is optional but may provide more reliable event tracking.', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://business-api.tiktok.com/portal/docs?id=1771101130925058" target="_blank"> <?php echo esc_attr__( 'What is my TikTok Access Token?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-tiktok-capi-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-tiktok-capi-input' type='text' placeholder='e.g. 18c5573fe0eeb2106ff7...' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-tiktok-test-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'TikTok Test Value', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Test TikTok Events API connectivity (found in Test events in your TikTok Events Manager). Remove this when going live!', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="https://business-api.tiktok.com/portal/docs?id=1771100984456193" target="_blank"> <?php echo esc_attr__( 'What is my TikTok Test Value?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-tiktok-test-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-tiktok-test-input' type='text' placeholder='e.g. TEST_01235' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-reddit-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Reddit Pixel ID', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Reddit Pixel ID here', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="#" target="_blank"> <?php echo esc_attr__( 'What is my Reddit Pixel ID?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-reddit-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-reddit-input' type='text' placeholder='e.g. a2_ijbse9tyvbax' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-reddit-capi-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Conversions Access Token', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Enter your Conversions access token here. Add to enable Reddit Conversions API which is optional but may provide more reliable event tracking.', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="#" target="_blank"> <?php echo esc_attr__( 'What is my Conversions Access Token?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-reddit-capi-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-reddit-capi-input' type='text' placeholder='e.g. eyJhbGciOiJSUzI1...' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr id='fca-pc-reddit-test-input-tr'> <th style="top: 0;"><?php esc_attr_e( 'Reddit Test ID', 'facebook-conversion-pixel' ); echo fca_pc_tooltip( esc_attr__( 'Test Reddit Conversions API connectivity (found in Event testing in your Reddit Ads Manager). Remove this when going live!', 'facebook-conversion-pixel' ) ) ?> <br><a class="fca_pc_hint" href="#" target="_blank"> <?php echo esc_attr__( 'What is my Reddit Test ID?', 'facebook-conversion-pixel' ) ?></a> </th> <td id="fca-pc-reddit-test-helptext" class="fca-pc-validation-helptext" title="<?php echo esc_attr__(' ', 'facebook-conversion-pixel' ) ?>"> <input id='fca-pc-modal-reddit-test-input' type='text' placeholder='e.g. t2_28ic83000a' class='fca-pc-input-text' style='width: 100%'> </td> </tr> <tr class='fca-pc-exclude-input-tr'> <th style="top: 0;"><?php echo esc_attr( 'Excluded Pages', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td> <?php echo fca_pc_select_multiple( 'excluded_pages', array(), fca_pc_get_post_triggers(), "id='fca-pc-pixel-excluded-pages'" ) ?> <p class='fca_pc_hint'><?php esc_attr_e( 'The pixel/code will be added sitewide unless added to the "Excluded Pages" above. Add custom post type support in the Settings tab. (Premium only).', 'facebook-conversion-pixel' ) ?></p> </td> </tr> </table> <span id="fca_pc_capi_info" class="fca_pc_hint"><?php esc_attr_e( 'Important: Even with the Conversions API active, events will also be sent through the Conversions Pixel. In case the Pixel gets blocked by an ad blocker, the Conversions API will kick in and make sure the event is still logged and sent to Facebook.' , 'facebook-conversion-pixel' ); ?><br></span> <br> <button type='button' id='fca-pc-pixel-save' class='button button-primary' style='margin-right: 8px'><?php esc_attr_e( 'Save', 'facebook-conversion-pixel' ) ?></button> </div> <?php return ob_get_clean(); } function fca_pc_active_pixels_table( $options ){ $pixels = empty( $options['pixels'] ) ? array() : $options['pixels']; ob_start(); ?> <div id="fca-pc-active-pixels-table"> <div id="fca-pc-active-pixels-content"> <h3><?php echo esc_attr__( 'Pixels', 'facebook-conversion-pixel' ) ?></h3> <p><?php esc_attr_e( 'Add a tracking code (aka "Pixel") to track website behavior or ecommerce events.', 'facebook-conversion-pixel' ) ?> <p><?php esc_attr_e( 'Need Help? Check out our knowledge base here: ', 'facebook-conversion-pixel' ) ?> <a href="https://fatcatapps.com/facebook-pixel/#Option_2_Install_a_Facebook_Pixel_WordPress_plugin_recommended" target="_blank"><?php esc_attr_e( 'Setup Instructions', 'facebook-conversion-pixel' ) ?></a> | <a href="https://fatcatapps.com/knowledge-base/testing-facebook-pixel/" target="_blank"><?php esc_attr_e( 'How To Check If Your Pixel Is Working', 'facebook-conversion-pixel' ) ?></a> | <a href="https://fatcatapps.com/facebook-pixel/" target="_blank"><?php esc_attr_e( 'FB Pixel: The Definitive Guide', 'facebook-conversion-pixel' ) ?></a> | <a href="https://wordpress.org/support/plugin/facebook-conversion-pixel" target="_blank"><?php esc_attr_e( 'Support Forum', 'facebook-conversion-pixel' ) ?></a> </p> <table id="fca-pc-pixels" class="widefat"> <tr id="fca-pc-pixel-table-heading"> <th style="display:none;"></th> <th style="width: 67px;"><?php echo esc_attr__( 'Status', 'facebook-conversion-pixel' ) ?></th> <th style="width: 30%;"><?php echo esc_attr__( 'Pixel Type', 'facebook-conversion-pixel' ) ?></th> <th style="width: calc( 70% - 150px );"><?php echo esc_attr__( 'Pixel ID', 'facebook-conversion-pixel' ) ?></th> <th style="text-align: right; width: 67px;"></th> </tr><?php if( $pixels ){ forEach ( $pixels as $pixel ) { echo fca_pc_pixel_row_html( $pixel ); } } ?> </table> <button type="button" id="fca_pc_new_pixel_id" class="button button-secondary" title=" <?php echo esc_attr__( 'Add a Pixel', 'facebook-conversion-pixel' ) ?> "> <span class="dashicons dashicons-plus"></span>Add Pixel </button> <img class="fca_pc_onboarding" src="<?php echo FCA_PC_PLUGINS_URL . '/assets/onboarding-arrow.png'?>" > <img class="fca_pc_onboarding" style="display:block;" src="<?php echo FCA_PC_PLUGINS_URL . '/assets/onboarding-text.png'?>" > </br></br> </div> </div> <?php return ob_get_clean(); } function fca_pc_pixel_row_html( $pixel = '' ) { ob_start(); ?> <tr id='{{ID}}' class='fca_pc_pixel_row fca_deletable_item'> <td class='fca-pc-json-td' style='display:none;'><input type='hidden' class='fca-pc-input-hidden fca-pc-pixel-json' name='fca_pc[pixel_json][]' value='<?php echo esc_attr( htmlspecialchars( stripslashes_deep( $pixel ) ) ) ?>' /></td> <td class='fca-pc-controls-td'> <span class='dashicons dashicons-controls-pause fca_controls_icon fca_controls_icon_pixel_play' title='<?php esc_attr_e( 'Paused - Click to Activate', 'facebook-conversion-pixel' ) ?>' style='display:none;' ></span> <span class='dashicons dashicons-controls-play fca_controls_icon fca_controls_icon_pixel_pause' title='<?php esc_attr_e( 'Active - Click to Pause', 'facebook-conversion-pixel' ) ?>' ></span> </td> <td class='fca-pc-type-td'>{{TYPE}}</td> <td class='fca-pc-pixel-td'>{{PIXEL}}</td> <td class='fca-pc-delete-td'><?php echo fca_pc_delete_icons() ?></td> </tr> <?php return ob_get_clean(); } function fca_pc_event_panel( $options ) { $events = empty( $options['events'] ) ? array() : $options['events']; ob_start(); ?> <div id="fca-pc-events-table"> <h3><?php esc_attr_e( 'Events', 'facebook-conversion-pixel' ) ?></h3> <p><?php esc_attr_e( 'Trigger events based on user behavior, like a visit to a checkout page, or clicking on a sign up button.', 'facebook-conversion-pixel' ) ?></p> <br> <table id="fca-pc-events" class="widefat"> <tr id="fca-pc-event-table-heading"> <th style="display:none;"></th> <th style="width: 67px;"><?php esc_attr_e( 'Status', 'facebook-conversion-pixel' ) ?></th> <th style="width: 30%;"><?php esc_attr_e( 'Pixel Type', 'facebook-conversion-pixel' ) ?></th> <th style="width: 30%;"><?php esc_attr_e( 'Event', 'facebook-conversion-pixel' ) ?></th> <th style="width: calc( 40% - 150px );"><?php esc_attr_e( 'Trigger', 'facebook-conversion-pixel' ) ?></th> <th style="text-align: right; width: 67px;"></th> </tr> <?php forEach ( $events as $event ) { echo fca_pc_event_row_html( $event ); }?> </table> <button type="button" id="fca_pc_new_fb_event" class="button button-secondary"><span class="dashicons dashicons-plus"></span><?php esc_attr_e( 'Add Facebook Event', 'facebook-conversion-pixel' ) ?></button> <button type="button" id="fca_pc_new_pinterest_event" class="button button-secondary"><span class="dashicons dashicons-plus"></span><?php esc_attr_e( 'Add Pinterest Event', 'facebook-conversion-pixel' ) ?></button> <button type="button" id="fca_pc_new_snapchat_event" class="button button-secondary"><span class="dashicons dashicons-plus"></span><?php esc_attr_e( 'Add Snapchat Event', 'facebook-conversion-pixel' ) ?></button> <button type="button" id="fca_pc_new_ga_event" class="button button-secondary"><span class="dashicons dashicons-plus"></span><?php esc_attr_e( 'Add Google Event', 'facebook-conversion-pixel' ) ?></button> <button type="button" id="fca_pc_new_tiktok_event" class="button button-secondary"><span class="dashicons dashicons-plus"></span><?php esc_attr_e( 'Add TikTok Event', 'facebook-conversion-pixel' ) ?></button> <button type="button" id="fca_pc_new_reddit_event" class="button button-secondary"><span class="dashicons dashicons-plus"></span><?php esc_attr_e( 'Add Reddit Event', 'facebook-conversion-pixel' ) ?></button> <br> </div> <?php return ob_get_clean(); } //EVENT TABLE ROW TEMPLATE function fca_pc_event_row_html( $event = '' ) { ob_start(); ?> <tr id='{{ID}}' class='fca_pc_event_row fca_deletable_item'> <td class='fca-pc-json-td' style='display:none;'><input type='hidden' class='fca-pc-input-hidden fca-pc-json' name='fca_pc[event_json][]' value='<?php echo esc_attr( stripslashes_deep( $event ) ) ?>' /></td> <td class='fca-pc-controls-td'> <span class='dashicons dashicons-controls-pause fca_controls_icon fca_controls_icon_play' title='<?php esc_attr_e( 'Paused - Click to Activate', 'facebook-conversion-pixel' ) ?>' style='display:none;' ></span> <span class='dashicons dashicons-controls-play fca_controls_icon fca_controls_icon_pause' title='<?php esc_attr_e( 'Active - Click to Pause', 'facebook-conversion-pixel' ) ?>' ></span> </td> <td class='fca-pc-event-pixel-td'>{{TYPE}}</td> <td class='fca-pc-event-td'>{{EVENT}}</td> <td class='fca-pc-trigger-td'>{{TRIGGER}}</td> <td class='fca-pc-delete-td'><?php echo fca_pc_delete_icons() ?></td> </tr> <?php return ob_get_clean(); } function fca_pc_settings_save() { $data = array(); echo '<div id="fca-pc-notice-save" class="notice notice-success is-dismissible">'; echo '<p><strong>' . esc_attr__( "Settings saved.", 'facebook-conversion-pixel' ) . '</strong></p>'; echo '</div>'; $data['pixels'] = empty( $_POST['fca_pc']['pixel_json'] ) ? array() : array_map( 'sanitize_text_field', $_POST['fca_pc']['pixel_json'] ); $data['events'] = empty( $_POST['fca_pc']['event_json'] ) ? array() : array_map( 'sanitize_text_field', $_POST['fca_pc']['event_json'] ); $data['exclude'] = empty( $_POST['fca_pc']['exclude'] ) ? array() : array_map( 'fca_pc_sanitize_text_array', $_POST['fca_pc']['exclude'] ); $data['cpt_support'] = empty( $_POST['fca_pc']['cpt_support'] ) ? array() : array_map( 'fca_pc_sanitize_text_array', $_POST['fca_pc']['cpt_support'] ); $data['search_integration'] = empty( $_POST['fca_pc']['search_integration'] ) ? '' : 'on'; $data['quizcat_integration'] = empty( $_POST['fca_pc']['quizcat_integration'] ) ? '' : 'on'; $data['optincat_integration'] = empty( $_POST['fca_pc']['optincat_integration'] ) ? '' : 'on'; $data['landingpagecat_integration'] = empty( $_POST['fca_pc']['landingpagecat_integration'] ) ? '' : 'on'; $data['ept_integration'] = empty( $_POST['fca_pc']['ept_integration'] ) ? '' : 'on'; $data['woo_integration'] = empty( $_POST['fca_pc']['woo_integration'] ) ? '' : 'on'; $data['woo_integration_ga'] = empty( $_POST['fca_pc']['woo_integration_ga'] ) ? '' : 'on'; $data['woo_feed'] = empty( $_POST['fca_pc']['woo_feed'] ) ? '' : 'on'; $data['woo_variations'] = empty( $_POST['fca_pc']['woo_variations'] ) ? '' : 'on'; $data['woo_excluded_categories'] = empty( $_POST['fca_pc']['woo_excluded_categories'] ) ? '' : sanitize_text_field( $_POST['fca_pc']['woo_excluded_categories'] ); $data['woo_product_id'] = empty( $_POST['fca_pc']['woo_product_id'] ) ? '' : sanitize_text_field( $_POST['fca_pc']['woo_product_id'] ); $data['woo_desc_mode'] = empty( $_POST['fca_pc']['woo_desc_mode'] ) ? '' : sanitize_text_field( $_POST['fca_pc']['woo_desc_mode'] ); $data['google_product_category'] = empty( $_POST['fca_pc']['google_product_category'] ) ? '' : intval( $_POST['fca_pc']['google_product_category'] ); $data['edd_integration'] = empty( $_POST['fca_pc']['edd_integration'] ) ? '' : 'on'; $data['edd_feed'] = empty( $_POST['fca_pc']['edd_feed'] ) ? '' : 'on'; $data['edd_excluded_categories'] = empty( $_POST['fca_pc']['edd_excluded_categories'] ) ? '' : sanitize_text_field( $_POST['fca_pc']['edd_excluded_categories'] ); $data['edd_desc_mode'] = empty( $_POST['fca_pc']['edd_desc_mode'] ) ? '' : sanitize_text_field( $_POST['fca_pc']['edd_desc_mode'] ); if ( function_exists( 'fca_pc_premium_save' ) ) { $data = fca_pc_premium_save( $data ); } //AUTO TOGGLE ON INTEGRATIONS WHEN ADDING NEW PIXEL $data = fca_pc_maybe_enable_integrations_on_save( $data ); update_option( 'fca_pc', $data ); return $data; } function fca_pc_maybe_enable_integrations_on_save( $data ) { $edd_active = fca_pc_is_edd_active(); $woo_active = fca_pc_is_woo_active(); if( !$woo_active && !$edd_active ) { return $data; } $old_save = get_option( 'fca_pc', $data ); $old_active_pixels = fca_pc_get_active_pixels( $old_save ); $new_active_pixels = fca_pc_get_active_pixels( $data ); $old_pixel_types = array_column( $old_active_pixels, 'type' ); $new_pixels_types = array_column( $new_active_pixels, 'type' ); $added_pixels = array_values( array_filter( $new_active_pixels, function ( $item ) use ( $old_pixel_types ) { return !in_array( $item['type'], $old_pixel_types, true ); })); if( !empty( $added_pixels ) ) { forEach( $added_pixels as $p ) { if( $woo_active ) { switch( $p['type'] ) { case 'Facebook Pixel': $data['woo_integration'] = 'on'; break; case 'Conversions API': $data['woo_integration'] = 'on'; break; case 'Adwords': $data['woo_integration_ga'] = 'on'; break; case 'GA3': $data['woo_integration_ga'] = 'on'; break; case 'GA4': $data['woo_integration_ga'] = 'on'; break; case 'Snapchat': $data['woo_integration_snapchat'] = 'on'; break; case 'Pinterest': $data['woo_integration_pinterest'] = 'on'; break; case 'TikTok': $data['woo_integration_tiktok'] = 'on'; break; case 'Reddit': $data['woo_integration_reddit'] = 'on'; break; } } if( $edd_active ) { switch( $p['type'] ) { case 'Facebook Pixel': $data['edd_integration'] = 'on'; break; case 'Conversions API': $data['edd_integration'] = 'on'; break; case 'Adwords': $data['edd_integration_ga'] = 'on'; break; case 'GA3': $data['edd_integration_ga'] = 'on'; break; case 'GA4': $data['edd_integration_ga'] = 'on'; break; case 'Snapchat': $data['edd_integration_snapchat'] = 'on'; break; case 'Pinterest': $data['edd_integration_pinterest'] = 'on'; break; case 'TikTok': $data['edd_integration_tiktok'] = 'on'; break; case 'Reddit': $data['edd_integration_reddit'] = 'on'; break; } } } } //TOGGLE OFF INTEGRATION IF NO PIXEL IS SET if( !in_array( 'Facebook Pixel', $new_pixels_types, true ) && !in_array( 'Conversions API', $new_pixels_types, true ) ) { $data['woo_integration'] = ''; $data['edd_integration'] = ''; } if( !in_array( 'Adwords', $new_pixels_types, true ) && !in_array( 'GA4', $new_pixels_types, true ) && !in_array( 'GA3', $new_pixels_types, true ) ) { $data['woo_integration_ga'] = ''; $data['edd_integration_ga'] = ''; } if( !in_array( 'Snapchat', $new_pixels_types, true ) ) { $data['woo_integration_snapchat'] = ''; $data['edd_integration_snapchat'] = ''; } if( !in_array( 'Pinterest', $new_pixels_types, true ) ) { $data['woo_integration_pinterest'] = ''; $data['edd_integration_pinterest'] = ''; } if( !in_array( 'TikTok', $new_pixels_types, true ) ) { $data['woo_integration_tiktok'] = ''; $data['edd_integration_tiktok'] = ''; } if( !in_array( 'Reddit', $new_pixels_types, true ) ) { $data['woo_integration_reddit'] = ''; $data['edd_integration_reddit'] = ''; } return $data; } function fca_pc_capis_available( $options ) { $pixels = fca_pc_parse_pixels( $options ); $capis = []; forEach ( $pixels as $pixel ) { if( !empty( $pixel['capi'] ) ) { $capis[ $pixel['type'] ] = true; } } return $capis; } function fca_pc_add_settings_table( $options ) { $amp_on = empty( $options['amp_integration'] ) ? '' : 'on'; $user_parameters_on = empty( $options['user_parameters'] ) ? '' : 'on'; $utm_support_on = empty( $options['utm_support'] ) ? '' : 'on'; $search_integration_on = empty( $options['search_integration'] ) ? '' : 'on'; $conversions_api = empty ( $options['conversions_api'] ) ? false : true; $advanced_matching = empty ( $options['advanced_matching'] ) ? false : true; $exclude = empty ( $options['exclude'] ) ? array() : $options['exclude']; $cpt_support = empty ( $options['cpt_support'] ) ? array() : $options['cpt_support']; $custom_post_types = get_post_types(); unset( $custom_post_types['post'] ); unset( $custom_post_types['page'] ); $role_options = array(); forEach ( get_editable_roles() as $role ) { $role_name = esc_attr( $role['name'] ); $role_options[ $role_name ] = $role_name; } $qc_active = ( is_plugin_active( 'quiz-cat/quizcat.php' ) OR is_plugin_active( 'quiz-cat-premium/quizcat.php' ) OR is_plugin_active( 'quiz-cat-wp/quizcat.php' ) ); $lpc_active = ( is_plugin_active( 'landing-page-cat/landing-page-cat.php' ) OR is_plugin_active( 'landing-page-cat-premium/landing-page-cat.php' ) OR is_plugin_active( 'landing-page-cat-wp/landing-page-cat.php' ) ); $eoi_active = class_exists( 'DhEasyOptIns' ); $ept_active = fca_pc_is_edd_active(); $quizcat_integration_on = empty( $options['quizcat_integration'] ) ? '' : 'on'; $optincat_integration_on = empty( $options['optincat_integration'] ) ? '' : 'on'; $landingpagecat_integration_on = empty( $options['landingpagecat_integration'] ) ? '' : 'on'; $ept_integration_on = empty( $options['ept_integration'] ) ? '' : 'on'; $video_events_on = empty( $options['video_events'] ) ? '' : 'on'; ob_start(); ?> <div id="fca_pc_settings"> <table class='fca_pc_setting_table fca_pc_integrations_table'> <h3><?php esc_attr_e( 'General Settings', 'facebook-conversion-pixel' ) ?></h3> <tr> <th><?php esc_attr_e( 'Exclude Users', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_select_multiple( 'exclude', $exclude, $role_options ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Logged in users selected above will not trigger your pixel.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'Custom Post Type Support', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_select_multiple( 'cpt_support', $cpt_support, $custom_post_types, "id='fca-pc-cpt_support'" ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Select Custom Post Type support to allow adding events to specfied custom post types such as a Media item, WooCommerce Product or something else.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'Additional user information', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'user_parameters', '', $user_parameters_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Send HTTP referrer, user language, post categories and tags as event parameters, so you can create better custom audiences.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'UTM Tag support', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'utm_support', '', $utm_support_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Send Google UTM source, medium, campaign, term, and content as event parameters, so you can target your visitors based on Google Analytics data.", 'facebook-conversion-pixel' ) ?></span></td> </tr> </table> <h3><?php esc_attr_e( 'Facebook Settings', 'facebook-conversion-pixel' ) ?></h3> <table class='fca_pc_setting_table fca_pc_integrations_table'> <tr> <th><?php echo esc_attr( 'Advanced Matching', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?> </th> <td><?php echo fca_pc_input( 'advanced_matching', '', $advanced_matching, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Enable Advanced Matching for all events. According to Facebook, advertisers using advanced matching can expect a 10% increase in attributed conversions and 20% increase in reach.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php esc_attr_e( 'WordPress Search Event', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_input( 'search_integration', '', $search_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Trigger the Search event when a search is performed using WordPress' built-in search feature.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'AMP support', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'amp_integration', '', $amp_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Make sure your pixel fires on AMP pages.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <?php if ( $ept_active ) { ?> <th> <?php esc_attr_e( 'Easy Pricing Tables', 'facebook-conversion-pixel' ) ?> <p class='installed-text installed'><span class="dashicons dashicons-yes"></span><?php esc_attr_e( 'Installed', 'facebook-conversion-pixel' ) ?></p> </th> <td> <?php echo fca_pc_input( 'ept_integration', '', $ept_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Send InitiateCheckout event to Facebook.", 'facebook-conversion-pixel' ) ?> <a target='_blank' href='https://fatcatapps.com/knowledge-base/pixel-cat-integrations/'><?php esc_attr_e( 'Learn More...', 'facebook-conversion-pixel' ) ?></a></span> </td> <?php } else { ?> <th class='fca-pc-integration-disabled'> <?php esc_attr_e( 'Easy Pricing Tables', 'facebook-conversion-pixel' ) ?> <p class='installed-text'><span class="dashicons dashicons-no"></span><?php esc_attr_e( 'Not Installed', 'facebook-conversion-pixel' ) ?></p> </th> <td> <?php echo fca_pc_input( 'ept_integration', '', false, 'checkbox', 'disabled' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Create beautiful pricing comparison tables that increase your sales.", 'facebook-conversion-pixel' ) ?> <a target='_blank' href='https://fatcatapps.com/easypricingtables/'><?php esc_attr_e( 'Learn more here', 'facebook-conversion-pixel' ) ?></a>.</span> </td> <?php } ?> </tr> <?php if ( $eoi_active ) { ?> <tr> <th> <?php esc_attr_e( 'Optin Cat', 'facebook-conversion-pixel' ) ?> <p class='installed-text installed'><span class="dashicons dashicons-yes"></span><?php esc_attr_e( 'Installed', 'facebook-conversion-pixel' ) ?></p> </th> <td> <?php echo fca_pc_input( 'optincat_integration', '', $optincat_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Send Lead event to Facebook.", 'facebook-conversion-pixel' ) ?> <a target='_blank' href='https://fatcatapps.com/knowledge-base/pixel-cat-integrations/'><?php esc_attr_e( 'Learn More...', 'facebook-conversion-pixel' ) ?></a></span> </td> </tr> <?php } ?> <tr> <?php if ( $qc_active ) { ?> <th> <?php esc_attr_e( 'Quiz Cat', 'facebook-conversion-pixel' ) ?> <p class='installed-text installed'><span class="dashicons dashicons-yes"></span><?php esc_attr_e( 'Installed', 'facebook-conversion-pixel' ) ?></p> </th> <td> <?php echo fca_pc_input( 'quizcat_integration', '', $quizcat_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Send Lead event, plus custom events related to Quiz engagement to Facebook.", 'facebook-conversion-pixel' ) ?> <a target='_blank' href='https://fatcatapps.com/knowledge-base/pixel-cat-integrations/'><?php esc_attr_e( 'Learn More...', 'facebook-conversion-pixel' ) ?></a></span> </td> <?php } else { ?> <th class='fca-pc-integration-disabled'> <?php esc_attr_e( 'Quiz Cat', 'facebook-conversion-pixel' ) ?> <p class='installed-text'><span class="dashicons dashicons-no"></span><?php esc_attr_e( 'Not Installed', 'facebook-conversion-pixel' ) ?></p> </th> <td> <?php echo fca_pc_input( 'quizcat_integration', '', false, 'checkbox', 'disabled' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Quiz Cat lets you create beautiful quizzes that boost social shares and grow your email list.", 'facebook-conversion-pixel' ) ?> <a target='_blank' href='https://fatcatapps.com/quizcat/'><?php esc_attr_e( 'Learn more here', 'facebook-conversion-pixel' ) ?></a>.</span> </td> <?php } ?> </tr> <?php if ( $lpc_active ) { ?> <tr> <th> <?php esc_attr_e( 'Landing Page Cat', 'facebook-conversion-pixel' ) ?> <p class='installed-text installed'><span class="dashicons dashicons-yes"></span><?php esc_attr_e( 'Installed', 'facebook-conversion-pixel' ) ?></p> </th> <td> <?php echo fca_pc_input( 'landingpagecat_integration', '', $landingpagecat_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Send Lead event to Facebook.", 'facebook-conversion-pixel' ) ?> <a target='_blank' href='https://fatcatapps.com/knowledge-base/pixel-cat-integrations/'><?php esc_attr_e( 'Learn More...', 'facebook-conversion-pixel' ) ?></a></span> </td> </tr> <?php } ?> <tr> <th> <?php echo esc_attr( 'Video Events', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?> </th> <td> <?php echo fca_pc_input( 'video_events', '', $video_events_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Enable Video Events feature.", 'facebook-conversion-pixel' ) ?></span> </td> </tr> </table> </div> <?php return ob_get_clean(); } function fca_pc_add_e_commerce_integrations( $options ) { ob_start(); ?> <div id="fca-pc-e-commerce"> <?php echo fca_pc_add_woo_integrations( $options ); echo fca_pc_add_edd_integrations( $options ); ?> </div> <?php return ob_get_clean(); } function fca_pc_add_woo_integrations( $options ) { $woo_active = fca_pc_is_woo_active(); $woo_integration_on = empty( $options['woo_integration'] ) ? '' : 'on'; $woo_ga_integration_on = empty( $options['woo_integration_ga'] ) ? '' : 'on'; $woo_pinterest_integration_on = empty( $options['woo_integration_pinterest'] ) ? '' : 'on'; $woo_snapchat_integration_on = empty( $options['woo_integration_snapchat'] ) ? '' : 'on'; $woo_tiktok_integration_on = empty( $options['woo_integration_tiktok'] ) ? '' : 'on'; $woo_reddit_integration_on = empty( $options['woo_integration_reddit'] ) ? '' : 'on'; $woo_extra_params = empty( $options['woo_extra_params'] ) ? '' : 'on'; $woo_order_cookie = empty( $options['woo_order_cookie'] ) ? '' : 'on'; $woo_delay = empty( $options['woo_delay'] ) ? 0 : intVal($options['woo_delay']); $woo_feed_on = empty( $options['woo_feed'] ) ? '' : 'on'; $woo_include_variations = isset( $options['woo_variations'] ) ? $options['woo_variations'] : 'on'; $woo_id_mode = empty( $options['woo_product_id'] ) ? 'post_id' : $options['woo_product_id']; $id_options = array( 'post_id' => 'WordPress Post ID (recommended)', 'sku' => 'WooCommerce SKU', ); $woo_desc_mode = empty( $options['woo_desc_mode'] ) ? 'description' : $options['woo_desc_mode']; $description_options = array( 'description' => 'Product Content', 'short' => 'Product Short Description', ); $excluded_categories = empty( $options['woo_excluded_categories'] ) ? array() : $options['woo_excluded_categories']; $categories = fca_pc_woo_product_cat_and_tags(); $google_product_category = empty( $options['google_product_category'] ) ? '' : $options['google_product_category']; ob_start(); ?> <div id='fca-pc-woo-table'> <?php if ( !$woo_active ) { ?> <h3> <?php esc_attr_e( 'WooCommerce', 'facebook-conversion-pixel' ) ?> <span class="installed-text"><span alt="f158" class="dashicons dashicons-no-alt"></span><?php esc_attr_e( 'Not Installed', 'facebook-conversion-pixel' ) ?></span> </h3> <p><?php esc_attr_e( 'Plugin not detected. To use this integration, please install Woocommerce v3.0 or greater.', 'facebook-conversion-pixel' ) ?></p> <?php } else { ?> <h3> <?php esc_attr_e( 'WooCommerce Integration', 'facebook-conversion-pixel' ) ?> <span class="installed-text installed"><div alt="f147" class="dashicons dashicons-yes"></div><?php esc_attr_e( 'Installed', 'facebook-conversion-pixel' ) ?></span> </h3> <p><?php esc_attr_e( 'Automatically send WooCommerce events: Add To Cart, Add Payment Info, Purchase, View Content, Search, and Add to Wishlist.', 'facebook-conversion-pixel' ) ?></p> <table class='fca_pc_integrations_table'> <tr> <th><?php esc_attr_e('WooCommerce Events for Facebook Pixel', 'facebook-conversion-pixel') ?></th> <td><?php echo fca_pc_input( 'woo_integration', '', $woo_integration_on, 'checkbox' ) ?> </tr> <tr> <th><?php esc_attr_e('WooCommerce Events for Google Analytics', 'facebook-conversion-pixel') ?></th> <td><?php echo fca_pc_input( 'woo_integration_ga', '', $woo_ga_integration_on, 'checkbox' ) ?> </tr> <tr> <th><?php echo esc_attr('WooCommerce Events for Pinterest', 'facebook-conversion-pixel') . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'woo_integration_pinterest', '', $woo_pinterest_integration_on, 'checkbox' ) ?> </tr> <tr> <th><?php echo esc_attr('WooCommerce Events for Snapchat', 'facebook-conversion-pixel') . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'woo_integration_snapchat', '', $woo_snapchat_integration_on, 'checkbox' ) ?> </tr> <tr> <th><?php echo esc_attr('WooCommerce Events for TikTok', 'facebook-conversion-pixel') . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'woo_integration_tiktok', '', $woo_tiktok_integration_on, 'checkbox' ) ?> </tr> <tr> <th><?php echo esc_attr('WooCommerce Events for Reddit', 'facebook-conversion-pixel') . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'woo_integration_reddit', '', $woo_reddit_integration_on, 'checkbox' ) ?> </tr> <tr> <th><?php echo esc_attr( 'Delay ViewContent Event', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'woo_delay', '', $woo_delay, 'number', "min='0' max='100' step='1'" ) ?>seconds<br> <span class='fca_pc_hint'><?php esc_attr_e("Exclude bouncing visitors by delaying the ViewContent event on product pages.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'Send Extra Info with Purchase Event', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'woo_extra_params', '', $woo_extra_params, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Sends LTV (lifetime value), coupon codes (if used) and shipping info as parameters of your purchase event, so you can build better, more targeted custom audiences.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'Prevent Duplicate Purchase Events', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'woo_order_cookie', '', $woo_order_cookie, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Sets a cookie to track whether a Purchase event for a given order ID has already been triggered. Helps prevent duplicate events if users refresh the page or visit again later.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php esc_attr_e( 'Product Feed', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_input( 'woo_feed', '', $woo_feed_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("A Product Feed is required to use Facebook Dynamic Product Ads.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr class='fca-pc-woo-feed-settings'> <th><?php esc_attr_e( 'Include Variations', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_input( 'woo_variations', '', $woo_include_variations, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Having a lot of product variations can cause load issues with your feed, disable to exclude variations from the feed.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr class='fca-pc-woo-feed-settings'> <th><?php esc_attr_e( 'Feed URL', 'facebook-conversion-pixel' ) ?></th> <td><input style='height: 35px;' type='text' onclick='this.select()' readonly value='<?php echo get_site_url() . '?feed=pixelcat' ?>' > <span class='fca_pc_hint'><?php esc_attr_e("You'll need above URL when setting up your Facebook Product Catalog.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr class='fca-pc-woo-feed-settings'> <th><?php esc_attr_e( 'Exclude Categories/Tags', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_select_multiple( 'woo_excluded_categories', $excluded_categories, $categories ); ?> <span class='fca_pc_hint'><?php esc_attr_e("Selected product categories and tags will not be included in your feed.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr class='fca-pc-woo-feed-settings'> <th><?php esc_attr_e( 'Advanced Feed Settings', 'facebook-conversion-pixel' ) ?></th> <td><?php echo '<span id="fca-pc-show-feed-settings" class="fca-pc-feed-toggle">' . esc_attr__( '(show)', 'facebook-conversion-pixel' ) . '</span><span style="display: none;" id="fca-pc-hide-feed-settings" class="fca-pc-feed-toggle">' . esc_attr__( '(hide)', 'facebook-conversion-pixel' ) . '</span>' ?></td> </tr> <tr class='fca-pc-woo-feed-settings fca-pc-woo-advanced-feed-settings' style='display:none;'> <th><?php esc_attr_e( 'Product Identifier', 'facebook-conversion-pixel' ) ?></th> <td> <?php echo fca_pc_select( 'woo_product_id', $woo_id_mode, $id_options ); ?> <span class='fca_pc_hint'><?php esc_attr_e("Set how to identify your product using the Facebook Pixel (content_id) and the feed (g:id). Please make sure to have SKUs set on your products if you choose WooCommerce SKU.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr class='fca-pc-woo-feed-settings fca-pc-woo-advanced-feed-settings' style='display:none;'> <th><?php esc_attr_e( 'Description Field', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_select( 'woo_desc_mode', $woo_desc_mode, $description_options ); ?> <span class='fca_pc_hint'><?php esc_attr_e("Set the field to use as your product description for the Facebook product catalog", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr class='fca-pc-woo-feed-settings fca-pc-woo-advanced-feed-settings' style='display:none;'> <th><?php esc_attr_e( 'Google Product Category', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_input( 'google_product_category', 'e.g. 2271', $google_product_category, 'number' ) ?> <span class='fca_pc_google_hint'><?php echo esc_attr__("Enter your numeric Google Product Category ID here. If your category is \"Apparel & Accessories > Clothing > Dresses\", enter 2271. ", 'facebook-conversion-pixel' ) . '<a href="http://www.google.com/basepages/producttype/taxonomy-with-ids.en-US.xls" target="_blank">' . esc_attr__("Click here", 'facebook-conversion-pixel' ) . '</a> ' . esc_attr__("for a current spreadsheet of all Categories & IDs.", 'facebook-conversion-pixel' ) ?></span></td> </tr> </table> <?php } ?> </div> <?php return ob_get_clean(); } function fca_pc_add_edd_integrations( $options ) { $edd_active = fca_pc_is_edd_active(); $edd_integration_on = empty( $options['edd_integration'] ) ? '' : 'on'; $edd_ga_integration_on = empty( $options['edd_integration_ga'] ) ? '' : 'on'; $edd_pinterest_integration_on = empty( $options['edd_integration_pinterest'] ) ? '' : 'on'; $edd_snapchat_integration_on = empty( $options['edd_integration_snapchat'] ) ? '' : 'on'; $edd_tiktok_integration_on = empty( $options['edd_integration_tiktok'] ) ? '' : 'on'; $edd_reddit_integration_on = empty( $options['edd_integration_reddit'] ) ? '' : 'on'; $edd_extra_params = empty( $options['edd_extra_params'] ) ? '' : 'on'; $edd_delay = empty( $options['edd_delay'] ) ? 0 : intVal($options['edd_delay']); $edd_feed_on = empty( $options['edd_feed'] ) ? '' : 'on'; $edd_desc_mode = empty( $options['edd_desc_mode'] ) ? 'content' : $options['edd_desc_mode']; $description_options = array( 'content' => 'Product Description', 'excerpt' => 'Excerpt', ); $excluded_categories = empty( $options['edd_excluded_categories'] ) ? array() : $options['edd_excluded_categories']; $categories = fca_pc_edd_product_cat_and_tags(); ob_start(); ?> <div id='fca-pc-edd-table'> <?php if ( !$edd_active ) { ?> <h3> <?php esc_attr_e( 'Easy Digital Downloads Integration', 'facebook-conversion-pixel' ) ?> <span class="installed-text"><span alt="f158" class="dashicons dashicons-no-alt"></span><?php esc_attr_e( 'Not Installed', 'facebook-conversion-pixel' ) ?></span> </h3> <p><?php esc_attr_e( 'Plugin not detected. To use this integration, please install Easy Digital Downloads v2.8 or greater.', 'facebook-conversion-pixel' ) ?></p> <?php } else { ?> <h3> <?php esc_attr_e( 'Easy Digital Downloads Integration', 'facebook-conversion-pixel' ) ?> <span class="installed-text installed"><div alt="f147" class="dashicons dashicons-yes"></div><?php esc_attr_e( 'Installed', 'facebook-conversion-pixel' ) ?></span> </h3> <table class='fca_pc_integrations_table'> <tr> <th><?php esc_attr_e( 'Track EDD Events with Facebook Pixel', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_input( 'edd_integration', '', $edd_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Automatically send the following Easy Digital Downloads events to Facebook: Add To Cart, Add Payment Info, Purchase, View Content, Search, and Add to Wishlist.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php esc_attr_e( 'Track EDD Events with Google Analytics', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_input( 'edd_integration_ga', '', $edd_ga_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Automatically send the following Easy Digital Downloads events to Google Analytics: Add To Cart, Add Payment Info, Purchase, View Content, and Add to Wishlist.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'Track EDD Events with Pinterest', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'edd_integration_pinterest', '', $edd_pinterest_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Automatically send the following Easy Digital Downloads events to Pinterest: Add To Cart, Purchase, and View Content.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'Track EDD Events with Snapchat', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'edd_integration_snapchat', '', $edd_snapchat_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Automatically send the following Easy Digital Downloads events to Snapchat: Add To Cart, Purchase, and View Content", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'Track EDD Events with TikTok', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'edd_integration_tiktok', '', $edd_tiktok_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Automatically send the following Easy Digital Downloads events to TikTok: Add To Cart, Add Payment Info, Purchase, View Content, Search, and Add to Wishlist.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'Track EDD Events with Reddit', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'edd_integration_reddit', '', $edd_reddit_integration_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Automatically send the following Easy Digital Downloads events to Reddit: Add To Cart, Add Payment Info, Purchase, View Content, Search, and Add to Wishlist.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'Delay ViewContent Event', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'edd_delay', '', $edd_delay, 'number', "min='0' max='100' step='1'" ) ?>seconds<br> <span class='fca_pc_hint'><?php esc_attr_e("Exclude bouncing visitors by delaying the ViewContent event on download pages.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php echo esc_attr( 'Send Extra Info with Purchase Event', 'facebook-conversion-pixel' ) . fca_sp_premium_only_link() ?></th> <td><?php echo fca_pc_input( 'edd_extra_params', '', $edd_extra_params, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("Sends LTV (lifetime value), coupon codes (if used) and shipping info as parameters of your purchase event, so you can build better, more targeted custom audiences.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr> <th><?php esc_attr_e( 'Product Feed', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_input( 'edd_feed', '', $edd_feed_on, 'checkbox' ) ?> <span class='fca_pc_hint'><?php esc_attr_e("A Product Feed is required to use Facebook Dynamic Product Ads.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr class='fca-pc-edd-feed-settings'> <th><?php esc_attr_e( 'Feed URL', 'facebook-conversion-pixel' ) ?></th> <td><input style='height: 35px;' type='text' onclick='this.select()' readonly value='<?php echo get_site_url() . '?feed=edd-pixelcat' ?>' > <span class='fca_pc_hint'><?php esc_attr_e("You'll need above URL when setting up your Facebook Product Catalog.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr class='fca-pc-edd-feed-settings'> <th><?php esc_attr_e( 'Exclude Categories/Tags', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_select_multiple( 'edd_excluded_categories', $excluded_categories, $categories ); ?> <span class='fca_pc_hint'><?php esc_attr_e("Selected product categories and tags will not be included in your feed.", 'facebook-conversion-pixel' ) ?></span></td> </tr> <tr class='fca-pc-edd-feed-settings' style='display:none;'> <th><?php esc_attr_e( 'Description Field', 'facebook-conversion-pixel' ) ?></th> <td><?php echo fca_pc_select( 'edd_desc_mode', $edd_desc_mode, $description_options ); ?> <span class='fca_pc_hint'><?php esc_attr_e("Set the field to use as your product description for the Facebook product catalog", 'facebook-conversion-pixel' ) ?></span></td> </tr> </table> <?php } ?> </div> <?php return ob_get_clean(); } function fca_pc_marketing_metabox() { ob_start(); ?> <div id='fca-pc-marketing-metabox' style='display: none;'> <h3><?php esc_attr_e( 'Get Pixel Cat Premium', 'facebook-conversion-pixel' ); ?></h3> <ul> <li><div class="dashicons dashicons-yes"></div> <?php _e( '1-Click WooCommerce & Easy Digital Downloads integration', 'facebook-conversion-pixel' ); ?></li> <li><div class="dashicons dashicons-yes"></div> <?php esc_attr_e( 'TikTok Pixel', 'facebook-conversion-pixel' ); ?></li> <li><div class="dashicons dashicons-yes"></div> <?php esc_attr_e( 'Pinterest Pixel', 'facebook-conversion-pixel' ); ?></li> <li><div class="dashicons dashicons-yes"></div> <?php esc_attr_e( 'Snapschat Pixel', 'facebook-conversion-pixel' ); ?></li> <li><div class="dashicons dashicons-yes"></div> <?php esc_attr_e( 'Google Ads', 'facebook-conversion-pixel' ); ?></li> <li><div class="dashicons dashicons-yes"></div> <?php esc_attr_e( 'Reddit Pixel', 'facebook-conversion-pixel' ); ?></li> <li><div class="dashicons dashicons-yes"></div> <?php esc_attr_e( 'Trigger events after time delay or if user scrolls', 'facebook-conversion-pixel' ); ?></li> <li><div class="dashicons dashicons-yes"></div> <?php esc_attr_e( 'Boost Meta conversions using Advanced Matching & more', 'facebook-conversion-pixel' ); ?></li> <li><div class="dashicons dashicons-yes"></div> <?php esc_attr_e( 'Exclude Pixel from specific pages (instead of displaying it site-wide)', 'facebook-conversion-pixel' ); ?></li> <li><div class="dashicons dashicons-yes"></div> <?php esc_attr_e( 'Priority Support', 'facebook-conversion-pixel' ); ?></li> <li><div class="dashicons dashicons-yes"></div> <?php esc_attr_e( 'And much more...', 'facebook-conversion-pixel' ); ?></li> </ul> <div style='text-align: center'> <a href="https://fatcatapps.com/pixelcat/premium/?utm_medium=plugin&utm_source=Pixel%20Cat%20Free&utm_campaign=free-plugin" target="_blank" class="button button-primary highlighted"><?php esc_attr_e( 'Learn More >>', 'facebook-conversion-pixel' ); ?></a> </div> </div> <?php return ob_get_clean(); } function fca_sp_premium_only_link() { $url = 'https://fatcatapps.com/pixelcat/premium/?utm_medium=plugin&utm_source=Pixel%20Cat%20Free&utm_campaign=free-plugin'; if( FCA_PC_PLUGIN_PACKAGE !== 'Lite' ) { return; } ob_start(); ?> <p class='fca_pc_premium_info'>(<a target='_blank' href='<?php echo $url ?>'><?php esc_attr_e( 'Premium Only', 'facebook-conversion-pixel' ) ?></a>)</p> <?php return ob_get_clean(); }