gaborN
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Posts Managed by Access of WooCommerce are no longer aditable for Shop Managers
Iniciado por: gaborN en: Toolset Professional Support |
2 | 9 | hace 5 años, 4 meses | ||
cred_form_validate is called TWICE, is that normal?
Iniciado por: gaborN
en: 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 | hace 5 años, 5 meses | ||
plugins take up a lot of disk space!
Iniciado por: gaborN en: Toolset Professional Support |
2 | 3 | hace 6 años, 5 meses | ||
Access can no longer control permissions of a custom post type
1
2
Iniciado por: gaborN
en: 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 | hace 7 años | ||
Sometimes CRED Form settings are changed during the upgrade process of Access
Iniciado por: gaborN en: Toolset Professional Support |
2 | 5 | hace 7 años, 1 mes |