Akhil
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
How to customize error messages of the Toolset login and reset password links?
Gestartet von: marcB-6
in: Toolset Professional Support
Problem: Solution: wpv_filter_override_auth_errors Example: add_filter( 'wpv_filter_override_auth_errors', 'custom_wpv_override_auth_errors', 30, 3 ); function custom_wpv_override_auth_errors( $message, $class = '', $code = '' ) { switch( $code ) { case 'invalid_key'; $message = __( 'CUSTOM VALUE', 'wpv-views' ); break; case 'invalidcombo'; $message = __( 'CUSTOM VALUE', 'wpv-views' ); break; } return $message; } Relevant Documentation: |
2 | 14 | vor 7 Jahren, 2 Monaten | ||
Create a date separator in a view
Gestartet von: stuart in: Toolset Professional Support |
2 | 4 | vor 7 Jahren, 2 Monaten | ||
Custom fields content not updating after adding SSL
Gestartet von: daveM
in: Types Community Support
Problem: Solution: 2. Now, before checking the Custom fields on front page, please clear all sort of caches in your site plugin cache (if any) / CDN cache (if any) / browser cache. Other way to reload the images in the Custom fields, is to manually re-add the images in the post. |
2 | 3 | vor 7 Jahren, 2 Monaten | ||
Please help with URL parameters
Gestartet von: keithT-3
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 7 | vor 7 Jahren, 3 Monaten | ||
problem : Searching Texts in Custom Fields with Views and Relevanssi.
Gestartet von: insooJ in: Toolset Professional Support |
2 | 7 | vor 7 Jahren, 3 Monaten | ||
There’s a bug when using Layouts plugin with the Elementor Builder
Gestartet von: mohamed-saadC
in: Toolset Professional Support
Problem: Solution: This is the solution: 1. We are providing a filter to easily turn off the filter when needed: apply_filters( 'ddl_apply_the_content_filter_in_cells', true, $this ) 2. The best solution is to use this custom solution which you can apply when you really need it (you can even define it based on conditions), in functions.php: add_filter( 'ddl_apply_the_content_filter_in_cells', 'my_override_to_content_filter' ); function my_override_to_content_filter( $bool, $cell ){ $content = $cell.get('content'); if( strpos( $content, 'find me') ){ $bool = false; } return $bool; } |
4 | 8 | vor 7 Jahren, 3 Monaten | ||
Need code to auto generate nice title
Gestartet von: Brad Tipper in: Toolset Professional Support |
2 | 6 | vor 7 Jahren, 4 Monaten | ||
How to get a lightbox effect
Gestartet von: russellH-3
in: Toolset Professional Support
Problem: I would like to show a grid of featured images that trigger a lightbox-style overlay when you click one. Solution: <a href="[wpv-post-featured-image output='url' size='full']" data-lightbox="gallery" showImageNumberLabel="false" alwaysShowNavOnTouchDevices="true" data-title="[wpv-post-featured-image output='caption']">[wpv-post-featured-image output='img' size="custom" width="300" height="300" crop="true"]</a> Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-post-featured-image |
3 | 7 | vor 7 Jahren, 5 Monaten | ||
Slider with lightbox inside single post.
1
2
Gestartet von: Akhil in: Toolset Professional Support |
2 | 21 | vor 7 Jahren, 5 Monaten | ||
CRED form is not showing from which page the inquiry has been posted
Gestartet von: indianplayschools
in: Toolset Professional Support
Problem: I have a CRED form that appears on a custom post type single post. When the CRED form is submitted, I have an email notification set up. In this notification, I would like to include a link to the single post page. Solution: Use generic fields in your CRED form to capture the current page title and link: [cred_generic_field field='currentpagetitle' type='hidden' class='' urlparam=''] { "required":0, "validate_format":0, "persist": 1, "default":"[wpv-post-title id='$current-page']" } [/cred_generic_field] [cred_generic_field field='currentpageurl' type='hidden' class='' urlparam=''] { "required":0, "validate_format":0, "persist": 1, "default":"[wpv-post-url id='$current-page']" } [/cred_generic_field] - Add the following code to functions.php to enable your custom placeholders: function custom_generic_field_notification( $defaultPlaceHolders ) { $newPlaceHolders = array( '%%FORCED_PARENT_TITLE%%' => $_REQUEST['currentpagetitle'], '%%FORCED_PARENT_URL%%' => $_REQUEST['currentpageurl'] ); return array_merge($defaultPlaceHolders, $newPlaceHolders ); } - Add the title and link placeholders to your email: <a href="%%FORCED_PARENT_URL%%">%%FORCED_PARENT_TITLE%%</a> Relevant Documentation: https://toolset.com/documentation/user-guides/how-to-use-custom-placeholders-in-cred-notifications/ |
2 | 16 | vor 7 Jahren, 6 Monaten | ||
Dequeue unwanted scripts and embedded snippets
Gestartet von: AndyS4926 in: Toolset Professional Support |
2 | 6 | vor 7 Jahren, 6 Monaten | ||
view returns images at different sizes to what they should appear as.
Gestartet von: veronicaG-2 in: Toolset Professional Support |
2 | 9 | vor 7 Jahren, 6 Monaten | ||
how can I create a background image for a cell (bootstrap) in views
Gestartet von: markus in: Toolset Professional Support |
4 | 10 | vor 7 Jahren, 6 Monaten | ||
Defining marker address with 2 custom fields
Gestartet von: Pat in: Toolset Professional Support |
2 | 3 | vor 7 Jahren, 6 Monaten | ||
Is there a way to save the dynamically generated URL from a parametric search?
Gestartet von: shaneR-4 in: Toolset Professional Support |
2 | 4 | vor 7 Jahren, 6 Monaten |