01-12-2015, 03:20 AM
01-12-2015, 03:36 AM
@coachnoe
I don't know what the problem is there. I just did a fresh download > install > activation and everything is working perfectly. There is no prompt for a license code. It works perfectly.
@brandimage Yes, the developer really believes in open source. He hosts all his stuff openly on github.
I don't know what the problem is there. I just did a fresh download > install > activation and everything is working perfectly. There is no prompt for a license code. It works perfectly.
@brandimage Yes, the developer really believes in open source. He hosts all his stuff openly on github.
11-20-2015, 11:54 PM
Hi all,
Does this plugin also support multi-affiliates?
What I mean is create multiple affiliate products with the same landing page.
Does this plugin also support multi-affiliates?
What I mean is create multiple affiliate products with the same landing page.
11-22-2015, 01:42 AM
@getdomaincodes
I think it will work that way but you need to read documentations
@lowno
Thank you, usefull information
I think it will work that way but you need to read documentations
@lowno
Thank you, usefull information
12-20-2015, 09:41 PM
Do we have some of the pro-plugins i need PayPal Payouts?
12-21-2015, 02:23 AM
For those of you who get irritated by the "enter your license key to receive updates" message here's how to get rid of it.
Open class-notices.php (\Plugins\AffiliateWP\includes\admin) and comment out/delete the following sections that starts on line 180 and ends on line 184.
Doing this gets rid of the notification.
Open class-settings.php (\Plugins\AffiliateWP\includes\admin\settings) and comment out/delete the following section that starts on line 299 and ends on line 309.
This removes the License settings from the AffiliateWP admin area.
Please note that the line numbers may change in the future updates so always make sure you're commenting out/deleting the correct code and not blindly following the line numbers mentioned above.
Open class-notices.php (\Plugins\AffiliateWP\includes\admin) and comment out/delete the following sections that starts on line 180 and ends on line 184.
Code:
if ( 'expired' === affiliate_wp()->settings->check_license() ) {
echo '<div class="error info"><p>' . __( 'Your license key for AffiliateWP has expired. Please renew your license to re-enable automatic updates.', 'affiliate-wp' ) . '</p></div>';
} elseif ( 'valid' !== affiliate_wp()->settings->check_license() ) {
echo '<div class="notice notice-info"><p>' . sprintf( __( 'Please <a href="%s">enter and activate</a> your license key for AffiliateWP to enable automatic updates.', 'affiliate-wp' ), admin_url( 'admin.php?page=affiliate-wp-settings' ) ) . '</p></div>';
}
Open class-settings.php (\Plugins\AffiliateWP\includes\admin\settings) and comment out/delete the following section that starts on line 299 and ends on line 309.
Code:
'license' => array(
'name' => '<strong>' . __( 'License Settings', 'affiliate-wp' ) . '</strong>',
'desc' => '',
'type' => 'header'
),
'license_key' => array(
'name' => __( 'License Key', 'affiliate-wp' ),
'desc' => sprintf( __( 'Please enter your license key. An active license key is needed for automatic plugin updates and <a href="%s" target="_blank">support</a>.', 'affiliate-wp' ), 'http://affiliatewp.com/support/' ),
'type' => 'license',
'sanitize_callback' => 'sanitize_text_field'
),
Please note that the line numbers may change in the future updates so always make sure you're commenting out/deleting the correct code and not blindly following the line numbers mentioned above.
01-20-2016, 09:34 AM
Thank you for this! But do you have the latest 1.7.0.14?
+5 Rep!
+5 Rep!
01-20-2016, 09:42 AM
Awesome man ! 5 rep from me
01-20-2016, 10:28 AM
thank you man !
01-20-2016, 06:11 PM
nice share, thanks.