ioannisM-2
Support threads created in the last 30 days: 0
Favorite Forum Topics
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
CRED Notification mail blank after Toolset update
Started by: ruthE in: Toolset Professional Support |
2 | 9 | 7 years, 5 months ago | ||
Pass custom fields from a custom post to woocommerce product
1
2
Started by: davidZ-4 in: Toolset Professional Support |
3 | 18 | 7 years, 5 months ago | ||
how to save each step to database for multi steps form
Started by: Jeffrey in: Toolset Professional Support |
3 | 7 | 7 years, 5 months ago | ||
Auto-create multiple posts
Started by: Greig Neilson in: Toolset Professional Support |
3 | 6 | 7 years, 5 months ago | ||
Is conditional output in accordion possible?
Started by: pierreV-2
in: Toolset Professional Support
Problem: I would like to show and hide certain accordion panels and their corresponding headers depending on conditional logic Solution: It's not currently possible to surround entire accordion panels in conditional code, but you can use custom JavaScript and CSS to show and hide as necessary. Use conditional HTML output to place an element with a known CSS class in the panel. Target parent elements' classes and use .remove() as needed. // example jQuery('.hide-panel').closest('.panel').remove(); |
2 | 9 | 7 years, 5 months ago | ||
Trying to add a date range options to my view
1
2
Started by: nickT-2
in: Toolset Professional Support
Problem: I would like to use datepickers to set a date range to filter my View Solution: Views' native date range filters do not utilize datepickers. Instead, they utilize multiple select boxes to set individual date elements, like day, month, year, etc. If you want to use datepickers, you must implement a custom date field in your post type. This field must be automatically updated the first time a post is published. Then this custom field can be used as a date range filter with datepicker style controls. The following code should be placed in functions.php: function copy_custom_date_field_on_publish ( $post_id ) { // only copy over the publish date on original maintenance-issue posts $status = get_post_status( $post_id ); $pubdate = get_post_meta( $post_id, 'wpcf-issue-date', true); if ( $status != 'publish' || $pubdate ) return; $pubdate = get_the_date( 'U', $post_id ); update_post_meta( $post_id, 'wpcf-issue-date', $pubdate, '' ); } add_action( 'save_post', 'copy_custom_date_field_on_publish', 1000 ); Relevant Documentation: https://codex.wordpress.org/Plugin_API/Action_Reference/save_post |
2 | 30 | 7 years, 5 months ago | ||
Exculde one category from search se;ect menu
Started by: Jeff Coen in: Toolset Professional Support |
4 | 6 | 7 years, 5 months ago | ||
Select menu dropdown with no submit button on Custom Searches: Possible?
Started by: Jeff Coen
in: Toolset Professional Support
Problem: I would like to automatically submit my search form whenever someone selects an option in a select field. Solution: Add the following JavaScript code to Layouts CSS and JS (if you're using Layouts for the page) or to a script file: jQuery(document).on('ready', function() { jQuery('.js-wpv-filter-form-1303 select[name=wpv-category].js-wpv-filter-trigger, .js-wpv-filter-form-1303-TCPID1288 select[name=wpv-category].js-wpv-filter-trigger').on('change', function(e) { $form = jQuery(e.target).closest('form'); $form.submit(); }); }); Modify the '1303' and 'TCPID1288' parts of the selector to match your form filter elements. |
2 | 10 | 7 years, 5 months ago | ||
Display search filters in bootstrap columns
Started by: michaelM-28
in: Toolset Professional Support
Problem: My filter controls are arranged in several Bootstrap columns, but the select element overflows the bounds of the column and appears on the same line as the label. I would like it to be on its own line and only as wide as the column without overflowing. Solution: Ensure the HTML syntax surrounding your control elements is valid, with the proper opening and closing tags. Next, add CSS classes as needed to your select control using this format: [wpv-control taxonomy="subject" url_param="wpvsubject" type="select" default_label="Subject" hide_empty="true" class="my-class-name"] Finally, apply a 100% width to the select control using CSS: .my-class-name { width: 100%; } |
2 | 5 | 7 years, 5 months ago | ||
how to relationship between state and city when searching…..
Started by: Dharanendra Patil in: Toolset Professional Support |
2 | 7 | 7 years, 5 months ago | ||
Select parent field using generic form generic select and connect parent
Started by: Greig Neilson
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution with the following URL: Relevant Documentation: |
2 | 3 | 7 years, 6 months ago | ||
Types / Cred + WP Smush
Started by: Evan Seplow in: Toolset Professional Support |
2 | 4 | 7 years, 6 months ago | ||
Show Results in Modal
Started by: davidZ in: Toolset Professional Support |
2 | 4 | 7 years, 6 months ago | ||
Filtering of Parent Fields in Child view (Form) based on the User logged in
Started by: Viswanath Tata in: Toolset Professional Support |
2 | 4 | 7 years, 6 months ago | ||
Counting children of each parent
Started by: J S
in: Toolset Professional Support
Problem: I have a View of parent posts. I would like to show the number of child posts for each parent post inside this View. Solution: Relevant Documentation: |
2 | 5 | 7 years, 6 months ago |
Forum Topics Created
This user has not created any topics.