Minesh
In den letzten 30 Tagen erstellte Support-Threads: 0
Neueste Kundenfeedbacks
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
Lieblings-Forenthemen
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Cred Form associating with CPT
Gestartet von: 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 | vor 6 Jahren, 11 Monaten | ||
Trouble with Flex Slider
Gestartet von: Charles in: Toolset Professional Support |
2 | 8 | vor 6 Jahren, 11 Monaten | ||
Access can no longer control permissions of a custom post type
1
2
Gestartet von: 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 | vor 7 Jahren | ||
How to order parent posts according to their child post count?
Gestartet von: Boris in: Toolset Professional Support |
2 | 12 | vor 7 Jahren | ||
Get birth date year using php and calculate current age
Gestartet von: davidZ-4 in: Toolset Professional Support |
2 | 3 | vor 7 Jahren | ||
multi layer memrbeship where top layer can create users and both manage same CPT
Gestartet von: davidZ-4 in: Toolset Professional Support |
2 | 3 | vor 7 Jahren, 1 Monat | ||
Video doesn’t play after AJAX results update
Gestartet von: timE
in: Toolset Professional Support
Problem: Solution: You can find proposed solution in this specific case with the following reply: Relevant Documentation: |
2 | 7 | vor 7 Jahren, 1 Monat | ||
Previous / Next within parent/child relationship
Gestartet von: 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 | vor 7 Jahren, 1 Monat | ||
Modify a pagination script
Gestartet von: Rune Brynestad in: Toolset Professional Support |
2 | 12 | vor 7 Jahren, 1 Monat | ||
Cred interferes with Gravity Forms
1
2
Gestartet von: erikd-6 in: Toolset Professional Support |
2 | 18 | vor 7 Jahren, 4 Monaten |
Forum Topics Created
This user has not created any topics.