gaborN
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Posts Managed by Access of WooCommerce are no longer aditable for Shop Managers
Gestartet von: gaborN in: Toolset Professional Support |
2 | 9 | vor 5 Jahren, 3 Monaten | ||
cred_form_validate is called TWICE, is that normal?
Gestartet von: gaborN
in: Toolset Professional Support
Problem: I have a cred_form_validate hook applied to a CRED form. With JavaScript disabled, I can see that the hook is fired twice by monitoring server logs. With JavaScript enabled, the hook is fired once as expected. Solution: This problem has been resolved in the latest release of Forms 2.4 Relevant Documentation: https://toolset.com/errata/cred_form_validate-api-hook-called-twice-when-javascript-is-disabled/ |
2 | 9 | vor 5 Jahren, 4 Monaten | ||
plugins take up a lot of disk space!
Gestartet von: gaborN in: Toolset Professional Support |
2 | 3 | vor 6 Jahren, 4 Monaten | ||
Access can no longer control permissions of a custom post type
1
2
Gestartet von: gaborN
in: Toolset Professional Support
Problem: I would like to give Shop Manager users access to the log of emails created by the Log Emails plugin, but Access permissions do not seem to work as expected. Solution: Use custom code to modify the permissions defined by the Log Emails plugin. add_filter('register_post_type_args', 'site_log_emails_capabilities', 10, 2); function site_log_emails_capabilities($args, $post_type){ if ($post_type == 'log_emails_log'){ $args['capabilities']['edit_post'] = 'manage_woocommerce_orders'; $args['capabilities']['edit_posts'] = 'manage_woocommerce_orders'; $args['capabilities']['edit_others_posts'] = 'manage_woocommerce_orders'; $args['capabilities']['delete_post'] = 'manage_woocommerce_orders'; $args['capabilities']['delete_posts'] = 'manage_woocommerce_orders'; $args['capabilities']['read_post'] = 'manage_woocommerce_orders'; } return $args; } |
3 | 30 | vor 7 Jahren | ||
Sometimes CRED Form settings are changed during the upgrade process of Access
Gestartet von: gaborN in: Toolset Professional Support |
2 | 5 | vor 7 Jahren |