📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: partLandingPageProtect.tpl
<div class="row"> <div class="col-md-offset-2 col-md-10"> <div class="form-group"> <br/> <div class="form-inline-always"> <div class="input-group cursor-pointer cursor-hover" onclick="displayBlockPlusMinus('lpProtection');"> <span class="form-control bg-color-e">Landing Page Protection</span> <span class="input-group-addon"> <i class="glyphicon glyphicon-plus" id="lpProtectionIcon"></i> </span> </div> </div> </div> </div> </div> <div class="row" id="lpProtectionContainer" style="display: none;"> <div class="col-md-offset-2 col-md-8"> <div class="form-group margin-left-30px"> <label> <div class="div-instruction-clarification margin-left-0"> Use this feature if you want to protect your landing pages from direct access. Your landing pages must be saved as .php. Full details in the <a href="https://doc.cpvlab.pro/landing-page-protection.html" target="_blank">Online Documentation</a>.<br/> Changes to this section will re-create the LP Protection code, so you have to update it in your Landing Pages. </div> </label> </div> <div class="form-horizontal"> <div class="form-group"> <div class="col-md-6 col-md-offset-2 text-weight-bold"> <div style="margin-left:30px"> <label for="chkUseLpProtect" class="cpv-checkbox font-weight-bold"> <input type="checkbox" name="chkUseLpProtect" id="chkUseLpProtect" {if $campaignDetails.LpProtectType != 0}checked="checked"{/if} onchange="ajaxLoadLpProtectCode()"/> <i></i> Use Landing Page Protect </label> </div> </div> </div> <div style="clear:both"></div> <div class="form-group"> <label class="control-label col-sm-2">LP Protect Key</label> <div class="col-md-6"> <input name="txtLpProtectKey" id="txtLpProtectKey" type="text" class="form-control" value="{$campaignDetails.LpProtectKey}" onchange="ajaxLoadLpProtectCode()"/> </div> </div> <div style="clear:both"></div> <div class="form-group"> <label class="control-label col-sm-2">LP Protect Parameter</label> <div class="col-md-6"> <input name="txtLpProtectParameter" id="txtLpProtectParameter" type="text" class="form-control" value="{$campaignDetails.LpProtectParameter}" onchange="ajaxLoadLpProtectCode()"/> </div> </div> <div style="clear:both"></div> <div class="form-group"> <label class="control-label col-sm-2">No-access behavior</label> <div class="col-md-6"> <label for="radLpProtectMessage" class="cpv-radio font-weight-normal"> <input type="radio" name="radLpProtectType" id="radLpProtectMessage" value="1" {if $campaignDetails.LpProtectType == 1 || $campaignDetails.LpProtectType == 0}checked="checked"{/if} onclick="clickLpProtectType(this); ajaxLoadLpProtectCode()"/> <i></i> Display message </label> <label for="radLpProtectRedirect" class="cpv-radio font-weight-normal"> <input type="radio" name="radLpProtectType" id="radLpProtectRedirect" value="2" {if $campaignDetails.LpProtectType == 2}checked="checked"{/if} onclick="clickLpProtectType(this); ajaxLoadLpProtectCode()"/> <i></i> Redirect to URL </label> <label for="radLpProtectPage" class="cpv-radio font-weight-normal"> <input type="radio" name="radLpProtectType" id="radLpProtectPage" value="3" {if $campaignDetails.LpProtectType == 3}checked="checked"{/if} onclick="clickLpProtectType(this); ajaxLoadLpProtectCode()"/> <i></i> Show "white" page </label> </div> </div> <div id="divLpProtectTypeMessage" style="display:{if $campaignDetails.LpProtectType==1 || $campaignDetails.LpProtectType == 0}block{else}none{/if}"> <div class="form-group"> <label class="control-label col-sm-2">No-access message</label> <div class="col-md-6"> <input name="txtLpProtectMessage" id="txtLpProtectMessage" type="text" class="form-control" value="{$campaignDetails.LpProtectMessage}" onchange="ajaxLoadLpProtectCode()"/> </div> </div> </div> <div id="divLpProtectTypeRedirect" style="display:{if $campaignDetails.LpProtectType==2}block{else}none{/if}"> <div class="form-group"> <label class="control-label col-sm-2">No-access redirect URL</label> <div class="col-md-6"> <input name="txtLpProtectRedirect" id="txtLpProtectRedirect" type="text" class="form-control" value="{$campaignDetails.LpProtectRedirect}" onchange="ajaxLoadLpProtectCode()"/> </div> </div> </div> <div id="divLpProtectTypeWhitePage" style="display:{if $campaignDetails.LpProtectType==3}block{else}none{/if}"> <div class="form-group"> <label class="control-label col-sm-8">Use the white page template below and customize it to look as you wish</label> </div> </div> </div> <div class="form-group col-md-offset-1 col-md-10"> <label>LP Protect Code (place it at the beginning of your LP)</label> <div class="input-group"> <textarea name="txtLpProtectCode" id="txtLpProtectCode" rows="10" class="form-control"></textarea> {include file="partCopyClipboard.tpl"} </div> </div> </div> </div> {if $campaignDetails.LpProtectType!=0}<script>displayBlockPlusMinus('lpProtection'); ajaxLoadLpProtectCode();</script>{/if}
Save