Forum Replies Created
-
AuthorPosts
-
February 10, 2015 at 11:06 pm in reply to: WP Affiliate – Record Verified Affiliate Clicks Only? #68515BookBizSpectator
I have the same question
BookBizSpectatorIf we are using the affiliate satellite program, is it possible to also show which website the commission is tied to? I am using a multisite setup.
BookBizSpectatorHello,
I have responded to your email twice and haven’t heard anything back. I suspect my emails aren’t coming through, so I’ll add my comment here.
I have a new multisite install, so I’m flexible on how this could be set up. I am using eStore and WP Affiliate. Basically, customers pay to post content to the subsites (pay-per-post). I would like to avoid having multiple WP installations and multiple accounts per affiliate. Referrals could come in through any site in the network (main and subsites) and the affiliate referrals are recorded. I am considering either of the following situations:
-
a) Orders Placed Through Main Site – eStore directs customers to a form that is protected by APR. This form could either be on the main site, or the subsites (if possible). If cross-domain APR links are possible on multisite (maybe using subdomain w/o mapping), that would be very helpful. Either way, customers select the subsite where they want their content displayed. Main site uses SSL, allowing for Paypal Pro (?).
b) Orders Placed Through Subsites – eStore directs customers to a form on subsite where order is purchased, again using APR link. I suspect that it won’t be possible to use SSL and Paypal Pro for these orders, which is fine. However, the affiliate program can still track purchases across entire network of subsites.
Lastly, I do have a few separate single site installs of WP that use eStore and WP Affiliate. If possible, I would like to migrate the affiliate accounts for one or two of these sites to this network. If I understood previous comments here, this should be possible.
Which of the above options is possible / easiest to implement?
Thanks for your help
BookBizSpectatorI need the helper plugin. I am emailing you. Is this something that will be made widely available via the forums, along with updates?
BookBizSpectator#3 should read “FIND the following code (Lines 139)”
There is nothing to comment out in that step … only find/replace
BookBizSpectatorFor two of my sites, I had hacked together the following solution that adjusts the number of sales and removes the total sales amount. I suspect you’ll want to do something a bit more comprehensive. However, I thought I’d post it in case it helps expedite your modification, or if someone else wants a quick fix:
File – members_only_view.php
Line – 99
1) FIND the following code:
$query = $wpdb->get_row(“SELECT count(*) as total_record FROM $sales_table WHERE payment > 0 AND refid = ‘”.$_SESSION.”‘ AND date BETWEEN ‘$start_date’ AND ‘$end_date'”, OBJECT);
$number_of_sales = $query->total_record;
if (empty($number_of_sales)){
$number_of_sales = “0”;
}
2) REPLACE with the following code
$query = $wpdb->get_row(“SELECT count(*) as total_record FROM $sales_table WHERE payment > 0 AND refid = ‘”.$_SESSION.”‘ AND date BETWEEN ‘$start_date’ AND ‘$end_date'”, OBJECT);
$refunds = $wpdb->get_row(“SELECT count(*) as total_refunds FROM $sales_table WHERE payment < 0 AND refid = ‘”.$_SESSION.”‘ AND date BETWEEN ‘$start_date’ AND ‘$end_date'”, OBJECT);
$number_of_sales = $query->total_record;
$number_of_refunds = $refunds->total_refunds;
$net_sales = $number_of_sales – $number_of_refunds;
if (empty($net_sales))
{
$net_sales = “0”;
}
3) FIND the following code and comment it out (Lines 139)
FIND $number_of_sales
REPLACE with $net_sales
4) FIND the following code and comment it out (Lines 144 – 147)
// echo ‘<td>‘.AFF_TOTAL_SALES_AMOUNT.’ : </td>’;
// echo ‘<td>’.$total_sales.'</td>’;
// echo ‘<td>’.$currency.'</td>’;
BookBizSpectatorDoes that leave the affiliate in a ‘pending’ status until I can approve them? Or, are they automatically approved?
BookBizSpectatorHas the manual approval feature been added?
BookBizSpectatorI am having this same problem. Do you happen to recall the solution?
BookBizSpectatorI’m also having this problem. There is no item_number and it’s causing problems with the return URL … 403 Forbidden
I have the same setup described above – WP eStore payment button and the PayPal PDT feature
If I add a digit at the end, or simply remove &item_number, it works fine. I will check the URL above. Is this a common conflict for people using Paypal and Paypal Pmt Pro?
-
AuthorPosts