06-29-2016, 04:25 PM
06-29-2016, 06:23 PM
thank you for the updated versions
you rock
do you know how can i install the whiteboard addon ?
Without an official account you cannot instlal it from the slider revolution admin
Is there a way to manually install it ? perhaps using ftp or something to upload the files ? But where ?
you rock
do you know how can i install the whiteboard addon ?
Without an official account you cannot instlal it from the slider revolution admin
Is there a way to manually install it ? perhaps using ftp or something to upload the files ? But where ?
06-29-2016, 06:54 PM
Thank you for the update, +Rep!
06-30-2016, 03:57 PM
@clawduda: Have you been able to install the addons? I am having the same issue too. I have not been able to install or use the addons for the Slider Revolution.
06-30-2016, 05:56 PM
(06-30-2016 03:57 PM)senkun Wrote: [ -> ]@clawduda: Have you been able to install the addons? I am having the same issue too. I have not been able to install or use the addons for the Slider Revolution.
I cant provide support for this unfortunatly, but i do think you will need a nulled version of revslider for the addons to work. This is downloaded straight from TF, and i have no clue how to null.
07-10-2016, 05:29 PM
can't you just message Simplified or TH3 DARKLORD to help null it?
since you have the clean and full pack version...
Simplified : http://bestblackhatforum.com/User-sIMplified-%E2%99%95
Th3 Darklord: http://bestblackhatforum.com/User-Th3-D4rkl0rd
Just provide them the download link, they will be so happy to null it and also give you proper credits for producing original file.
If not, then I think this share is somehow useless, not usable..
since you have the clean and full pack version...
Simplified : http://bestblackhatforum.com/User-sIMplified-%E2%99%95
Th3 Darklord: http://bestblackhatforum.com/User-Th3-D4rkl0rd
Just provide them the download link, they will be so happy to null it and also give you proper credits for producing original file.
If not, then I think this share is somehow useless, not usable..
07-10-2016, 06:31 PM
(07-10-2016 05:29 PM)ABD-SADIQ Wrote: [ -> ]can't you just message Simplified or TH3 DARKLORD to help null it?
since you have the clean and full pack version...
Simplified : http://bestblackhatforum.com/User-sIMplified-%E2%99%95
Th3 Darklord: http://bestblackhatforum.com/User-Th3-D4rkl0rd
Just provide them the download link, they will be so happy to null it and also give you proper credits for producing original file.
If not, then I think this share is somehow useless, not usable..
Shot for the advice. I have sent Simplified a PM.
07-10-2016, 08:45 PM
Code:
public function checkPurchaseVerification($data){
global $wp_version;
// $response = wp_remote_post('http://updates.themepunch.tools/activate.php', array(
// 'user-agent' => 'WordPress/'.$wp_version.'; '.get_bloginfo('url'),
// 'body' => array(
// 'code' => urlencode($data['code']),
// 'product' => urlencode('revslider')
// )
// ));
//
// $response_code = wp_remote_retrieve_response_code( $response );
// $version_info = wp_remote_retrieve_body( $response );
//
// if ( $response_code != 200 || is_wp_error( $version_info ) ) {
// return false;
// }
$version_info = 'valid';
if($version_info == 'valid'){
update_option('revslider-valid', 'true');
update_option('revslider-code', $data['code']);
return true;
}elseif($version_info == 'exist'){
RevSliderFunctions::throwError(__('Purchase Code already registered!', 'revslider'));
}else{
return false;
}
}
\revslider\includes\operations.class
07-10-2016, 10:06 PM
(07-10-2016 08:45 PM)damador Wrote: [ -> ]It's great!Code:
public function checkPurchaseVerification($data){
global $wp_version;
// $response = wp_remote_post('http://updates.themepunch.tools/activate.php', array(
// 'user-agent' => 'WordPress/'.$wp_version.'; '.get_bloginfo('url'),
// 'body' => array(
// 'code' => urlencode($data['code']),
// 'product' => urlencode('revslider')
// )
// ));
//
// $response_code = wp_remote_retrieve_response_code( $response );
// $version_info = wp_remote_retrieve_body( $response );
//
// if ( $response_code != 200 || is_wp_error( $version_info ) ) {
// return false;
// }
$version_info = 'valid';
if($version_info == 'valid'){
update_option('revslider-valid', 'true');
update_option('revslider-code', $data['code']);
return true;
}elseif($version_info == 'exist'){
RevSliderFunctions::throwError(__('Purchase Code already registered!', 'revslider'));
}else{
return false;
}
}
\revslider\includes\operations.class
Thanks so much @damador!
07-11-2016, 12:30 AM
(07-10-2016 08:45 PM)damador Wrote: [ -> ]Code:
public function checkPurchaseVerification($data){
global $wp_version;
// $response = wp_remote_post('http://updates.themepunch.tools/activate.php', array(
// 'user-agent' => 'WordPress/'.$wp_version.'; '.get_bloginfo('url'),
// 'body' => array(
// 'code' => urlencode($data['code']),
// 'product' => urlencode('revslider')
// )
// ));
//
// $response_code = wp_remote_retrieve_response_code( $response );
// $version_info = wp_remote_retrieve_body( $response );
//
// if ( $response_code != 200 || is_wp_error( $version_info ) ) {
// return false;
// }
$version_info = 'valid';
if($version_info == 'valid'){
update_option('revslider-valid', 'true');
update_option('revslider-code', $data['code']);
return true;
}elseif($version_info == 'exist'){
RevSliderFunctions::throwError(__('Purchase Code already registered!', 'revslider'));
}else{
return false;
}
}
\revslider\includes\operations.class
Thanks for providing this