| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) |
| 3 |
exit; |
| 4 |
if(get_option('xyz_ips_premium_version_ads')==1){ ?> |
| 5 |
<div id="xyz-ips-premium"> |
| 6 |
|
| 7 |
<div class="xyz_ips_ContentCenter"> |
| 8 |
<a target="_blank" |
| 9 |
href="https://xyzscripts.com/wordpress-plugins/xyz-wp-insert-code-snippet/details">🚀 Upgrade to the Fully Featured XYZ WP Insert Code Snippet Premium Plugin for </a> |
| 10 |
<span style="font-size: 28px; color:#fbff00;"> Just 19 USD</span> |
| 11 |
<br/><span style="font-size: 13px;color:#fff;">Access exclusive features like advanced targeting, automatic snippet placements across your site, syntax highlighting for better code management, and easy snippet export/import!</span> |
| 12 |
</div> |
| 13 |
<div class="clear"></div> |
| 14 |
<div class="xyz_ips_ButtonWrap"> |
| 15 |
<div class="xyz_ips_BuyNowButton"> |
| 16 |
<a target="_blank" |
| 17 |
href="https://xyzscripts.com/members/product/purchase/XYZWPICSPRE">🛒 Buy Now |
| 18 |
</a> |
| 19 |
</div> |
| 20 |
<div class="xyz_ips_CompareButton"> |
| 21 |
<h2> |
| 22 |
<a href="<?php echo admin_url('admin.php?page=insert-php-code-snippet-about');?>">🔗 Compare Specs</a> |
| 23 |
</h2> |
| 24 |
</div> |
| 25 |
</div> |
| 26 |
</div> |
| 27 |
<?php |
| 28 |
} |
| 29 |
?> |
| 30 |
<div style="clear: both;"> |
| 31 |
</div> |
| 32 |
<div class="xyz-ips-wrap"> |
| 33 |
<div class="xyz-ips-footer-contact"> |
| 34 |
🚀 <span style="font-style: italic;font-size:larger;">We are available for custom development</span> — |
| 35 |
<a href="https://xyzscripts.com/support/" target="_blank"> |
| 36 |
Get a quote |
| 37 |
</a> |
| 38 |
</div></div> |
| 39 |
<div class="xyz-ips-wrap"> |
| 40 |
<div class="xyz_ips_social_media"> |
| 41 |
<h3 class="xyz_ips_inner_head"> |
| 42 |
Follow Us |
| 43 |
</h3> |
| 44 |
<a target="_blank" href="http://facebook.com/xyzscripts" class="xyz_ips_home_fbook"></a> |
| 45 |
<a target="_blank" href="http://twitter.com/xyzscripts" class="xyz_ips_home_twitt"></a> |
| 46 |
<a target="_blank" href="https://www.instagram.com/xyz_scripts/" class="xyz_ips_home_insta"></a> |
| 47 |
<a style="margin-right:0px;" target="_blank" href="https://www.linkedin.com/company/xyzscripts" class="xyz_ips_home_linkedin"></a> |
| 48 |
</div> |
| 49 |
<div class="xyz_ips_sugession"> |
| 50 |
<h3 class="xyz_ips_inner_head"> Support</h3> |
| 51 |
|
| 52 |
<p style="width:100%;"><a target="_blank" href="https://xyzscripts.com/support/" >Contact Us</a></p> |
| 53 |
<p ><a target="_blank" href="https://wordpress.org/support/plugin/insert-php-code-snippet/reviews/" >Please Rate Us |
| 54 |
</a></p> |
| 55 |
<a target="_blank" href="https://wordpress.org/support/plugin/insert-php-code-snippet/reviews/" ><span class="xyz_ips_new_star"></span></a> |
| 56 |
<p style="width:100%;"><a target="_blank" href="https://wordpress.org/support/plugin/insert-php-code-snippet/" >Create a ticket at Wordpress forum</a> |
| 57 |
</p> |
| 58 |
</div> |
| 59 |
<div class="xyz_ips_new_subscribe"> |
| 60 |
<h3 class="xyz_ips_inner_head"> |
| 61 |
Stay tuned for our updates |
| 62 |
</h3> |
| 63 |
<script language="javascript"> |
| 64 |
function check_email(emailString) |
| 65 |
{ |
| 66 |
var mailPattern = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,})$/; |
| 67 |
var matchArray = emailString.match(mailPattern); |
| 68 |
if (emailString.length == 0) |
| 69 |
return false; |
| 70 |
if (matchArray == null) { |
| 71 |
return false; |
| 72 |
}else{ |
| 73 |
return true; |
| 74 |
} |
| 75 |
} |
| 76 |
function verify_lists(form) |
| 77 |
{ |
| 78 |
var total=0; |
| 79 |
var checkBox=form['chk[]']; |
| 80 |
if(checkBox.length){ |
| 81 |
for(var i=0;i<checkBox.length;i++){ |
| 82 |
checkBox[i].checked?total++:null; |
| 83 |
} |
| 84 |
} |
| 85 |
else{ |
| 86 |
checkBox.checked?total++:null; |
| 87 |
} |
| 88 |
if(total>0){ |
| 89 |
return true; |
| 90 |
} |
| 91 |
else{ |
| 92 |
return false; |
| 93 |
} |
| 94 |
} |
| 95 |
function verify_fields() |
| 96 |
{ |
| 97 |
if(check_email(document.email_subscription.email.value) == false){ |
| 98 |
alert("Please check whether the email is correct."); |
| 99 |
document.email_subscription.email.select(); |
| 100 |
return false; |
| 101 |
} |
| 102 |
else if(verify_lists(document.email_subscription)==false){ |
| 103 |
alert("Select atleast one list."); |
| 104 |
} |
| 105 |
else{ |
| 106 |
document.email_subscription.submit(); |
| 107 |
} |
| 108 |
} |
| 109 |
</script> |
| 110 |
<?php global $current_user; wp_get_current_user();?> |
| 111 |
<form action="https://xyzscripts.com/newsletter/index.php?page=list/subscribe" method="post" name="email_subscription" id="email_subscription" target="_blank"> |
| 112 |
<input type="hidden" name="fieldNameIds" value="1,"> |
| 113 |
<input type="hidden" name="redirActive" value="http://xyzscripts.com/subscription/pending/XYZWPIPSFRE"> |
| 114 |
<input type="hidden" name="redirPending" value="http://xyzscripts.com/subscription/active/XYZWPIPSFRE"> |
| 115 |
<input type="hidden" name="mode" value="1"> |
| 116 |
|
| 117 |
<input class="xyz_ips_name" type="text" placeholder="Name" name="field1" value="<?php |
| 118 |
if ($current_user->user_firstname != "" || $current_user->user_lastname != "") |
| 119 |
{ |
| 120 |
echo esc_html($current_user->user_firstname . " " . $current_user->user_lastname); |
| 121 |
} |
| 122 |
else if (strcasecmp($current_user->display_name, 'admin')!=0 && strcasecmp($current_user->display_name , "administrator")!=0 ) |
| 123 |
{ |
| 124 |
echo esc_html($current_user->display_name); |
| 125 |
} |
| 126 |
else if (strcasecmp($current_user->user_login ,"admin")!=0 && strcasecmp($current_user->user_login , "administrator")!=0 ) |
| 127 |
{ |
| 128 |
echo esc_html($current_user->user_login); |
| 129 |
} |
| 130 |
?>" > |
| 131 |
|
| 132 |
<input class="xyz_ips_email" name="email" |
| 133 |
type="text" placeholder="Email" value="<?php echo esc_html($current_user->user_email); ?>" /> |
| 134 |
|
| 135 |
<input id="xyz_ips_submit_ips_btn" type="submit" class="xyz_ips_sbmt_btn" value="Subscribe" name="Submit" onclick="javascript: if(!verify_fields()) return false; " /> |
| 136 |
|
| 137 |
<input type="hidden" name="listName" value="6,1,"/> |
| 138 |
</form> |
| 139 |
</div> |
| 140 |
|
| 141 |
</div> |
| 142 |
<div style="clear: both;"> |
| 143 |
</div> |
| 144 |
<div style="width: 100%"> |
| 145 |
<div class="xyz_ips_our_plugins_new"> |
| 146 |
<p class="xyz_ips_plugin_head"> |
| 147 |
Our Plugins : |
| 148 |
</p> |
| 149 |
<a target="_blank" href="https://wordpress.org/plugins/social-media-auto-publish/"><span>1</span>Social Media Auto Publish</a> |
| 150 |
<a target="_blank" href="https://wordpress.org/plugins/facebook-auto-publish/"><span>2</span>Facebook Auto Publish</a> |
| 151 |
<a target="_blank" href="https://wordpress.org/plugins/twitter-auto-publish/"><span>3</span>Twitter Auto Publish</a> |
| 152 |
<a target="_blank" href="https://wordpress.org/plugins/linkedin-auto-publish/"><span>4</span>LinkedIn Auto Publish</a> |
| 153 |
<a target="_blank" href="https://wordpress.org/plugins/insert-html-snippet/"><span>5</span>Insert HTML Snippet</a> |
| 154 |
<a target="_blank" href="https://wordpress.org/plugins/insert-php-code-snippet/"><span>6</span>Insert PHP Code Snippet</a> |
| 155 |
<a target="_blank" href="https://wordpress.org/plugins/contact-form-manager/"><span>7</span>Contact Form Manager</a> |
| 156 |
<a target="_blank" href="https://wordpress.org/plugins/newsletter-manager/"><span>8</span>Newsletter Manager</a> |
| 157 |
<a target="_blank" href="https://wordpress.org/plugins/lightbox-pop/"><span>9</span>Lightbox Pop</a> |
| 158 |
<a target="_blank" href="https://wordpress.org/plugins/full-screen-popup/"><span>10</span>Full Screen Popup</a> |
| 159 |
<a target="_blank" href="https://wordpress.org/plugins/popup-dialog-box/"><span>11</span>Popup Dialog Box</a> |
| 160 |
<a target="_blank" href="https://wordpress.org/plugins/quick-bar/"><span>12</span>Quick Bar</a> |
| 161 |
<a target="_blank" href="https://wordpress.org/plugins/quick-box-popup/"><span>13</span>Quick Box Popup</a> |
| 162 |
<a target="_blank" href="https://wordpress.org/plugins/custom-field-manager/"><span>14</span> Custom Field Manager</a> |
| 163 |
<a target="_blank" href="https://wordpress.org/plugins/wp-filter-posts/"><span>15</span> WP Filter Posts</a> |
| 164 |
<a target="_blank" href="https://wordpress.org/plugins/wp-gallery-manager/"><span>16</span> WP Gallery Manager</a> |
| 165 |
</div> |
| 166 |
</div> |
| 167 |
<div class="xyz_ips_poweredBy"> |
| 168 |
Powered by |
| 169 |
<a href="http://xyzscripts.com" target="_blank">XYZScripts</a> |
| 170 |
</div> |
| 171 |
<div style="clear: both;"></div> |
| 172 |
<p style="clear: both;"></p> |
| 173 |
|