martinH-10
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 |
---|---|---|---|---|---|
Post form for unsubscribe
Started by: martinH-10 in: Toolset Professional Support |
2 | 14 | 5 years, 4 months ago | ||
Add terms from related post to new post using Forms API
Started by: martinH-10
in: Toolset Professional Support
Problem: I have two custom post types in a many-to-many relationship. I would like to use Forms to create one of the custom posts and use the Forms API to connect it to an existing post. I would like to copy all the terms associated with the existing post into the new post using the Forms API. Solution: To get the terms from the Job post, you need the Job post ID. Once you have the Job post ID, you can use wp_get_object_terms as described here: https://codex.wordpress.org/Function_Reference/wp_get_object_terms Then to set the terms on the new post, you can use wp_set_object_terms as described here: https://codex.wordpress.org/Function_Reference/wp_set_object_terms |
2 | 12 | 5 years, 4 months ago | ||
Movie poll
Started by: martinH-10 in: Toolset Professional Support |
2 | 11 | 5 years, 4 months ago | ||
View inside archive template dont show items
Started by: martinH-10 in: Toolset Professional Support |
2 | 12 | 5 years, 5 months ago | ||
Multiple modals on same page not working
Started by: martinH-10 in: Toolset Professional Support |
2 | 3 | 5 years, 5 months ago | ||
AJAX not saving values from more forms on one page
Started by: martinH-10 in: Toolset Professional Support |
2 | 2 | 5 years, 6 months ago | ||
Wp rocket + filters in custom search view
Started by: martinH-10 in: Toolset Professional Support |
2 | 3 | 5 years, 6 months ago | ||
Add class to multi select field in CRED
Started by: martinH-10 in: Toolset Professional Support |
1 | 2 | 5 years, 6 months ago | ||
Possible to create a Polls with Toolset?
Started by: martinH-10 in: Toolset Professional Support |
2 | 2 | 5 years, 9 months ago | ||
Paragraphs and HTML tags missing from divi content template
Started by: martinH-10
in: Toolset Professional Support
Problem: The problem here is that the user added their content to the Product Description section of their products and added html to the texts as well. Solution: This is happening because the user is using the [wpv-post-excerpt] shortcode. This is actually stripping the html from the excerpt area. A custom shortcode was used to resolve this. function wp_woo_prod_description() { $description = "Woocommerce is not active"; if ( class_exists( 'WooCommerce' ) ) { $product = wc_get_product( get_the_ID() ); $description = $product->get_short_description(); } return $description; } add_shortcode('wp_woo_prod_description','wp_woo_prod_description' ); Then add this to your template [wp_woo_prod_description] |
2 | 9 | 5 years, 10 months ago | ||
Can´t display layouts
Started by: martinH-10 in: Toolset Professional Support |
3 | 3 | 5 years, 11 months ago | ||
One Filter for two views
Started by: martinH-10 in: Toolset Professional Support |
2 | 2 | 6 years ago | ||
One Filter for two views
Started by: martinH-10 in: Toolset Professional Support |
2 | 2 | 6 years ago | ||
Speeding up website with lot of views per page
Started by: martinH-10 in: Toolset Professional Support |
2 | 11 | 6 years ago | ||
Javascript loading twice
Started by: martinH-10
in: Toolset Professional Support
Problem: So I looked at waterfall view with Youtube videos and it looks like it is parsing javascripts twice. I dont know why. Solution: That is Youtube Iframe tag, there isn't anything we can do, and in most browser, if it is same javascript files, it will be loaded from cache of browser. Relevant Documentation: |
2 | 7 | 6 years ago |