Ido Angel
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 |
---|---|---|---|---|---|
post group access doesn’t work in non-default languages
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: This page is set to show a different layout for "guests" - showing the login screen. it works only in english (the default language). when you switch to french or german, you can actually see the content of the page and the access control for the post group doesn't work anymore. Solution: I suggest you setup one same layout for all user role, in this layout display a visual editor cell, and use Access shortcode [types_access] to display different contents for different user role. Relevant Documentation: https://toolset.com/documentation/user-guides/access-control-texts-inside-page-content/ |
2 | 5 | hace 5 años, 6 meses | ||
when cached, access settings for guest users is working only after hard refresh
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 3 | hace 5 años, 6 meses | ||
limit date picket dates/times
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 11 | hace 5 años, 6 meses | ||
excerpt from custom field multilines – with breaks
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case with the following reply: Relevant Documentation: |
2 | 5 | hace 5 años, 6 meses | ||
when activating wpml string translations, getting fatal error
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: When I activate WPML String Translation with Forms active, I see a Fatal Error. Fatal error: require_once(): Failed opening required 'WPTOOLSET_FORMS_ABSPATH/classes/class.conditional.php' in /wp-content/plugins/types/vendor/toolset/types/embedded/includes/conditional-display.php on line 35 Solution: // require_once WPCF_EMBEDDED_ABSPATH . '/includes/conditional-display.php'; Update the file on the server. |
3 | 10 | hace 5 años, 6 meses | ||
edit user form keeps disaplaying an error
Iniciado por: Ido Angel en: Toolset Professional Support |
1 | 4 | hace 5 años, 6 meses | ||
conditional – comments number – not working
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: Show a different image if there are comments/no comments Solution: You can try shortcode [wpv-post-comments-number] like this: https://toolset.com/forums/topic/conditional-comments-number-not-working/#post-1249021 Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-post-comments-number |
2 | 3 | hace 5 años, 6 meses | ||
recover lost content templates and views
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 3 | hace 5 años, 6 meses | ||
layout with view with flexslider distorted
1
2
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 20 | hace 5 años, 6 meses | ||
post content template not working
Iniciado por: Ido Angel en: Toolset Professional Support |
1 | 2 | hace 5 años, 6 meses | ||
conditional for wpml language
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: The issue here is that the user had some custom code shortcode to get the current language for the page. function wpml_language_code_value_func() { global $post; $my_post_language_details = apply_filters( 'wpml_post_language_details', NULL, $post->ID ); $value = $my_post_language_details['language_code']; return $value; } add_shortcode('wpml_language_code_value', 'wpml_language_code_value_func'); They wanted to use this is a conditional code to display different content based on the language. However when added to a conditional code the shorcode doesn't work. Solution: Given that this is a custom shortcode it needs to be added to the views 3rd party shortcode arguments. If the shortcode name isn't added here then it won't work inside the conditional code. This can be found at Toolset->Settings -> Frontend. |
3 | 5 | hace 5 años, 7 meses | ||
what would be the best way to create a «group gift» product?
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case with the following reply: Relevant Documentation: |
2 | 3 | hace 5 años, 8 meses | ||
group search results by post type
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 4 | hace 5 años, 8 meses | ||
Unable to charge with cred commerce
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: I would like to create a User form that is integrated with Forms Commerce. I am trying to select the option "The form specifies the product according to the value of this custom field" but my field never appears. Solution: |
2 | 5 | hace 5 años, 9 meses | ||
pass newly created post id with url parameter to target page
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: I would like to use the Forms API to redirect to a specific URL, including a parameter set by the new post ID. Solution: The second parameter in the callback function, $post_id, contains the ID of the created or edited post. add_filter('cred_success_redirect', 'custom_purchase_redirect',10,3); function custom_purchase_redirect($url, $post_id, $form_data) { if ($form_data['id']==60) { $redirect = $url . "?fit=" . $post_id; return $redirect; } return $url; } Relevant Documentation: |
2 | 3 | hace 5 años, 10 meses |