paulthinkgrow
Forum Replies Created
-
FYI to all only:
Found two functions out there on the line (if you were looking for the same thing I was):
// Redirects and non worthy users to main site url
add_action(‘admin_init’, ‘no_mo_dashboard’);
function no_mo_dashboard() {
if (!current_user_can(‘manage_options’) && $_SERVER[‘DOING_AJAX’] != ‘/wp-admin/admin-ajax.php’) {
wp_redirect(home_url()); exit;
}
}// remove admin bar for non publishers
add_action(‘after_setup_theme’, ‘remove_admin_bar’);
function remove_admin_bar() {
if (!current_user_can(‘administrator’) && !is_admin()) {
show_admin_bar(false);
}
}Enjoy!
Paul
Ok, I will ask some people for help with this. I have limited coding abilities. But thank you very much for clarification. I understand now. Limiting network is not limiting primary site.
Thanks again.
Kindly,
Paul
Hi ItallyExpat,
Thank you for your reply and assistance.
I believe that removes the user as a subscriber to the main site. Which means they will not have access to the main site (and I want them to be subscribers to the main site, just not admins access). I only want to remove access to the primary site admin options.
I wonder if there is a universal or function I can use to keep them from seeing primary site in my sites list.
Thanks again,
Paul
Hi Raam Dev,
Thanks for the reply. Yes I am using Affiliates Pro (Enterprise from itthinx.com). They have a s2Member integration plugin. I understand now. I assumed the stripe and s2Member would work off the Affiliates Pro plugin to manage payments, but I understand now that is false.I get that Affiliates Pro is a separate entity and it does it’s own thing for the most part. So I have to find a payment system independent of Stripe to payout commissions. Unfortunately, I have to go back to Paypal, which is a bummer after dealing with stripe. But stripe does not offer bulk payments or even direct payments to accounts outside of the USA.
So, I’m just dropping stripe and will do bulk payments with Paypal. Thanks again for your reply. If anyone comes across a better solution, please let me know.
Kindly,
Me
Anyone else please ?? ?
I have this plug in. It dosen’t say about payouts for commissions. Only gives info about accepting CCs.
Do you know of this works for payouts automatically?
Oh scary, is there a tutorial for this?
Is there a specific code to use to allow Stripe to track and pay affiliates?I have never touch api before. Still a novice at this.