caroleM-4
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
| Status | Topic | Supporter | Voix | Publications | Nouveauté |
|---|---|---|---|---|---|
|
Duplicate or import visual editor CRED forms without losing fields
Commencé par : caroleM-4 in: Toolset Professional Support |
|
3 | 12 | Il y a 4 years, 2 months | |
|
Visual form editor reset when adding or removing roles
Commencé par : caroleM-4
in: Toolset Professional Support
Problem: The customer reported that in user forms, if the visual form editor is being used and the target role is changed, the form fields are reset. Solution: Explained that this is known and expected behavior that if the user role is changed in user form or post type is changed in post form. We've had some internal discussion on this matter before and this was implemented purposefully so that only relevant fields can be made available. Also shared a workaround of switching to "Expert mode" before making a change to user role or post type and then switching back. Relevant Documentation: |
|
2 | 5 | Il y a 4 years, 5 months | |
|
CRED form translation issues
Commencé par : caroleM-4 in: Toolset Professional Support |
|
2 | 15 | Il y a 4 years, 6 months | |
|
Split: CRED form translation issues – ATE doesn't remember when it previously joined strings
Commencé par : caroleM-4 in: Toolset Professional Support |
|
2 | 2 | Il y a 4 years, 6 months | |
|
Toolset forms (CRED & login) issues when using WPML
1
2
Commencé par : caroleM-4
in: Toolset Professional Support
Problem: The admin language is set by a cookie. This can happen in two cases:
The user has a user form that is meant to redirect to a page. The user was encountering the following issues:
Solution: Toolset enforces a form to be created on the primary language. But, it does not enforce this while editing a form. This will be addressed in a future update. As a workaround add the following code to your a Toolset custom code snippet:
add_action( 'current_screen', 'ts_enforce_form_language' );
function ts_enforce_form_language( $screen ){
if ( in_array( $screen->id, array( 'cred-form', 'cred-user-form' ) ) ){
$default = apply_filters( 'wpml_default_language', NULL );
$current = apply_filters( 'wpml_current_language', NULL );
if ( $default != $current ){
do_action( 'wpml_switch_language', $default );
}
}
}
|
|
2 | 30 | Il y a 4 years, 6 months | |
|
Relationships between posts of different languages
1
2
Commencé par : caroleM-4 in: Toolset Professional Support |
|
2 | 21 | Il y a 4 years, 7 months | |
|
Best Toolset / WooCommerce Subscription combination
Commencé par : caroleM-4 in: Toolset Professional Support |
|
2 | 10 | Il y a 4 years, 7 months | |
|
Is there a way to force Toolset metaboxes to top or bottom of screen
Commencé par : caroleM-4 in: Toolset Professional Support |
|
2 | 5 | Il y a 4 years, 7 months | |
|
Using WPML shortcodes as dropdown placeholders break search filters
1
2
Commencé par : caroleM-4 in: Toolset Professional Support |
|
3 | 19 | Il y a 4 years, 8 months | |
|
Strange behavior of Toolset content templates with WPML
Commencé par : caroleM-4 in: Toolset Professional Support |
|
2 | 6 | Il y a 4 years, 8 months | |
|
Pages custom fields updated for all pages containing same view block
1
2
Commencé par : caroleM-4 in: Toolset Professional Support |
|
2 | 17 | Il y a 4 years, 9 months | |
|
Search / filter a multilingual list of posts by languages
Commencé par : caroleM-4
in: Toolset Professional Support
Problem: What I would need is a condition that avoid the code running in the View blocks preview only but I did not find any until now. Solution: You can use function WP_Screen::is_block_editor() to check if it is the block editor is loading on the current screen, see WP document: Relevant Documentation: https://developer.wordpress.org/reference/classes/wp_screen/is_block_editor/ |
|
2 | 15 | Il y a 4 years, 9 months |