which clocking plugin this site use?

itsmegauri

Regular Member
Joined
Apr 29, 2019
Messages
246
Reaction score
45
loadmp4.info/i/lA3xDZJP8sQ.html

when downlaod video it goes to techblog

then again some other site,good way to get free visitors
 
It´s not a plugin and it´s not cloaking (and not clocking either). U just click download button and end up another site. Every kid can do it.
 
I am not into coding,just using wordpress,can u tell me how to achive this
 
You can do it with one line of HTMl/JS.

Code:
<button class="download" onclick="document.location.href='the_url_where_your_download_file_is';">Download File</button>


Or, pure HTML (just put a link, lol):
Code:
<a class="download" href="link_for_file">Download File</a>
As for implementing this into WP, it is pretty easy. Just follow this tutorial for example (not my site, haven't tested the code):
Code:
https://themeisle.com/blog/add-buttons-in-wordpress/
 
You can do it with one line of HTMl/JS.

Code:
<button class="download" onclick="document.location.href='the_url_where_your_download_file_is';">Download File</button>


Or, pure HTML (just put a link, lol):
Code:
<a class="download" href="link_for_file">Download File</a>
As for implementing this into WP, it is pretty easy. Just follow this tutorial for example (not my site, haven't tested the code):
Code:
https://themeisle.com/blog/add-buttons-in-wordpress/
its 3 times redirection
not one time
 
its 3 times redirection
not one time
Configure your "the_url_where_your_download_file_is" to redirect to "another_url" and then to "another_url".

Relevant PHP code for that would be
Code:
<?php
header('Location:http://second_url');
etc...
 
Back
Top