nicolaS-3
Fils de soutien créés au cours des 30 derniers jours : 2
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Cannot center pagination
Commencé par : nicolaS-3 in: Toolset Professional Support |
|
2 | 4 | Il y a 2 années et 9 mois | |
Conditional block not working ?
Commencé par : nicolaS-3 in: Toolset Professional Support |
|
2 | 11 | Il y a 2 années et 10 mois | |
I found another issue with distance
Commencé par : nicolaS-3 in: Toolset Professional Support |
|
2 | 6 | Il y a 2 années et 10 mois | |
Split: Proportional resizing of images
Commencé par : nicolaS-3 in: Toolset Professional Support |
|
2 | 3 | Il y a 2 années et 10 mois | |
Issues found editing a custom post archive page in Kadence + Toolset
Commencé par : nicolaS-3 in: Toolset Professional Support |
|
2 | 15 | Il y a 3 années | |
Attribute not working in Output Editor
Commencé par : nicolaS-3 in: Toolset Professional Support |
|
2 | 4 | Il y a 3 années et 1 mois | |
Parent view not rendering on frontend
Commencé par : nicolaS-3
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
|
2 | 8 | Il y a 3 années et 1 mois | |
Content template title displaying on page
Commencé par : nicolaS-3 in: Toolset Professional Support |
|
2 | 3 | Il y a 3 années et 1 mois | |
Can a toolset view read the user data created with the Profile Builder plugin 2
Commencé par : nicolaS-3 in: Toolset Professional Support |
|
2 | 16 | Il y a 3 années et 2 mois | |
Issues with the block editor
Commencé par : nicolaS-3 in: Toolset Professional Support |
|
2 | 5 | Il y a 3 années et 2 mois | |
Access bug ? can't add pages to groups
Commencé par : nicolaS-3 in: Toolset Professional Support |
1 | 2 | Il y a 3 années et 3 mois | ||
Show total # of comments
Commencé par : nicolaS-3
in: Toolset Professional Support
Problem: The issue here is that the user wanted to display to comment count for his post. Solution: |
|
2 | 3 | Il y a 3 années et 10 mois | |
Apply CSS to just one out of many SELECTs in Forms
Commencé par : nicolaS-3
in: Toolset Professional Support
Problem: Solution: select[name=wpcf-book-status] { height: 145px; } Where book-status is the slug of the field. And you can target taxonomies with their slugs: select[name="category[]"] { border: 1px solid red; padding: 10px; margin: 10px; } Where category is the taxonomy's slug. Note that you must add [] to the taxonomy slug. Because taxonomies accept multiple values by design. |
|
2 | 9 | Il y a 3 années et 10 mois | |
Changes are not immediately propagated with Site Tools in Siteground
Commencé par : nicolaS-3
in: Toolset Professional Support
Problem: Solution: |
|
2 | 5 | Il y a 4 années | |
Form Generic Field
Commencé par : nicolaS-3
in: Toolset Professional Support
Problem: The issue here is that the user wanted to remove the labels from their single checkbox field. Solution: This can be done by using the code below. add_filter('cred_filter_field_before_add_to_form', 'remove_cb_label', 10, 2); function remove_cb_label($field, $computed_values){ if(isset($field['id']) && in_array($field['id'], array('your-field-slug','field-slug2','field-slug-3'))){ $field['title'] = ''; } return $field; } Add the above to your Toolset custom code section in Toolset -> Settings -> Custom Code and just replace the field-slug options in the array with the slugs of your custom checkbox fields. |
|
2 | 8 | Il y a 4 années |