Tips and Tricks HQ Support Portal › Forums › WP Affiliate Platform › Footer link and tracking
Tagged: footer, powered by
- This topic has 8 replies, 4 voices, and was last updated 12 years, 8 months ago by admin.
-
AuthorPosts
-
October 20, 2010 at 6:03 am #2064webbdoMember
Hi!
On my page I have an footer link “Powered by WP Affiliate Platform”. How can i remove that? In footer.php i cant see it… (site w w w . w e b b d o . s e / affiliate
How can I add an tracking link on “thank you page”?
October 21, 2010 at 12:37 am #25611amin007ParticipantIf you are using option 1 for the affiliate view then look for a file called “footer.php” inside the “affiliates” directory.
If you are using option 2 for the affiliate view then open the “affiliate_platform_affiliate_view.php” file from the “wp-affiliate-platform” directory and look for the following code:
function wp_aff_view_get_footer()
{
$output .= '<div id="wp_aff_footer">';
$aff_id = get_option('wp_aff_user_affilate_id');
if(!empty($aff_id))
{
$output .= '<div style="float:right;">Powered by <a target="_blank" href="http://tipsandtricks-hq.com/?p=1474&ap_id='.$aff_id.'">WP Affiliate Platform</a></div>';
}
else
{
$output .= '<div style="float:right;">Powered by <a target="_blank" href="http://tipsandtricks-hq.com/?p=1474">WP Affiliate Platform</a></div>';
}
$output .= '<div class="wp_aff_clear"></div>';
$output .= '</div>';
return $output;
}Once you find it replace it with the following:
function wp_aff_view_get_footer()
{
return "";
}That will remove the footer line.
I am not sure I understand what you mean by “tracking link on thank you page”
October 21, 2010 at 9:48 am #25612webbdoMemberThanks, it worked!
The second question is: How can I keep tracking on my affiliate sales? I mean, I do not have any trackinglink on “thank you page”. How can I tell the affiliate plugin that a specific page is an “thank you page”?
Regards Pierre
October 21, 2010 at 11:47 pm #25613amin007ParticipantYou don’t need to tell the affiliate plugin which page is a thank you page. It works based on the payment notification. When the affiliate plugin receives a confirmed payment notification it will award the commission. Depending on how you are integrating the plugin the payment notification integration will be different.
Are you using the WP eStore plugin to process the E-Commerce side (sale of the item) or some other plugin?
October 27, 2010 at 3:05 pm #25614webbdoMemberHi!
Ok, but then I have a big problem!
I do not use any of that, I only use this http://www.deliciousdays.com/cforms-plugin/ order form…
Is it posible to have that connected to the affiliate software?
Regards Pierre
October 28, 2010 at 1:16 am #25615amin007ParticipantYou are using Pay Per Lead or Pay Per Capture type method. This page should help:
To be more specific this page has a way to integrate cForms with the affiliate plugin:
February 22, 2012 at 1:22 pm #25616LWhitneyMemberI tried doing this and keep getting the following error when I go to reactivate the plug in.
Parse error: syntax error, unexpected T_STRING, expecting ‘,’ or ‘;’ in /mnt/stor9-wc1-dfw1/662528/662568/www.thebaseballpagedirectory.com/web/content/wp-content/plugins/wp-affiliate-platform/affiliate_platform_affiliate_view.php on line 225
what am I doing wrong?
February 22, 2012 at 11:00 pm #25617adminKeymasterIt means you made a mistake when modifying the code. Load a fresh build of the plugin and try again (be careful and don’t touch any other code except what is mentioned above):
https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins
March 13, 2012 at 3:06 am #25618adminKeymasterAdded an option for this in the settings menu of the affiliate plugin. You can check the following option to hide the powered by section:
Turn off the affiliate ID display section
-
AuthorPosts
- You must be logged in to reply to this topic.