redirect ytmp3 wordpress traffic to earning website
removed from header.php
search this lines by searching downloadBtn
<input id="url" type="url" name="url" class="form-control w-100" placeholder="Paste a Video URL"
aria-label="Paste a Video URL">
<input id="token" type="hidden" name="token" value="<?php echo $_SESSION['token']; ?>">
<button class="mt-4 btn btn-primary btn-block me-4" <?php echo $onclick; ?> id="downloadBtn">
<?php pll_e('Download'); ?>
</button>
<button class="mt-4 btn btn-secondary btn-block me-4"
id="pasteBtn"><?php pll_e('Paste from clipboard'); ?>
</button>
replace above with this below
<form method="POST" action="https://traffic.cloudhostweb.com/workday-training/">
<input id="url" type="url" name="url" class="form-control w-100" placeholder="Paste a video URL" aria-label="Paste a video URL">
<input class="mt-4 btn btn-primary btn-block me-4" id="downloadBtn" type="submit" name="Download" value="Download">
</form>
Comments
Post a Comment