Skip to content Skip to sidebar Skip to footer

How To Create A Subs To Unlock Page

 


Subs to Unlock


How to Create a Subs to Unlock Page . Providing a subscribe to unlock page can be a way to gather interested subscribers or users. However, it is important to remember that this approach must be done ethically and in compliance with the privacy laws and terms of service of the platform you are using. Here are some general steps you can consider:


Determine Platform and Content:

Select the platform where you will share your subscription content and specify the type of content you want to protect or make available after a subscriber subscribes.


Create Payment Account

You need to have a way to accept payments from customers. Signing up with a payment service provider like Stripe, PayPal, or another payment platform can be a solution.


Integrate Payment Systems

Integrate your chosen payment system with your platform or website. Make sure it can work automatically to grant access after successful payment.


Create a Subscription Page

Create a dedicated page or modify your content pages to display subscription information. Let users know that they need to subscribe to unlock certain content.


Offer Added Value

Give customers an incentive to subscribe. This could be exclusive content, discounts, or other special benefits that make subscribing more attractive.


Set Up Subscription Links

Place a prominent subscribe link or button on your page. Be sure to clearly explain what subscribers will receive after subscribing.


Manage Access

Make sure your system can manage access to content after successful payment. This can be by providing immediate access or sending a special access link to the customer.


Please note the Privacy Policy

Make sure you comply with privacy policies and relevant regulations. Provide clear information about how customer data will be used and safeguarded.


System Test

Before launching fully, test your system to ensure that all subscription and access processes are running smoothly.


Monitor Performance

Monitor the performance of your subscription page and see if there are any aspects that need improvement. Listen to customer feedback and adapt if necessary.


Remember to always act ethically and transparently in carrying out these business practices and comply with applicable legal regulations.


How to create a subs to unlock page on blogspot 

First, edit HTML and paste the link below under the head.

<link href='https://use.fontawesome.com/releases/v5.0.10/css/all.css' rel='stylesheet'/>

submit the following css under style

#sociallocker {
	background-color: #EEEEEE;
	text-align: center;
	position: relative;
	max-width: 500px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius:10px;
}
#sociallocker-overlay {
	background-color: rgba(0,0,0,0.6);
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
	transition: all 0.2s ease;
}
#sociallocker-overlay i {
	margin-right: 10px;
}
#sociallocker:hover #sociallocker-overlay {
	top: -100%;
	transition: all 0.2s linear;
}
#sociallocker:hover #sociallocker-content {
	top: 100%;
	transition: all 0.2s linear;
}
#sociallocker-content a {
	display: inline-block;
	text-decoration: none;
	padding: 10px 20px;
	background-color: #777777;
	color: #f9f9f9;
	border-radius: 4px;
	font-weight: bold;
}
#sociallocker-overlay,
#sociallocker-content,
#sociallocker-links {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
}
#sociallocker-content {
	background-color: #ccc;
	transition: all 0.2s ease;
}
.social-1 {
	text-decoration: none;
    color: #ffffff;
    display: inline-block;
    width: 60px;
    height: 60px;
    overflow: hidden;
	margin-right: 5px;
}
.social-1 i {
	display: flex;
  	align-items: center;
  	justify-content: center;
    height: 100%;
}
.social-1:hover i {
	background-color: rgba(0,0,0,0.1);
    transform: scale(1.2);
    transition: all 0.2s;
}
.fb { background-color: #4561A8; }
.tw { background-color: #17ADEA; }
.gp { background-color: #BF3B28; }
.in { background-color: #1679B1; }
.pi { background-color: #D9303C; }
.su { background-color: #E84930; }

then save the javascript above /body

<script>
(function() {
	var sl = document.querySelector("#sociallocker");
	var slc = document.querySelector("#sociallocker-content");
	if (!sl) return;
	var old_slc_html = slc.innerHTML;
	slc.innerHTML = slc.innerHTML.replace(/(href=")(.*)(\")/g, "href=\"#\"");
	sl.querySelectorAll("#sociallocker-links a").forEach(function(ele) {
		ele.onclick = function(e) {
			var web_window = window.open(this.href, 'Share Link', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600,top=' + (screen.height/2 - 300) + ',left=' + (screen.width/2 - 300));
			var check_window_close = setInterval(function() { 
				if (web_window.closed) {
					clearInterval(check_window_close);
					slc.innerHTML = old_slc_html;
					document.querySelector("#sociallocker-links").style.display = "none";
					document.querySelector("#sociallocker-overlay").style.display = "none"; 
					document.querySelector("#sociallocker-content").style.top = "0";
				}
			}, 1000);
			e.preventDefault();
		};
	});
})();
</script>

Next, to display the subs for unlock page, insert the following command on the page or under your article in HTML mode.

 
<div id="sociallocker">
	<div id="sociallocker-links">
		<a class="social-1 fb" href="https://www.facebook.com/"><i class="fab fa-facebook-f"></i></a>
		<a class="social-1 tw" href="#"><i class="fab fa-twitter"></i></a>
		<a class="social-1 gp" href="#"><i class="fab fa-google-plus-g"></i></a>
		<a class="social-1 in" href="#"><i class="fab fa-linkedin-in"></i></a>
		<a class="social-1 pi" href="#"><i class="fab fa-pinterest-p"></i></a>
		<a class="social-1 su" href="#"><i class="fab fa-stumbleupon"></i></a>
	</div>
	<div id="sociallocker-content">
		<a href="http://google.com">Download Now</a>
	</div>
	<div id="sociallocker-overlay"><i class="fas fa-lock"></i>Unlock content with a social share.</div>
</div>

Post a Comment for "How To Create A Subs To Unlock Page"