Mario
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
When to expect new releases?
Started by: Mario
in: Toolset Professional Support
Problem: Solution: If yes, please share with me the link to tickets where those bugs or features were reported by you and I will try my best to look into our system and forward your concerns ahead accordingly. Other plugins like CRED, Layouts are also getting updates from time to time as you can see in the changelog for each plugin. So yeah other plugins will be updated as necessary. Relevant Documentation: |
2 | 3 | 7 years ago | ||
WordPress and Toolset Increase PHP Requirement to PHP 7+ »?">how get the id of the previous post for WordPress and Toolset Increase PHP Requirement to PHP 7+ »?
Started by: Mario
in: Toolset Professional Support
Problem: function shortcode_next_post_id ($atts) { global $post; $next_post = get_next_post(); if (empty ($next_post)) return 0; return $next_post->ID; } add_shortcode('next-post-id', 'shortcode_next_post_id'); Solution: <a href="[wpv-post-url id=[next-post-id]]"> [types field='rs-brandname' id='[next-post-id]'][/types]</a> Please make sure you have already registered the custom shortcode name in the Toolset setting page: Relevant Documentation: |
2 | 4 | 7 years, 2 months ago | ||
how to disable automated insert of col-sm-12 in grid-layout?
Started by: Mario
in: Toolset Professional Support
Problem: |
2 | 3 | 7 years, 3 months ago | ||
Display form values within the message after submitting the form
Started by: Mario
in: Toolset Professional Support
Problem: Solution: function get_user_id() { if(isset($_GET['_target']) && $_GET['_target'] != ''){ return intval($_GET['_target']); } else return 0; } add_shortcode( 'get_user_id', 'get_user_id' ); 2. Register the ‘get_user_id’ shortcode first in Toolset >> Settings >> Front-end Content >> Third-party shortcode arguments. 3. Then add shortcode like this in CRED User form >> Message to display: [wpv-user field="user_email" id="[get_user_id]"] |
2 | 11 | 7 years, 3 months ago | ||
Fatal Error in Styling Editor
Started by: Mario in: Toolset Professional Support |
2 | 3 | 7 years, 3 months ago | ||
how add bootstrap for login dialog?
Started by: Mario
in: Toolset Professional Support
Problem: Solution: For reference, this should help: |
2 | 3 | 7 years, 3 months ago | ||
wpv_filter_override_auth_errors fires not just for errors
Started by: Mario
in: Toolset Professional Support
Problem: But wpv_filter_override_auth_errors is not working as expected on [wpv-login-form]. Solution: add_filter( 'wpv_filter_override_auth_errors', 'custom_wpv_override_auth_errors', 30, 3 ); function custom_wpv_override_auth_errors( $message, $class = '', $code = '' ) { if ( $code != '') { $message = __( '<strong>ERROR</strong>: ', 'wpv-views' ); switch( $code ) { case 'invalid_username': $message .= __( 'Invalid username.', 'wpv-views' ); break; case 'incorrect_password': $message .= __( 'The password you entered is incorrect.', 'wpv-views' ); break; case 'empty_password': $message .= __( 'The password field is empty.', 'wpv-views' ); break; case 'empty_username': $message .= __( 'The username field is empty.', 'wpv-views' ); break; default: $message .= __( 'Unknown error.', 'wpv-views' ); break; } if( !empty( $class ) ) { $message = '<div class="' . $class . '">' . $message . '</div>'; } return $message; } } Relevant Documentation: |
2 | 3 | 7 years, 3 months ago | ||
Search is missing in "Add New Post Group" dialog
Started by: Mario in: Toolset Professional Support |
2 | 6 | 7 years, 3 months ago | ||
CRED User registration form doesn´t show
Started by: Mario in: Toolset Professional Support |
1 | 2 | 7 years, 4 months ago | ||
Pagination shows %%page%% if not logged on, in backend
Started by: Mario in: Toolset Professional Support |
2 | 9 | 7 years, 4 months ago | ||
Bootstrap tooltip with Toolset Maps?
Started by: Mario
in: Toolset Professional Support
Problem: I would like to display a Bootstrap style tooltip inside the InfoWindow that displays when a marker is clicked or opened on my Toolset Map. Solution: This isn't currently possible because Google Maps crops all the content inside an InfoWindow. You cannot display a Tooltip because it would have to be displayed outside the InfoWindow panel. Instead you can use the standard Marker Title and Popup fields in each Marker. Relevant Documentation: https://toolset.com/documentation/user-guides/display-on-google-maps/ |
2 | 3 | 7 years, 4 months ago | ||
Rename fields within views, templates and layouts
Started by: Mario in: Toolset Professional Support |
2 | 3 | 7 years, 4 months ago | ||
Set title-attribute within pagination links
Started by: Mario in: Toolset Professional Support |
4 | 5 | 7 years, 5 months ago | ||
execute own shortcode inside marker_title-tag of wpv-map-marker
Started by: Mario
in: Toolset Professional Support
Problem: [wpv-map-marker map_id="map-all-stations" marker_id="[wpv-post-id]" marker_title="[own-shortcode]" marker_field="wpcf-st-adresse"] Solution: Relevant Documentation: |
2 | 3 | 7 years, 5 months ago | ||
Prevent double event ‘js_event_wpv_parametric_search_form_updated’
Started by: Mario
in: Toolset Professional Support
Problem: Solution: - This will require custom coding, you can try out the solutions posted here: - You might also want to remove your selectpicker refresh method which can help. |
2 | 3 | 7 years, 5 months ago |