Amr
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Taxonomies that I have defined are no longer showing on the backend
Started by: Amr
in: Toolset Professional Support
Problem: I am unable to see several custom taxonomies when clicking links in the Toolset dashboard. I see an error message "Wrong Taxonomy specified." In CRED Forms, I see "There is a problem with ”Taxonomy Name” field. Please check CRED form." Solution: Recreate the custom taxonomies using the same slugs. |
2 | 7 | 5 years, 9 months ago | ||
Split: Custom Search For Users View Alternative
Started by: Amr in: Toolset Professional Support |
2 | 2 | 6 years, 3 months ago | ||
Custom Search For Users View Alternative
Started by: Amr in: Toolset Professional Support |
2 | 6 | 6 years, 3 months ago | ||
How can remove toolset “Add Media” button from CRED User forms.
Started by: Amr
in: Toolset Professional Support
Problem: I would like to remove the Add Media button from WYSIWYG input fields in a User Form. Solution: Add the following custom code to your child theme's functions.php file, or using a plugin like Code Snippets: function remove_toolset_buttons(){ // $post not available with init hook $postID = url_to_postid( $_SERVER['REQUEST_URI'] , '_wpg_def_keyword', true ); $target_pages = array( 1234, 5678 ); // Edit for pages with CRED forms if ( in_array( $postID, $target_pages ) ) { // remove the Add Media button (USER FORMS) remove_action( 'media_buttons', 'media_buttons' ); } } add_action( 'init', 'remove_toolset_buttons' ); Replace 1234, 5678 with a comma-separated list of Page IDs where these Forms will appear. |
2 | 3 | 6 years, 3 months ago | ||
Select Type Custom field not displaying
Started by: Amr in: Toolset Professional Support |
2 | 14 | 6 years, 5 months ago |