How to Get "WPS Booster" from WP-Script for FREE

DerangedWolf

Elite Member
Jr. VIP
Joined
Apr 30, 2018
Messages
1,924
Reaction score
1,512
I started a porn tube site using a WP-Script theme and some plugins. Everything is great, it's just their WPS Booster plugin sucks.

It was completely broken, at least for me, so I got a refund. Then, I found a person on a Discord server who helped me write a small custom code to automatically boost your new videos.

Requirements:
  • WPS Mass Embedder
Process:

Step 1. Go to the file /wp-content/plugins/adult-mass-videos-embedder/admin/actions/ajax-import-video.php

Step 2. In this file, look for add post metas & taxonomies section

Clean-Shot-2021-03-06-at-11-38-22-2x.png


Step 3. You have to add the following code to this section:

Code:
// add random views between 10000 and 100000
$randviews = rand(10000, 100000);
update_post_meta( $post_id, 'post_views_count', $randviews );

// add random likes between 80 and 500
$randlikes = rand(80, 500);
update_post_meta( $post_id, 'likes_count', $randlikes );

// add random dislikes between 0 and 30
$randdislikes = rand(0, 30);
update_post_meta( $post_id, 'dislikes_count', $randdislikes );

// add hd by default
update_post_meta( $post_id, 'hd_video', 'on' );

The code is self-explanatory. You can change the values according to you.

WPS Mass Embedder will use these random values from the code and add them to all the new imported videos.

NOTE: It works only for new imports. For all the existing videos, you'll need to change the values manually by editing the video posts.

If you have any doubts then feel free to ask. Cheers!
 
for anyone who doesn't have mass embeder you can just edit the wp-admin/post-new.php works the same :)
 
I started a porn tube site using a WP-Script theme and some plugins. Everything is great, it's just their WPS Booster plugin sucks.

It was completely broken, at least for me, so I got a refund. Then, I found a person on a Discord server who helped me write a small custom code to automatically boost your new videos.

Requirements:
  • WPS Mass Embedder
Process:

Step 1. Go to the file /wp-content/plugins/adult-mass-videos-embedder/admin/actions/ajax-import-video.php

Step 2. In this file, look for add post metas & taxonomies section

Clean-Shot-2021-03-06-at-11-38-22-2x.png


Step 3. You have to add the following code to this section:

Code:
// add random views between 10000 and 100000
$randviews = rand(10000, 100000);
update_post_meta( $post_id, 'post_views_count', $randviews );

// add random likes between 80 and 500
$randlikes = rand(80, 500);
update_post_meta( $post_id, 'likes_count', $randlikes );

// add random dislikes between 0 and 30
$randdislikes = rand(0, 30)
update_post_meta( $post_id, 'dislikes_count', $randdislikes );

// add hd by default
update_post_meta( $post_id, 'hd_video', 'on' );

The code is self-explanatory. You can change the values according to you.

WPS Mass Embedder will use these random values from the code and add them to all the new imported videos.

NOTE: It works only for new imports. For all the existing videos, you'll need to change the values manually by editing the video posts.

If you have any doubts then feel free to ask. Cheers!


Doc: It works!!!!
Marty: You bet your A$$ it works!!
 
Back
Top