WPIntell

Source evidence

Not viewing all groups

Contact Form 7 Connector · support · 2020-09-29T10:27:00+00:00

mixedsentiment
mediumseverity
0.85relevance
17replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

7 / 33 rows with source links

21.2% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

26 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
maxdestefano resolved
Hello, I have plugin version 1.1.10 and WP version 5.5.1 now, but the issue happened with previous versions too. When I installed the plugin and configured the API key for mailer lite, most (I think all) of the groups where imported properly. However, later on I created other groups, and they’ve not been added, they’re not visible in the Contact Form 7 / Mailer lite tab / Groups field. I also tried to click the sync button and remove/add back again the API key. Thanks Max The page I need help with: [ log in to see the link] Hello Is it possible to see the problem anywhere? PS: You can contact us by email: info (at) ari-soft (dot) com Hello, sure. I’ll send you an email and get in touch. this plugin has limitations on the amount of subscriber list display. If you haven’t been able to fix it yet, write to me i’ll help @altruistas how do I remove the limit for the amount of subscriber lists to display? I’m having the same issue on my end. Thanks in advance, Yan Hello @altruistas , I still didn’t fix as well. Can you please advise? @maxdestefano @yanickco Hi, u need to edit plugin file which returning groups. Do u now how to edit files? Yup! Can you tell me what file and line needs to be changed? Any idea why they are limiting the number? Thanks, Yan This reply was modified 5 years, 2 months ago by tobifjellner (Tor-Bjorn “Tobi” Fjellner) . This reply was modified 5 years, 2 months ago by yanickc . This reply was modified 5 years, 2 months ago by yanickc . @altruistas yes I know how to edit files, can you please tell us what’s the file? Thanks! @yanickco yes u can overriding Plugin Function in Child Theme Plugin function location: cf7_addons/mailerlite/helpers/class-mailerlite.php Function name: get_lists U need to add argument to mailerlite api line about 86 $groups = $mailer_lite->groups()->get(); Need to add example limit of 1000: ->limit(10000) Final args: $groups = $mailer_lite->groups()->limit(10000)->get(); @altruistas so basically you need to add a limit manually because the plugin is not able to handle all the groups? In other words, if you don’t specify any limit manually, the plugin puts a limit itself automatically? Is my understanding correct? Also, yes it seems to work fine! Thanks! Could you please also share how to override the plugin function with the Child Theme? Thanks, Max This reply was modified 5 years, 2 months ago by maxdestefano . @maxdestefano no if u don’t adding limit in mailerlite api it will show default number of groups. @altruistas very good, thanks for your explanation! Can you please also explain how to override in the Child Theme, I wasn’t able to do that as I didn’t find any hook to use. Thanks! Max There is no hooks for functions. You can’t really “override” a function. If a function is defined, you can’t redefine or change it. Your best option is to write to plugin admin to fix this “bug” Or u can write add_filter() function. I can’t copy it to u because i din’t made it to this plugin. It was not so necessary to my client. OK very good, no problem! @arisoft can you please check this? @altruistas found how to solve it. Maybe you can fix this bug in your future releases, so that when we update the plugin we don’t lose the fix. Thanks Max Thanks for your help @altruistas I can confirm this worked for me too. Hopefully @arisoft can fix this in a future update. Thanks! Yan @yanickco No problem. Any time, any question. Just write to me. Hi there, Thank you for identifying the problem. The fix is available in v. 1.1.12.

Comments

17 shown
arisoft 2020-09-30T06:14:00+00:00

Hello Is it possible to see the problem anywhere? PS: You can contact us by email: info (at) ari-soft (dot) com

maxdestefano 2020-09-30T07:25:00+00:00

Hello, sure. I’ll send you an email and get in touch.

altruistas 2021-01-28T07:50:00+00:00

this plugin has limitations on the amount of subscriber list display. If you haven’t been able to fix it yet, write to me i’ll help

yanickc 2021-03-22T13:01:00+00:00

@altruistas how do I remove the limit for the amount of subscriber lists to display? I’m having the same issue on my end. Thanks in advance, Yan

maxdestefano 2021-03-22T13:03:00+00:00

Hello @altruistas , I still didn’t fix as well. Can you please advise?

altruistas 2021-03-22T13:41:00+00:00

@maxdestefano @yanickco Hi, u need to edit plugin file which returning groups. Do u now how to edit files?

yanickc 2021-03-22T13:43:00+00:00

Yup! Can you tell me what file and line needs to be changed? Any idea why they are limiting the number? Thanks, Yan This reply was modified 5 years, 2 months ago by tobifjellner (Tor-Bjorn “Tobi” Fjellner) . This reply was modified 5 years, 2 months ago by yanickc . This reply was modified 5 years, 2 months ago by yanickc .

maxdestefano 2021-03-22T13:46:00+00:00

@altruistas yes I know how to edit files, can you please tell us what’s the file? Thanks!

altruistas 2021-03-22T13:51:00+00:00

@yanickco yes u can overriding Plugin Function in Child Theme Plugin function location: cf7_addons/mailerlite/helpers/class-mailerlite.php Function name: get_lists U need to add argument to mailerlite api line about 86 $groups = $mailer_lite->groups()->get(); Need to add example limit of 1000: ->limit(10000) Final args: $groups = $mailer_lite->groups()->limit(10000)->get();

maxdestefano 2021-03-22T14:07:00+00:00

@altruistas so basically you need to add a limit manually because the plugin is not able to handle all the groups? In other words, if you don’t specify any limit manually, the plugin puts a limit itself automatically? Is my understanding correct? Also, yes it seems to work fine! Thanks! Could you please also share how to override the plugin function with the Child Theme? Thanks, Max This reply was modified 5 years, 2 months ago by maxdestefano .

altruistas 2021-03-22T14:16:00+00:00

@maxdestefano no if u don’t adding limit in mailerlite api it will show default number of groups.

maxdestefano 2021-03-22T14:19:00+00:00

@altruistas very good, thanks for your explanation! Can you please also explain how to override in the Child Theme, I wasn’t able to do that as I didn’t find any hook to use. Thanks! Max

altruistas 2021-03-22T14:32:00+00:00

There is no hooks for functions. You can’t really “override” a function. If a function is defined, you can’t redefine or change it. Your best option is to write to plugin admin to fix this “bug” Or u can write add_filter() function. I can’t copy it to u because i din’t made it to this plugin. It was not so necessary to my client.

maxdestefano 2021-03-22T14:36:00+00:00

OK very good, no problem! @arisoft can you please check this? @altruistas found how to solve it. Maybe you can fix this bug in your future releases, so that when we update the plugin we don’t lose the fix. Thanks Max

yanickc 2021-03-22T14:47:00+00:00

Thanks for your help @altruistas I can confirm this worked for me too. Hopefully @arisoft can fix this in a future update. Thanks! Yan

altruistas 2021-03-22T14:49:00+00:00

@yanickco No problem. Any time, any question. Just write to me.

arisoft 2021-03-24T07:38:00+00:00

Hi there, Thank you for identifying the problem. The fix is available in v. 1.1.12.