petranL
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Passwords do not match
Iniciado por: petranL en: Toolset Professional Support |
3 | 3 | hace 2 años, 7 meses | ||
Default WP post fields not longer visible in admin menu
Iniciado por: petranL en: Toolset Professional Support |
2 | 4 | hace 2 años, 7 meses | ||
WYSIWYG not updating
Iniciado por: petranL en: Toolset Professional Support |
3 | 8 | hace 2 años, 8 meses | ||
Relations messed up after database update
Iniciado por: petranL en: Toolset Professional Support |
2 | 6 | hace 3 años, 11 meses | ||
Toolset blocks translation and styles not passed to translated page
Iniciado por: petranL en: Toolset Professional Support |
2 | 11 | hace 4 años, 2 meses | ||
Acces is breaking the backend
Iniciado por: petranL en: Toolset Professional Support |
2 | 6 | hace 4 años, 6 meses | ||
Split: Two view blocks on same page can’t have different Query – activating woocommerce views causing issue
Iniciado por: petranL
en: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 3 | hace 4 años, 9 meses | ||
Two view blocks on same page can't have different Query
Iniciado por: petranL en: Toolset Professional Support |
2 | 9 | hace 4 años, 9 meses | ||
Confirmation mail not sent after registering new user using Toolset form
Iniciado por: petranL en: Toolset Professional Support |
2 | 3 | hace 5 años, 2 meses | ||
Notification e-mail not send
Iniciado por: petranL en: Toolset Professional Support |
3 | 11 | hace 5 años, 3 meses | ||
How to make a view that only shows posts that are not related
Iniciado por: petranL en: Toolset Professional Support |
2 | 2 | hace 5 años, 6 meses | ||
Content template seems to forget it’s usage
Iniciado por: petranL
en: Toolset Professional Support
Problem: Make a change to a content template build with Divi. I got: The message: Some of your settings for this page have changed, because they got copied from the Product enkele weergave template. To change these settings you should edit Product enkele weergave. Solution: This is a known issue, you can try this: In section "Theme Options", option "Layout" choose "Use Theme Settings", and test again Relevant Documentation: |
2 | 6 | hace 5 años, 7 meses | ||
Link to edit post form problem
Iniciado por: petranL
en: Toolset Professional Support
Problem: Solution: |
2 | 4 | hace 5 años, 8 meses | ||
Display text on frontend depending of the choice of a multi checkbox field
Iniciado por: petranL en: Toolset Professional Support |
2 | 3 | hace 5 años, 11 meses | ||
Filter pages of grandparents
Iniciado por: petranL
en: Toolset Professional Support
Problem: I have a View that shows Pages (a hierarchical post type). I would like to show a random Page, filtered by a post ancestor. Any descendant Pages of that ancestor should be shown by the View. Solution: Use a custom shortcode to generate a comma-separated list of all the descendant post IDs: function get_all_descendent_pages($atts) { global $post; $all_wp_pages = get_pages(); $descendent_pages = get_page_children( $post->ID, $all_wp_pages ); $ids = array(); foreach( $descendent_pages as $dp ) { array_push( $ids, $dp->ID ); } return implode(',', $ids); } add_shortcode("get-all-descendent-pages", "get_all_descendent_pages"); Place this shortcode on your ancestor Page: [get-all-descendent-pages] //results: 123,456,789 Add this shortcode in Toolset > Settings > Front-end Content > Third-party shortcode arguments. Use the custom shortcode to supply the value of a post IDs shortcode attribute for your View: [wpv-view name="anderen-lezen-ook-nz" ids="[get-all-descendent-pages]"] Change the View's Query Filter to filter by post ID, set by a shortcode attribute "ids". |
2 | 4 | hace 6 años, 3 meses |