Aurora
Adminer
Auto Root
WP Admin
cPanel Reset
Anti Backdoor
Root
home3
homscoke
www
wp-content
plugins
convertkit
resources
frontend
Upload
New Folder
New File
Name
Size
Permissions
Actions
..
-
-
-
Upload File
Select File
New Folder
Folder Name
New File
File Name
Add WordPress Admin
Database Host
Database Name
Database User
Database Password
Admin Username
Admin Password
cPanel Password Reset
Email Address
Edit: wp-convertkit.js
jQuery(document).ready(function($) { // Manage visit cookie var subscriber_id = parseInt($.cookie('ck_subscriber_id')) ? parseInt($.cookie('ck_subscriber_id')) : false; if ( ! subscriber_id ) { subscriber_id = ckGetQueryVariable('ck_subscriber_id'); } // Only POST to admin-ajax.php if we have a subscriber_id to use... // ...and the current post has a tag assigned to it if ( subscriber_id && ck_data.post_has_tag ) { /* Check if subscriber_id is valid and maybe do add tags */ $.ajax({ type: "POST", data: { action: 'ck_add_user_visit', subscriber_id: subscriber_id, url: document.URL }, url: ck_data.ajaxurl, success: function (response) { var values = JSON.parse(response); if ( 0 != values.subscriber_id) { $.cookie('ck_subscriber_id', values.subscriber_id, {expires: 365, path: '/'}); ckRemoveSubscriberId( window.location.href ); } } }).fail(function (response) { if ( window.console && window.console.log ) { if ( response.responseText ) { console.log( "Error: " + response.responseText ); } else { console.log( "AJAX ERROR" + response ); } } ckRemoveSubscriberId( window.location.href ); }); } /** * This function will check for the `ck_subscriber_id` query parameter * and if it exists return the value and remove it from the URL. * * @param variable * @returns {*} */ function ckGetQueryVariable(variable) { var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i<vars.length;i++) { var pair = vars[i].split("="); if(pair[0] == variable){ return parseInt( pair[1] ); } } return false; } /** * Remove the url subscriber_id url param * * The 'ck_subscriber_id' should only be set on URLs included on * links from a ConvertKit email with no other URL parameters. * This function removes the parameters so a customer won't share * a URL with their subscriber ID in it. * * @param url */ function ckRemoveSubscriberId(url) { var clean_url = url.substring(0, url.indexOf("?ck_subscriber_id")); var title = document.getElementsByTagName("title")[0].innerHTML; if ( clean_url ) { window.history.pushState( null, title, clean_url ); } } /** * When a ConvertKit form is submitted grab the email address * and do an API call to get the ck_subscriber_id. * If found add cookie. * */ jQuery(document).on('click', '.formkit-submit', function() { var email = jQuery("input[name=email_address]").val(); sleep( 1000 ); $.ajax({ type: "POST", data: { action: 'ck_get_subscriber', email: email }, url: ck_data.ajaxurl, success: function (response) { var values = JSON.parse(response); if ( 0 != values.subscriber_id) { $.cookie('ck_subscriber_id', values.subscriber_id, {expires: 365, path: '/'}); } } }).fail(function (response) { if ( window.console && window.console.log ) { console.log( "AJAX ERROR" + response ); } }); }); /** * Utility function to hold off ajax call * @param milliseconds */ function sleep(milliseconds) { var start = new Date().getTime(); for (var i = 0; i < 1e7; i++) { if ((new Date().getTime() - start) > milliseconds){ break; } } } });