info2grow
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Embedder] PDF Does Not Display on iPhone?Can confirm the PDF embed shows on a laptop (Windows/Chrome) but not on iPhone or iPad (Safari). I just get the title with a hyperlink to the PDF file.
Forum: Plugins
In reply to: [Enable jQuery Migrate Helper] popup maker not working – SOLVED!Seems like this hasn’t been fixed yet. Having to rely on a deprecated version of jQuery is not a fix it’s a temporary workaround and could have security issues or break other theme/plugin functionality in the future if they do not update the code.
Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] start course button+1 for this, many of our clients users are finding course navigation confusing. In an ideal world there would be a “Start Course” button on the course homepage and “Next” and “Previous” buttons on each item in the course.
This is a pretty standard form of navigation and while I understand the potential complications in coding it I’m sort of at a loss as to why it isn’t in the core.
This is how the “Click Here to Continue” buttons currently works
- Lesson
- Quiz (click “Click Here to Continue” after passing quiz it takes you to the NEXT Lesson)
- Lesson
- Topic
- Quiz (click “Click Here to Continue” after passing quiz it takes you to the NEXT Topic)
- Topic
- Quiz (click “Click Here to Continue” after passing quiz it takes you back to the CURRENT Lesson)
- Lesson
- etc…
Students are getting confused as the behavior of the “Click Here to Continue” button is inconsistent.
resolved
Thanks for the reply Kevin! Confirming it was the users screen in admin (role filter links). I had 1 member with that role and it wasn’t showing but but now a few days later it is. Apologies for that. Seems to be okay now!
Thanks we were exploited this morning. I deleted the redirect in the DB but now none of my 301 redirects work or show in the plugin back end.
Forum: Plugins
In reply to: [Simple Custom Post Order] Reorder Not SavingHaving the same issue
Forum: Plugins
In reply to: [Email Users] 502 Timeout Errors with many usersUpdate no 502 loading the page so the code above addressed that however when sending to 750 users I got 502 partway through. 293 emails were sent successfully.
We host with WPEngine and use Mailgun (and the Mailgun plugin) to handle the actual sending of the emails.
in email-users.php I have number set to 100 on line 1353 if that helps
// Set up the arguments for get_users() $args = array_merge($args, array( 'exclude' => array($exclude_id), //'fields' => array('ID', 'display_name', 'user_email'), 'fields' => 'all', 'offset' => '0', 'number' => '100', )) ;
Forum: Plugins
In reply to: [Email Users] 502 Timeout Errors with many usersThanks Mike! I think I have it sorted…
in mail-users/integration/itthinx-groups.php
It looks like it was the code that checks for empty groups.
In function mailusers_get_itthinx_groups
- comment out line 52 as we are already getting the ids on send
- Remove the if clause from line 54 that checks for empty groups
- We still need a check for empty groups inside function mailusers_get_recipients_from_itthinx_groups_group on line 80 so I added another clause. It works but there may be a better way.
if ((is_array($group) || is_object($group)) && $group->__get('users')) {
- then we need to check if the ids array is empty before calling mailusers_get_recipients_from_ids on line 88
if(!empty($ids)){ // Make sure the list of IDs accounts for the Email Users settings for email $ids = mailusers_get_recipients_from_ids($ids, $exclude_id, $meta_filter) ; }
Worked for a small group, now I am about to try a group of 750…
Forum: Plugins
In reply to: [Email Users] 502 Timeout Errors with many usersDigging deeper it’s actually with get_users is called in email_users.php on line 1436 that is actually stopping the initial page load of Send to Group(s). Obviously that needs to be there but does it need to happen on page load specifically for send to groups?
To be clear when either of these lines are not commented out the send to groups page will not load at all and I get a 502. It looks like the code may be looping through all groups and assigning the associated ids of users in each those groups on page load. Perhaps we can just query users of the chosen groups after Send Email is pressed?
Forum: Plugins
In reply to: [Email Users] 502 Timeout Errors with many usersso far I’ve narrowed it to integration/itthinx-groups.php line 87
// Make sure the list of IDs accounts for the Email Users settings for email
$ids = mailusers_get_recipients_from_ids($ids, $exclude_id, $meta_filter) ;If I comment out that line the send to groups page loads…
Forum: Plugins
In reply to: [BuddyPress Xprofile Custom Field Types] please install or upgrade BuddyPressWe will try it out next week and get back to you. Thanks!
Forum: Plugins
In reply to: [Taxonomy Images] Show term image in a query loopThanks whoaloic!!!! Worked for me too!
Just started getting this error in 3.2.6 when logged out at checkout
Forum: Plugins
In reply to: [Email Users] 502 ErrorsThanks Mike still getting the errors. WPEngine says they could be the reason we can no longer get into the parts of your backend (they time out).