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 |
---|---|---|---|---|---|
Cred Form associating with CPT
Started by: davidL-10
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 8 | 6 years, 12 months ago | ||
Trouble with Flex Slider
Started by: Charles in: Toolset Professional Support |
2 | 8 | 6 years, 12 months ago | ||
Access can no longer control permissions of a custom post type
1
2
Started by: gaborN
in: Toolset Professional Support
Problem: I would like to give Shop Manager users access to the log of emails created by the Log Emails plugin, but Access permissions do not seem to work as expected. Solution: Use custom code to modify the permissions defined by the Log Emails plugin. add_filter('register_post_type_args', 'site_log_emails_capabilities', 10, 2); function site_log_emails_capabilities($args, $post_type){ if ($post_type == 'log_emails_log'){ $args['capabilities']['edit_post'] = 'manage_woocommerce_orders'; $args['capabilities']['edit_posts'] = 'manage_woocommerce_orders'; $args['capabilities']['edit_others_posts'] = 'manage_woocommerce_orders'; $args['capabilities']['delete_post'] = 'manage_woocommerce_orders'; $args['capabilities']['delete_posts'] = 'manage_woocommerce_orders'; $args['capabilities']['read_post'] = 'manage_woocommerce_orders'; } return $args; } |
3 | 30 | 7 years ago | ||
How to order parent posts according to their child post count?
Started by: Boris in: Toolset Professional Support |
2 | 12 | 7 years, 1 month ago | ||
Get birth date year using php and calculate current age
Started by: davidZ-4 in: Toolset Professional Support |
2 | 3 | 7 years, 1 month ago | ||
multi layer memrbeship where top layer can create users and both manage same CPT
Started by: davidZ-4 in: Toolset Professional Support |
2 | 3 | 7 years, 1 month ago | ||
Video doesn’t play after AJAX results update
Started by: timE
in: Toolset Professional Support
Problem: Solution: You can find proposed solution in this specific case with the following reply: Relevant Documentation: |
2 | 7 | 7 years, 1 month ago | ||
Previous / Next within parent/child relationship
Started by: emilyT
in: Toolset Professional Support
Problem: I would like to include pagination on my single post pages that allows a user to navigate between posts that are children of the same parent post. Solution: Legacy Relationships: Add a pagination shortcode that will output the next and previous links based on the parent and child post types: // Add Pagination Shortcode function pagination() { $next_post = wpv_child(1, 'exhibition', 'painting'); $previous_post = wpv_child(-1, 'exhibition', 'painting'); $prev_pagination= ''; $next_pagination = ''; if($previous_post ){ $prev_pagination = "<div class='navigation'><div class='previousnav'> <a href='".get_permalink($previous_post->ID)."'> << ".get_the_title($previous_post->ID)."</a></div>"; } if($next_post){ $next_pagination = "<div class='nextnav'><a href='".get_permalink($next_post->ID)."'> ".get_the_title($next_post->ID).">></a></div>"; } $pagination = "<div class='currentexb'><a href='http://www.neilpinkett.co.uk/npwp/exhibition/''>GALLERY</a> >".get_the_title()."</div>"; return $prev_pagination.$pagination.$next_pagination; } add_shortcode( 'pagination', 'pagination' ); function wpv_child($step, $parentslug, $childslug) { global $post; $parent = get_post_meta($post->ID, '_wpcf_belongs_' . $parentslug . '_id', true); $children = get_posts(array('post_type' => $childslug, 'meta_key' => '_wpcf_belongs_' . $parentslug . '_id', 'meta_value' => $parent, 'numberposts' => -1)); $i = 0; foreach ($children as $i => $child) { if ($child->ID == $post->ID) break; } $i += $step; if (isset($children[$i])) return $children[$i]; } |
3 | 11 | 7 years, 1 month ago | ||
Modify a pagination script
Started by: Rune Brynestad in: Toolset Professional Support |
2 | 12 | 7 years, 2 months ago |
Forum Topics Created
This user has not created any topics.