Mario
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Fala error: function get() on boolean in ../plugins/wp-views/vendor/toolset/too
Gestartet von: Mario in: Toolset Professional Support |
1 | 2 | vor 7 Jahren | ||
When to expect new releases?
Gestartet von: 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 | vor 7 Jahren | ||
CRED Auto Draft a9aeee7d3d68dd614fb60c12da648231 »?">how get the id of the previous post for CRED Auto Draft a9aeee7d3d68dd614fb60c12da648231 »?
Gestartet von: 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 | vor 7 Jahren, 2 Monaten | ||
how to disable automated insert of col-sm-12 in grid-layout?
Gestartet von: Mario
in: Toolset Professional Support
Problem: |
2 | 3 | vor 7 Jahren, 3 Monaten | ||
Display form values within the message after submitting the form
Gestartet von: 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 | vor 7 Jahren, 3 Monaten | ||
Fatal Error in Styling Editor
Gestartet von: Mario in: Toolset Professional Support |
2 | 3 | vor 7 Jahren, 4 Monaten | ||
how add bootstrap for login dialog?
Gestartet von: Mario
in: Toolset Professional Support
Problem: Solution: For reference, this should help: |
2 | 3 | vor 7 Jahren, 4 Monaten | ||
wpv_filter_override_auth_errors fires not just for errors
Gestartet von: 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 | vor 7 Jahren, 4 Monaten |