scottL-3
Support threads created in the last 30 days: 1
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Display formatted text from custom WYSIWYG field applied to taxonomy term
Started by: scottL-3
in: Toolset Professional Support
Problem: I have a custom WYSIWYG field applied to a custom taxonomy, but when I try to display the contents of the field using a wpv-taxonomy-field shortcode the formatting is lost. Solution: Use the Types termmeta field shortcode to display formatted contents from a termmeta WYSIWYG field. The wpv-taxonomy-field shortcode is best for accessing raw data. [types termmeta='product-category-installation-information'][/types] Relevant Documentation: |
|
3 | 6 | 6 years, 5 months ago | |
Datepicker change event
Started by: scottL-3
in: Toolset Professional Support
Problem: How can I add callbacks to a custom datepicker field using custom JavaScript? Solution: Use the Datepicker API from jQuery UI to hook into the onClose and onSelect events as needed: jQuery(document).ready(function(){ jQuery('input.hasDatepicker').datepicker('option','onClose',function(){ console.log('close'); }); jQuery('input.hasDatepicker').datepicker('option','onSelect',function(){ console.log('select'); }); }); Relevant Documentation: |
|
3 | 3 | 6 years, 6 months ago |