itthinx
Forum Replies Created
-
Forum: Plugins
In reply to: [Affiliates] Edd Integration PluginHi,
A free and unsupported integration is available on GitHub http://github.com/itthinx/affiliates-edd/
You should post questions about premium plugins on their forums, the forums here are for free plugins that are hosted here, please see the Forum Welcome for more on this.
Cheers
Forum: Plugins
In reply to: [Affiliates] Integrate with Easy Digital Downloads?@postnshares and for anyone looking for the integration, a free and unsupported integration for Affiliates Pro and Affiliates Enterprise is available on GitHub http://github.com/itthinx/affiliates-edd/
Please note that questions related to premium plugins should be posted on the support pages of those plugins, the forums here are for free plugins that are hosted on ww.wp.xz.cn – also see the Forum Welcome on this.
Cheers
Forum: Plugins
In reply to: [Groups] 1.5.2 does not upgrade properlyHi,
This really doesn’t depend on the plugin itself, it’s very likely an issue with your WordPress setup. Make sure the wp-content directory is writable.
Cheers
Forum: Plugins
In reply to: [Groups] Groups Plugin Home Page is GarbledThanks for your update on that, good to see that you got it resolved.
Please rate the plugin if you have a spare minute, thanks for using it!
Forum: Plugins
In reply to: [Groups] remove the "for XXX duration"Hi,
I assume your question is related to the Groups WooCommerce extension, support for premium extensions can’t be provided here but you can ask for help on the Support pages.
Cheers
Forum: Plugins
In reply to: [Groups] Groups Plugin Home Page is GarbledYou’re welcome 🙂 I’d suggest the following approach to see if there’s any conflict or lack of resources involved:
#1 – First try to disable all other plugins and make sure that your PHP memory limit is set at a decent amount.
#2 – Please enable debugging and check if there are any errors coming up in the debug.log:
See Debugging in WordPress, summarized make sure to have these lines in your wp-config.php :
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false );The third line is optional.
Visit the pages where you get garbled screens and check in wp-content/debug.log – please post a link here to the contents pasted to pastebin.
I won’t be able to help you with your Javascript issues, but if there’s anything coming up in the logs we could identify any basic issues or conflicts.
Cheers
Forum: Plugins
In reply to: [Groups] Updating Groups plugin core failed.Hi,
Thanks for using it 🙂
Regarding the message you get, can you please enable debugging and check if there are any errors coming up in the debug.log?
See Debugging in WordPress, summarized make sure to have these lines in your wp-config.php :
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false );The third line is optional. Then try to update the plugin and check in wp-content/debug.log – please post a link here to the contents pasted to pastebin.
You can also try to disable other plugins and make sure that your PHP memory limit is set at a decent amount.
Cheers
Forum: Plugins
In reply to: [Groups] Group User IDsHi,
You can do it like this:
$group = new Groups_Groups( $group_id ); $users = $group->users;$users is an array of Groups_User objects you can iterate over, each has a WP_User object as $user->user :
foreach( $users as $user ) { $user_id = $user->user->ID; ... }Also see http://docs.itthinx.com/document/groups/api/examples/ for more examples.
Cheers
Forum: Plugins
In reply to: [Affiliates] Contact Form 7 AutofillHi,
Thanks for asking, the combination sounds interesting. I would suggesto you set up a form and with the integration enabled submit it after visiting an affiliate’s link (this covers #1).
Once the form has been submitted, you will see the form data and the referring affiliate under Affiliates > Referrals – for #2 the affiliate ID is recognized and the referral related to her or him. The system also offers an API which is useful if you need to take further action, for example when the referral is recorded (for the submitted form), it could be used to forward information to the CRM – see the notes on the affiliates_record_referral filter documented in the Filters section.
I hope that helps and you will find the plugin useful, after giving it a try it would be great if you could rate it, thanks!
Cheers
Forum: Plugins
In reply to: [Groups] Update FailedPS Please note that the issues that you describe are not related or caused by Groups, the areas you describe are not touched by the plugin.
Forum: Plugins
In reply to: [Groups] Update FailedDuplicates this – see my reply there please.
Forum: Plugins
In reply to: [Groups] User RegistrationHi,
Thanks for asking, it is possible to craft something like that using the plugin’s API but it’s outside of what you could do with any of the functionality or shortcodes it already provides.
Cheers
Forum: Plugins
In reply to: [Groups] Groups Plugin Home Page is GarbledHi,
This looks like something is interfering with some resources, probably some other plugin causing Javascript errors – that shouldn’t happen, but it does with plugins that load their resources on every admin page (something they shouldn’t do). Also try to simply reload the page and/or clear the browser cache, that often helps if you don’t see images.
Cheers
Forum: Plugins
In reply to: [Affiliates] Many new "signups" in last 24 hours. Is there a bugHi David,
Have you seen https://github.com/itthinx/affiliates-recaptcha – this would be an option to integrate reCAPTCHA.
BTW are you sure you’re talking about this plugin?
Forum: Plugins
In reply to: [Affiliates] Many new "signups" in last 24 hours. Is there a bugHi David,
That sounds quite odd … I’d figure something has messed up the database or these are a lot of spam registrations?