Forum Replies Created
-
AuthorPosts
-
December 10, 2011 at 7:15 am in reply to: WordPress Users + WP Affiliate Registration integration #39506
admin
KeymasterAt the moment we only have an option to import the existing WordPress users as affiliate. There is no option to automatically create affiliate accounts when a WordPress user is created. This is something we would like to add in the future.
admin
KeymasterWhen custom coding a display it is always a good idea to create a new one from scratch. The existing product displays are coded in a certain way depending on how we wanted the display to look like so it is not suitable for custom modification.
With that said, there is a function in the extra eStore shortcodes plugin that can be used to create a thumbnail with any custom width and height. Here is an example usage
$img_url = "url-of-the-thumbnail-image-retrieved-from-the-product-database";
$w = "200"; //Desired width of the thumbnail image in pixel
$h = "150"; //Desired height of the thumbnail image in pixel
$thumb_image = get_extra_eStore_smart_thumb($img_url,$w,$h);The extra eStore shortcode can be downloaded from here:
http://www.tipsandtricks-hq.com/ecommerce/wp-estore-shortcodes-and-functions-reference-460
admin
KeymasterUpdate on this same topic here:
https://support.tipsandtricks-hq.com/forums/topic/block-the-remuneration-of-an-affiliate
admin
KeymasterOpen the “wp_aff_advanced_configs.php” file and look for the following line of code:
define('WP_AFFILIATE_NO_COMMISSION_FOR_SELF_PURCHASE', '0');
Once you find it change it to the following:
define('WP_AFFILIATE_NO_COMMISSION_FOR_SELF_PURCHASE', '1');
This will stop commission on self purchase when a buyer email address is present in the transaction so the plugin can match the buyer and affiliate. This will make it so the plugin won’t award commission on purchases where the referrer is the buyer.
admin
KeymasterThank you for the debug.. I see the issue. I have added a condition to address this. Please get a new build of the plugin and it should be fixed:
December 10, 2011 at 4:50 am in reply to: Display Price on Collect Details page for ARB and Authorize.net #39432admin
KeymasterThat looks like you have a PHP Session issue. Your PHP session is not working 100%. Contact your hosting provider to fix that and the shopping cart will behave normally. This post will give you more info:
https://support.tipsandtricks-hq.com/forums/topic/php-session-not-working-correctly
admin
KeymasterInclude it in the product. So for example, if the product price is $50 and the processing fee is $5 then make your product price $55.
admin
KeymasterOkay I will need to investigate this on your site… I have sent you an email to get site access so I can check it out.
admin
KeymasterYeah that should be doable. Please contact us here for a custom work quote:
December 10, 2011 at 3:38 am in reply to: Downloaded file size is 0 (Zero) byte or 404 error or Other file download error #19985admin
KeymasterOkay lets try to narrow it down to which setting option is doing this. Please do the following:
1. Go to the “General Settings” of the W3 Total Cache plugin then hit the “Restore Default Settings” to restore the settings to default (you can export your current settings before doing this).
2. Now, turn off all the following 5 types of caching and save the settings (also empty all cache too):
Page Cache
Minify
Database Cache
Object Cache
Browser Cache
3. The plugin will be running but there should be no caching so try a download and see what behavior you get.
4. If the download works fine then start to enable the individual cache settings starting with “Page Cache” and test the download each time.
Let me know which one breaks the download.
December 10, 2011 at 3:23 am in reply to: Allow access to Thank You page with site wide protecton #39398admin
KeymasterWe will add an option so you can specify some URLs that will be excluded from the lockdown wizard. Should have this work completed by tomorrow.
admin
Keymasterfsockopen error usually happens when something on the server has been changed and it is not working anymore but I have a suspicion that you may be looking at old debug. Did you reset the debug file before doing the test?
Please ask your hosting if they have done some maintenance work on your server in the last few days.
Next, load a fresh build of the plugin and try the debug test again:
https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins
After a debug test run share the full content of the debug file.
admin
KeymasterOkay if you are using a custom template file then you need to add the code mentioned in step 2 in your theme folder. This is explained in the “Note” section of this documentation:
Let me know if you performed that step.
admin
KeymasterThe same concept applies for that too… you find the template file that is showing the blog posts then place it inside the condition so only the members can see it.
December 9, 2011 at 10:14 am in reply to: WP Affiliate Platform Integration with existing User-base #38885admin
KeymasterGet a new build of the plugin and you will see a new tab under the “Manage Affiliates” menu which will let you import the WordPress users as affiliates. You can get a new build from here:
-
AuthorPosts