This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div v-frag> | |
<slot /> | |
<v-dialog | |
v-model="isOpen" | |
:max-width="options.width" | |
:persistent="options.persistent" | |
> | |
<v-card> | |
<v-card-title>{{ title }}</v-card-title> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! defined( 'ABSPATH' ) ) exit; | |
class WordPress_Plugin_Template_Settings { | |
private $dir; | |
private $file; | |
private $assets_dir; | |
private $assets_url; | |
private $settings_base; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
/** | |
* Everwebinar x Deadline Funnel | |
* Checks for the Everwebinar Product Offers Popup (Settings >> Live >> Product Offers) and adds the email from the attendee to the URL. | |
* If no email is present it will default to the sales link set in the Product Offers setting. | |
* Ideally the link you set in the Product Offers setting is the DLF link without the ?em= query string in the URL. | |
* As confirmed by the DLF team, this will create a new tracking for that user. However, if that user clicks on an email later on, those 2 trackings will be merged into one. | |
* | |
* Author: Chris Jayden - chrisjayden.com | |
**/ |