Minesh
Support threads created in the last 30 days: 0
Recent client feedbacks
Mr Minesh did already a small function for us, and used to know about the ciisue between the Theme and conditional Fred-r.M
He is always trying to be most helpful. PZ
He consistently gives great advice. So thorough, knowledgable and helpful. A million thanks. LilianS-2
I have seen in other's tickets too Minesh gives proper solution! Sasank
Very helpful and knowledgable. BambiM
Did a fantastic job helping us before. He's quick, responsive and know his stuff. SeanN-5
Minesh worked on the previous issue GeoffD
Concise, and communicates well. He's been a big help when I need some, as have others on your team. Tom Gonzales
He is very professional and helpfull DomenicoS
Helps accurately! PrasadS
Favorite Forum Topics
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Starter theme installer error when generating site key
Started by: erikd-6 in: Toolset Professional Support |
2 | 6 | 4 years, 9 months ago | ||
Populate custom field with number of days calculated from two date fields
Started by: julieP
in: Toolset Professional Support
Problem: I have 3 custom fields: wpcf-start-date, wpcf-end-date and wpcf-total-days. When a form is submitted I'd like wpcf-total-days to be populated with the number of days from the other two fields. Solution: It needs custom codes, see the solution in details: Relevant Documentation: |
2 | 5 | 6 years, 2 months ago | ||
Split: Solution is not working anymore – form redirect not working should go to checkoutpage
Started by: Dido in: Toolset Professional Support |
2 | 7 | 6 years, 2 months ago | ||
How to customize jquery date picker to hide the available dates on end date based on start date with CRED
1
2
Started by: Dido
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 25 | 6 years, 2 months ago | ||
Need connection between Custom Post and their Woocommerce Order/Subscription
Started by: Brent Urbanski
in: Toolset Professional Support
Problem: I am building a community website. I am selling individual posts for business listings, job posts, events listings, etc. Each post type is setup as a Types custom post type. Site members (subscribers) create these listings via Toolset Forms on the frontend and they complete their purchase with Woocommerce Subscriptions. Everything is working as planned except for one important factor... the Posts and the WooCommerce Orders/Subscriptions do not appear to be connected to each other. Solution: It is possible with some custom codes, see the solution here: Relevant Documentation: |
2 | 9 | 6 years, 3 months ago | ||
Automatically connecting post types in many-many relationship
Started by: davidS-53
in: Toolset Professional Support
Problem: I have two post types: Studios and Artists. A Studio can have many Artists, and an Artist can belong to many Studios (set up as a many-many relationship). I have Toolset forms to create each post type. However, I cannot work out how to add a field to the Artist CRED form that automatically creates a link to the current Studio - I want to use the Artist Toolset form in the content template for a Studio. Solution: It is possible with some custom codes, for example: Relevant Documentation: |
2 | 6 | 6 years, 3 months ago | ||
How to set default distance and unit using toolset maps distance filter
Started by: julieP
in: Toolset Professional Support
Problem: Solution: For example: [wpv-control-distance default_distance="20" default_unit="mi" compare_field="town" distance_center_url_param="toolset_maps_distance_center" distance_radius_url_param="toolset_maps_distance_radius" distance_unit_url_param="toolset_maps_distance_unit" inputs_placeholder="Within 20 miles of %%CENTER%%"] Relevant Documentation: |
3 | 4 | 6 years, 3 months ago | ||
How to customize custom date datepicker field with Toolset CRED form.
Started by: Dido
in: Toolset Professional Support
Problem: The start date must be a date in the future and the end date must be greater then the start date. Is there a way to make sure people don't make. Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
3 | 11 | 6 years, 4 months ago | ||
Intermediary post ID in php
Started by: mohammadD in: Toolset Professional Support |
2 | 9 | 6 years, 4 months ago | ||
Conditional output based on child post
1
2
Started by: Pat
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 16 | 6 years, 4 months ago | ||
Preview/screenshot of uploaded file on front-end.
Started by: Guido
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 2 | 6 years, 4 months ago | ||
Display repeating field group with php
Started by: hellobarrio
in: Toolset Professional Support
Problem: I would like to know how to loop over repeating field groups with PHP. Solution: $parent = get_post( 12345 ); // the parent post that holds the RFG $sezioni = toolset_get_related_posts( $parent, // the parent post 'sezioni', // the RFG slug 'parent', // the post role in this relationship is 'parent' 1000000, // the maximum number of results 0, // the offset array(), // additional query arguments 'post_id', // return format 'child', // role to return ); // $sezioni is now an array of post IDs for each RFG $sez1 = get_post( $sezioni[0] ); // example, get the first Sezioni RFG ID $pulsanti = toolset_get_related_posts( $sez1, // the parent RFG 'pulsanti', // the RFG slug 'parent', // the sezioni role in this relationship is 'parent' 1000000, // the maximum number of results 0, // the offset array(), // additional query arguments 'post_id', // return format 'child', // role to return ); // $pulsanti is now an array of post IDs for each RFG in $sez1 Relevant Documentation: |
2 | 4 | 6 years, 4 months ago | ||
Method for user to choose post as “favorite”
1
2
Started by: Eric
in: Toolset Professional Support
Problem: I would like to allow my Users to "favorite" posts. Solution: [cred_generic_field field='your-lockbox-agent-id' type='select' class='' urlparam=''] { "required":0, "validate_format":0, "default":[[types usermeta="your-lockbox-agent-id" output="raw" user_current="true"][/types]], "options":[[wpv-view name='list-of-lockbox-agents-view-for-cred-forms']] } [/cred_generic_field] - Create a View of posts that will provide the options for the generic select field. Use this loop format: <wpv-loop> [wpv-item index=1] {"value":"[wpv-post-id]","label":"[wpv-post-title]"} [wpv-item index=other] ,{"value":"[wpv-post-id]","label":"[wpv-post-title]"} </wpv-loop> - Add the following custom filter code to your child theme's functions.php file: add_filter( 'wpv_filter_wpv_view_shortcode_output', 'prefix_clean_view_output', 5, 2 ); function prefix_clean_view_output( $out, $id ) { $ids = array( 12345, 67890 ); if ( in_array( $id, $ids )) { $start = strpos( $out, '<!-- wpv-loop-start -->' ); if ( $start !== false && strrpos( $out, '<!-- wpv-loop-end -->', $start ) !== false ) { $start = $start + strlen( '<!-- wpv-loop-start -->' ); $out = substr( $out , $start ); $end = strrpos( $out, '<!-- wpv-loop-end -->' ); $out = substr( $out, 0, $end ); } else { $start = strpos( $out, '>' ); if ( $start !== false) { $out = substr( $out, $start + 1 ); $end = strpos( $out, '<' ); $out = trim(substr( $out, 0, $end )); } } } return $out; } - Replace 12345, 67890 with the View's ID, or a comma-separated list of View IDs if you want to apply this filter to more than one View. add_action('cred_save_data', 'save_new_lockbox_agent',10,2); function save_new_lockbox_agent($user_id, $form_data) { $ids = array( 38, 78 ); if( in_array( $form_data['id'], $ids )){ $agent = $_POST['your-lockbox-agent-id']; update_user_meta($user_id, 'wpcf-your-lockbox-agent-id', $agent ); } } Relevant Documentation: |
3 | 27 | 6 years, 5 months ago | ||
Form notification to email from parent post field no longer working after Types 3.0 update
Started by: thomasD-2
in: Toolset Professional Support
Problem: I have a Form that triggers an email notification. I send the notification to an email address that is stored in a parent post's custom field, by using the CRED API cred_notification_recipients. Since updating to Types 3.0, the email notifications are not sent as expected. Solution: Update the code to work with the new Post Relationships API, and ensure the child post status is not "private". add_filter('cred_notification_recipients', 'modify_recipients', 10, 4); function modify_recipients($recipients, $notification, $form_id, $post_id) { // Check notification name matches target notification if ( isset($notification['name']) && 'Mail an Veranstalter' == $notification['name'] ) { // Add email recipient $parent_id = toolset_get_parent_post_by_type( $post_id, 'veranstaltung' ); $email_of_organizer = get_post_meta($parent_id, 'wpcf-veranstalter-email', true); $recipients[] = array( 'to' => 'cc', 'address' => '$email_of_organizer', 'name' => '', 'lastname' => '' ); } return $recipients; } Relevant Documentation: |
2 | 5 | 6 years, 5 months ago | ||
Getting -The items in the conection are not actually connected -message
Started by: Stephen Vaughan
in: Toolset Professional Support
Problem: Editing Existing Connections between Related Posts and using the Albums/Songs (Beatles - Revolver) examples with the intermediary post type tracks. if I set up a view based on the intermediary post type tracks I can order by the track number but when I add the relationship form for editing the intermediary field track number I get the following message: The items in the conection are not actually connected Solution: You need to edit the post relationship(between "Albums" and "Songs") within a "Songs" post. See the workaround: Relevant Documentation: |
2 | 9 | 6 years, 5 months ago |
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
On Plugins page showing notice "You must have a valid subscription "
Started by: Minesh in: Toolset Professional Support |
8 | 11 | 6 years, 7 months ago |