JakubV7709
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 |
---|---|---|---|---|---|
Create product to specific user
Started by: JakubV7709 in: Toolset Professional Support |
2 | 4 | 3 years, 11 months ago | ||
Chargable cred form – edit / new
Started by: JakubV7709
in: Toolset Professional Support
Problem: Charge users for submitting content using Toolset Forms plugin. Solution: You can follow our document to setup Toolset Forms and woocommerce. Relevant Documentation: https://toolset.com/course-lesson/charge-users-for-submitting-content/ |
2 | 3 | 4 years, 4 months ago | ||
Elementor x Toolset conflict views
Started by: JakubV7709 in: Toolset Professional Support |
2 | 2 | 4 years, 5 months ago | ||
CRED Expiration date doesn´t work
Started by: JakubV7709 in: Toolset Professional Support |
2 | 7 | 4 years, 7 months ago | ||
Archive ajax for filtering issue
Started by: JakubV7709
in: Toolset Professional Support
Problem: Display AJAX custom search form as a widget of in WordPress archive page. Solution: There isn't such kind of built-in feature within Views, in WordPress archive page, the AJAX search form won't work within sidebar/widget. Moreover it is not possible to add a Archive View as a Widget, this is only available for Post Views with Custom Searche form. Relevant Documentation: |
2 | 3 | 4 years, 7 months ago | ||
Two edit forms on one page
Started by: JakubV7709 in: Toolset Professional Support |
2 | 10 | 4 years, 8 months ago | ||
Validation custom field upload PDF edit form
Started by: JakubV7709
in: Toolset Professional Support
Problem: Validate custom upload fields in CRED. In order for custom upload fields to be validated with CRED you will need to ensure that AJAX upload is enabled for this form. This means that you form uses the wordpress media gallery to upload its files. Once this is enabled then the code below should allow you to validate your uploaded files. // For the resource file upload - check that the file is a PDF under 1MB in size. add_filter('cred_form_ajax_upload_validate','cred_filetype_size_validation',10,2); function cred_filetype_size_validation($error_fields, $form_data) { //field data are field values and errors list($fields,$errors)=$error_fields; //validate if specific form if ( ($form_data['id']==5050) || ($form_data['id']==846) ) { if(isset($fields['wpcf-produktovy-list'])) { //Retrieve file type $file_type_uploaded=$fields['wpcf-produktovy-list']['field_data']['type']; //Retrieve file size $file_size_uploaded=$fields['wpcf-produktovy-list']['field_data']['size']; //check if featured image exists if ( ($file_size_uploaded > 1000000) || ($file_type_uploaded != 'application/pdf') ) { //set error message for featured image $errors['produktovy-list'] = 'Sorry the file you have uploaded is not of correct type (PDF) or exceeded 1MB limit'; } } } //return result return array($fields,$errors); } For more information on this hook you can have a look at the documentation in the link below. |
2 | 7 | 5 years, 3 months ago | ||
Condition in CRED Form based on Views with output
Started by: JakubV7709
in: Toolset Professional Support
Problem: A View outputs just the found count—using the wpv-found-count shortcode—but it doesn't work when used in a conditional shortcode that tests the resulting number. Solution: The wrapper div can be disabled with its setting, and the whole of the Loop Output can be compressed to eliminate whitespace, like so: [wpv-layout-start][wpv-items-found][wpv-found-count]<!-- wpv-loop-start --><wpv-loop></wpv-loop><!-- wpv-loop-end -->[/wpv-items-found][wpv-no-items-found][/wpv-no-items-found][wpv-layout-end] That will then output just the number with no extra whitespace or markup and so can be used in a conditional shortcode. Relevant Documentation: |
2 | 5 | 5 years, 4 months ago | ||
Http(s) – expiration date
Started by: JakubV7709 in: Toolset Professional Support |
2 | 5 | 5 years, 4 months ago | ||
select the parent if user select the child JS
Started by: JakubV7709
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 6 | 5 years, 4 months ago | ||
Cannot create new child of taxanomy with disable parent by js
Started by: JakubV7709 in: Toolset Professional Support |
2 | 7 | 5 years, 4 months ago | ||
Message instead of form toolset scroll to top JS
Started by: JakubV7709 in: Toolset Professional Support |
3 | 4 | 5 years, 4 months ago | ||
Hide Parent Taxonomy in Cred Form
Started by: JakubV7709
in: Toolset Professional Support
Problem: I have a Form that includes a taxonomy input field using checkboxes. I would like to disable or remove the top-level items in this checkbox group. Solution: Customize the following JavaScript code to work with your site's content: jQuery(document).ready(function(){ jQuery('.wpt-form-set.wpt-form-set-checkboxes-vyrobce > li > label').remove(); )}; |
2 | 7 | 5 years, 4 months ago | ||
Edit user CRED form – image problems
Started by: JakubV7709 in: Toolset Professional Support |
2 | 3 | 5 years, 6 months ago | ||
Conditional based on image
Started by: JakubV7709 in: Toolset Professional Support |
2 | 4 | 5 years, 8 months ago |