types 3.4.7 breaks back end as soon as activated
Started by: michaelG-21
in: Toolset Professional Support
2
4
4 years, 4 months ago
Shane
Displaying Term Fields on the Front-end
Started by: Paulo Ramalho
in: Toolset Professional Support
Quick solution available
Problem:
The user is building a theme and would like to display some term fields inside the single post template file.
Solution:
Use similar code to this one to get the values of the terms:
$taxonomy_slug = "book-author";
$authors = get_the_terms( get_the_ID(), $taxonomy_slug );
$author_ids = wp_list_pluck( $authors, 'term_id' );
foreach ($author_ids as $author_id) {
echo types_render_termmeta("foto-del-autor", array( "term_id" => $author_id, "width" => "100", "height" => "100" ) );
}
Update the first line with your taxonomy slug.
Relevant Documentation:
3
6
4 years, 4 months ago
Paulo Ramalho
edit forms
Started by: ericW-5
in: Toolset Professional Support
2
2
4 years, 4 months ago
Christian Cox
View grid is not displayed correctly
Started by: alexandreG-2
in: Toolset Professional Support
Quick solution available
2
3
4 years, 4 months ago
alexandreG-2
Apply CSS to just one out of many SELECTs in Forms
Started by: nicolaS-3
in: Toolset Professional Support
Quick solution available
Problem:
The user would like to apply custom CSS to one select field inside a form.
Solution:
You can target custom fields using the following selector:
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
4 years, 4 months ago
nicolaS-3
CSS & JS for Collapsible Menu
Started by: ramez-refaatG
in: Toolset Professional Support
Quick solution available
3
7
4 years, 4 months ago
ramez-refaatG
1 camp does not adjust to code
Started by: maiS
in: Toolset Professional Support
2
9
4 years, 4 months ago
Waqar
Filtering with repeating fields
Started by: kenR
in: Toolset Professional Support
2
2
4 years, 4 months ago
Luo Yang
URL for custom post type blog
Started by: leilaG
in: Toolset Professional Support
2
13
4 years, 4 months ago
leilaG
conditional group to display field value
Started by: salimA
in: Toolset Professional Support
Quick solution available
Problem: I would like to display a field from the current User's profile but it does not display.
Solution: Use user_current in the field shortcode to display the current User's meta field values.
Test value: [types usermeta='payment' user_current='true'][/types]<br />
Relevant Documentation:
https://toolset.com/documentation/customizing-sites-using-php/functions/
2
5
4 years, 4 months ago
salimA
Map Markers not showing??
Started by: lucyH
in: Toolset Professional Support
2
2
4 years, 4 months ago
Luo Yang
Site key not registering the add-ons?
Started by: lucyH
in: Toolset Professional Support
2
3
4 years, 4 months ago
Luo Yang
Pagination isn't appearing for a view
Started by: Saul Baizman
in: Toolset Professional Support
2
3
4 years, 4 months ago
Saul Baizman
Serious Performance issues using toolset
Started by: liviuH
in: Toolset Professional Support
3
14
4 years, 4 months ago
Shane
Toolset Map Load cache table not working
Started by: robina-2
in: Toolset Professional Support
Quick solution available
Problem:
I am trying to cache all my locations data I am not able to make this working , I have 170 locations that imported from wp all import, it only works when I save like single location in the post editor, I found that if the cache is not working then the map is not displaying correctly
Solution:
The client fixed this issue by reset the Google map API keys.
Relevant Documentation:
https://toolset.com/course-lesson/creating-a-maps-api-key/
2
6
4 years, 4 months ago
robina-2