daveG-7
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 |
---|---|---|---|---|---|
Errors with Cred Commerce
Started by: daveG-7 in: Toolset Professional Support |
2 | 7 | 5 years, 4 months ago | ||
CRED post form that requires payment going to blank cart page instead
1
2
Started by: daveG-7 in: Toolset Professional Support |
3 | 25 | 5 years, 6 months ago | ||
Forms are no longer editable
Started by: daveG-7
in: Toolset Professional Support
Problem: Solution: I suspect that the issue here is being caused by a plugin conflict. What I would recommend that you do is to temporarily disable the non-toolset plugins and check again to see if the form editor show up again. In this users case the issue was being caused by the Accordions plugins. |
2 | 7 | 5 years, 6 months ago | ||
Form returning “Form type and post type do not match”
Started by: daveG-7
in: Toolset Professional Support
Problem: I have a working form to edit a users post, linked from the users account page. I am trying to add a form to renew the post, which is very similar. However, when I try to test it, I get the error: "Form type and post type do not match" Solution: I assume we are talking about a Toolset form for editing post, you are going to edit the specific post depends on the URL parameter "post_ids". If it is, you can get the URL parameter value with shortcode [wpv-search-term], for example: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-search-term And pass it to Toolset form shortcode and test again, for example: Relevant Documentation: https://toolset.com/documentation/user-guides/cred-shortcodes/#cred_form |
2 | 3 | 6 years, 3 months ago | ||
Conditional Output based on post relationships
Started by: daveG-7
in: Toolset Professional Support
Problem: Solution: /** * Register connections shortcode * * <a href="https://toolset.com/forums/users/att/" rel="nofollow" tabindex="79">@att</a> (string) relationship : post relationship slug * @return count of connected posts */ add_shortcode( 'connections', function( $atts = [] ){ // provide defaults $atts = shortcode_atts( array( 'relationship' => '', ), $atts ); global $post; $count = 0; $relationship = toolset_get_relationship( $atts['relationship'] ); if ( $relationship ) { $parent = $relationship['roles']['parent']['types'][0]; $child = $relationship['roles']['child']['types'][0]; $type = $post->post_type; $origin = ( $parent == $type ) ? 'parent' : 'child'; // Get connected posts $connections = toolset_get_related_posts( $post->ID, $atts['relationship'], $origin, 9999, 0, array(), 'post_id', 'other', null, 'ASC', true, $count ); } return $count; }); You need to specify the relationship slug like so: [connections relationship='cocktail-spirit'] And the custom shortcode will need registering at Toolset > Settings > Front-end Content to be able to use it in wpv-conditional shortcodes. Relevant Documentation: |
3 | 6 | 6 years, 4 months ago | ||
Redirecting login form based on passed URL parameters
Started by: daveG-7 in: Toolset Professional Support |
2 | 6 | 6 years, 6 months ago | ||
Layouts in Access error templates not showing footer correctly
Started by: daveG-7 in: Toolset Professional Support |
2 | 15 | 6 years, 7 months ago | ||
In Beta release, problems adding post relationships through post backend
Started by: daveG-7
in: Toolset Professional Support
Problem: Compatibility problem between Types Beta plugin with theme "Stockholm", try to connect an existing post to a currently edited post, and have the Stockholm Theme active, then you cannot save this connection as the save button is disabled. Solution: This is fixed Types 3.0, you can download it here: Relevant Documentation: |
2 | 8 | 6 years, 7 months ago | ||
First name field in notification email stopped working
Started by: daveG-7
in: Toolset Professional Support
Problem: Shortcode in Toolset form email notification does not work, for example: Solution: It is a known bug, It is fixed in next stable version of CRED(Toolset Form) plugin 2.1. Relevant Documentation: |
3 | 12 | 6 years, 8 months ago | ||
Adding a default entry to multiple select search filters
Started by: daveG-7
in: Toolset Professional Support
Problem: I would like my multiple select search filters to have a default entry of "Search All" selected Solution: The attribute "default_label" works only for the single select dropdown menu, it does not work for the multi-select field, Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-control-post-taxonomy |
3 | 10 | 6 years, 8 months ago | ||
Emails from Cred post forms not working
Started by: daveG-7
in: Toolset Professional Support
Problem: Failed to send email notifications with CRED user form. Solution: It's not a Toolset or WordPress issue, they're being blocked elsewhere, most likely by the hosting. Relevant Documentation: |
2 | 3 | 6 years, 8 months ago | ||
Recaptcha scrolls to bottom of page on verification in iOS
Started by: daveG-7 in: Toolset Professional Support |
2 | 5 | 6 years, 8 months ago | ||
Hover over link in search results list to cause hover state on map markers
Started by: daveG-7
in: Toolset Professional Support
Problem: I would like to focus on a Map Marker when I click a link in my search results, and I would like to trigger the hover state of a Map Marker when I hover over a link in my search results. Solution: Use the Interactions panel on the "Focus on Marker" button pop-up dialog to turn on these features. |
2 | 3 | 6 years, 9 months ago | ||
Problems with Google Maps popup infowindows
Started by: daveG-7
in: Toolset Professional Support
Problem: Setup border color/width for Google map marker popup window. Solution: You can modify your CSS codes as below, and test again: #js-wpv-addon-maps-render-map-5 div[style*="cursor: default"] { border: 2px solid black; overflow: hidden; } See screenshot overflow.JPG https://cdn.toolset.com/wp-content/uploads/2018/04/630852-orverflow.JPG |
2 | 8 | 6 years, 9 months ago | ||
Errors or running javascript before or after View results are updated
Started by: daveG-7
in: Toolset Professional Support
Problem: I tried to add some custom JS codes in the Custom Search Settings Javascript Settings, and got the same error each time: the JS worked after updating the search filters, but it broke the search: Solution: It is a custom JS code problem, I suggest you follow our document to setup your custom JS codes using Jquery framework, which is built-in feature of WordPress: And the client resolved the problem by loading the script from the page instead of through Views. Relevant Documentation: https://toolset.com/documentation/user-guides/adding-custom-javascript-views/ |
2 | 4 | 6 years, 9 months ago |