Element LMS
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] ElastiCache Memcached cluster: Encryption in transit enabledAny update on this?
This has become a requirement on our side and we might have to look for another caching plugin if we can’t use Encryption in Transit.
Forum: Plugins
In reply to: [Groups] Post Read restriction and Cron jobIn my case, I just had to override the result of 2 filters:
add_filter( 'groups_post_access_posts_where_apply', array( $this, 'handle_groups_post_access_posts_where_apply' ), 10 , 3 ); add_filter( 'groups_comment_access_comments_clauses_apply', array( $this, 'handle_groups_comment_access_comments_clauses_apply' ), 10 , 3 ); public function handle_groups_post_access_posts_where_apply( bool $filter_posts, string $where, WP_Query $query ): bool { if ( wp_doing_cron() ) { return false; } return $filter_posts; } public function handle_groups_comment_access_comments_clauses_apply( bool $filter_comments, array $pieces, WP_Comment_Query $comment_query ): bool { if ( wp_doing_cron() ) { return false; } return $filter_comments; }
Maybe it is fine to leave the current Group behavior as it is. However at the very least, having a setting disabling restriction when code is ran from within a Cron would be awesome. The change would be similar to what I have been doing but before applying the filter.
- This reply was modified 2 years, 1 month ago by Element LMS.
- This reply was modified 2 years, 1 month ago by Element LMS.
Forum: Plugins
In reply to: [Groups] Post Read restriction and Cron jobNote that I was able to solve my problem by using the various filters and disabling restrictions when wp_doing_cron() is true. However, it would be nice to have this out of the box
Forum: Plugins
In reply to: [Element Lesson Timer for Sensei] Timer in secondsNo. Not at this time. We are working on supporting this feature for a client. Look out for it in the near future.
Forum: Plugins
In reply to: [Element Lesson Timer for Sensei] HELP !Hello nsld,
Yes. We have a timer for quizzes that we have not had time to publish to www.remarpro.com. Email me at [email protected] and I will help you.Forum: Everything else WordPress
In reply to: Using WP as an LMS for an Independent K-12 SchoolYes. Just finishing up implementing WordPress/Sensei for Gadsden ISD in New Mexico. Send me an email and I will share what we did…. [email protected]
Forum: Plugins
In reply to: Live e-learning pluginElementlms.com has an extension to WooThemes Sensei plugin that supports Instructor Lead Training registrations logistics. Works very well with WooCommerce if you need to charge per seat. It also supports Waiting lists, email reminders, cancellations, etc. Send an email to [email protected] for more information.
Forum: Everything else WordPress
In reply to: Is WordPress the right solution for me?Yes. We’re using it for various government agencies (State and Federal). The integrity / security issues revolve around your development team’s expertise. Some of the issues are DevOps related. Others are QA related. Regardless, the problems can be addressed with good SW dev practices.