itthinx
Forum Replies Created
-
Forum: Plugins
In reply to: [Groups] Updating Groups plugin core failed.Hi @studio BAERIG
Please try installing again after using delete all data on deactivation under Groups > Options and reinstall with debugging enabled and logged.
Please rather post your results on a new thread as this one is already resolved.
Cheers
Forum: Plugins
In reply to: [Groups] Groups for WooCommerce and RightPress's Subscriptio?Hi Rob,
No these don’t work together as far as I know. We already have it integrated with WooCommerce Subscriptions from WooThemes.
Cheers
Forum: Plugins
In reply to: [Affiliates] Can this be used with Vantage ?Hi,
Affiliates can be integrated with their system using its API, specifically using the affiliates_suggest_referral function – there are several free examples of integrations available on which other integrations can be based, for example here is one.
Cheers
Forum: Plugins
In reply to: [Affiliates] Affiliate code landing pageHi,
You can use this shortcode in the Affiliate Area
[affiliates_url]http://example.com/shop[/affiliates_url]– for details see http://docs.itthinx.com/document/affiliates/shortcodes/affiliates_url/ please.Cheers
Forum: Plugins
In reply to: [Affiliates] Send activation link after registrationHi,
I see what you mean, yes that could be an issue although you could use a captcha solution – see the filters
affiliates_captcha_getandaffiliates_captcha_validatedescribed here http://docs.itthinx.com/document/affiliates/api/filters/Cheers
Forum: Plugins
In reply to: [Affiliates] Can this be used with Vantage ?Hi,
The theme? I suppose yes, haven’t tested it but you should give it a try.
Cheers
Forum: Plugins
In reply to: [Affiliates] Displaying MARKDOWN_HASH instead of affiliate linkHi,
Let’s try the standard resolution process first:
Try deactivating all plugins. If that resolves the issue, reactivate each one individually until you find the cause.
If that does not resolve the issue, try switching to the default theme for your version of WordPress to rule-out a theme-specific issue (theme functions can interfere like plugins).
Also note that these indications from the previous topic could be useful to solve your case:
What Jetpack options are you using? Also have you checked if there is anything particular to your theme that could be using this functionality?
Are you using caching for users who are logged in? If yes, you shouldn’t or at least exclude the Affiliate Area from being cached.
Cheers
Forum: Plugins
In reply to: [Affiliates] Why are my affiliates url link displaying MARKDOWN HASH?Hi,
I’ll be marking this topic as resolved as the OP hasn’t responded since then it looks like his issues were resolved.
@mikesublime80 I’ll respond on your new topic https://ww.wp.xz.cn/support/topic/displaying-markdown_hash-instead-of-affiliate-link
Cheers
Forum: Plugins
In reply to: [Affiliates] Need other currency ( INA)Hi,
You can use the
affiliates_supported_currenciesfilter for that:add_filter( 'affiliates_supported_currencies', 'affiliates_supported_currencies_idr' ); function affiliates_supported_currencies_idr( $currencies ) { $currencies[] = 'IDR'; return $currencies; }If you place the above in your theme’s functions.php (or encapsulate it in a plugin), you will have the currency added.
Documentation reference: http://docs.itthinx.com/document/affiliates/api/filters/
Cheers
Forum: Plugins
In reply to: [Affiliates] Recurring paymentsHi,
Please note that the plugin that is available here cannot be bought, it is provided for free.
If you use a commercial version (Affiliates Pro or Affiliates Enterprise) and need support, please go to the official support channel – please see http://www.itthinx.com/support/ for details.
Regarding your question, commissions on recurring payments are supported with Affiliates Pro and Affiliates Enterprise, see for example the section under the headline “Recurring Referrals” on this documentation page http://docs.itthinx.com/document/affiliates-pro/setup/settings/integrations/woocommerce/
Cheers
Forum: Plugins
In reply to: [Groups] Content hiding/showingHi Rob,
You can nest two different shortcodes, but nesting two instances of the same shortcode with different parameters will fail.
Alternatively, I could just hide the content from people who are members of either group. That may be easier. Is there a shortcode to hide content from users in certain groups, but to show it to everyone else?
The following example is a solution if you can work with not showing the content to someone in either or both of two groups (you can also specify more than two groups) :
Content shown to those who do not belong to Blue or who do not belong to Red: [groups_non_member group="Blue,Red"] Shown if not a member of Blue or not a member of Red. [/groups_non_member]Cheers
Forum: Plugins
In reply to: [Groups] Catchable fatal error Groups when with WPMLUpdate: Solved the PHP error produced in the cases above in Groups 1.7.1.
Forum: Plugins
In reply to: [Groups] Content hiding/showingHi Rob,
To show content to users who are not a member of one particular group, you can use this:
[groups_non_member group="Foobar"] Here is the content that you want to show to people who are not a member of the Foobar group. [/groups_non_member]Shortcode reference: http://docs.itthinx.com/document/groups/shortcodes/groups_non_member/
To show content to someone who belongd to a certain group:
[groups_member group="Smurfs"] You're in the Smurfs group. [/groups_member]Shortcode reference: http://docs.itthinx.com/document/groups/shortcodes/groups_member/
And you can combine these two, this should be a solution to your question:
[groups_non_member group="Blue"] You are not a member of the Blue group. [groups_member group="Red"] ... and you are a member of the Red group. [/groups_member] [/groups_non_member]By the way, if you haven’t rated the plugin already it would be great if you could do so, the reviews seem to help to spread the word 🙂
Cheers
Forum: Plugins
In reply to: [Groups] Catchable fatal error Groups when with WPMLHi all,
Many thanks for all the pointers and info. I’ve been able to verify the cause (a constructed object by PP used as context where normally a post ID is expected for determined capabilities).
The only feasible way I see is to shield the map_meta_cap filter hook we use in Groups in case something like that comes along (when it shouldn’t IMHO). I suppose that its author needs that in there to make its thing work, so I’ll rather go this way and have it ready if anything else like that is used by other plugins (this happens in pp_map_meta_cap where an object is constructed and passed as context – inside that function it’s called $_post). I don’t see a justified generic case we should cover, if I’m wrong about that, I’d appreciate any comments.
Anyhow, I will test and release an update for that.
Cheers
Forum: Plugins
In reply to: [Affiliates] Couple issuesHi,
You can customize the registration form and include new fields that cover for the banking info you need, see details on how to do that here please: http://docs.itthinx.com/document/affiliates/setup/settings/registration/
Direct is representing the store if enabled, i.e. it will record transactions that have not been referred by affiliates. If you see an amount there, you probably have recorded some test referrals – if you go to Affiliates > Referrals you will them there.
Great to hear you love the plugin, if you could please give it a rating, that would be awesome https://ww.wp.xz.cn/support/view/plugin-reviews/affiliates#postform
Cheers