Rostislav Avtodiychuk
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 |
---|---|---|---|---|---|
Ways to sell advertisment on site
Started by: Rostislav Avtodiychuk in: Toolset Professional Support |
2 | 2 | 5 years, 10 months ago | ||
How to insert parent and child relationship in CRED form?
Started by: Rostislav Avtodiychuk in: Toolset Professional Support |
2 | 6 | 6 years, 2 months ago | ||
LearnDash Message repeating in each of Layout cell
Started by: Rostislav Avtodiychuk
in: Toolset Professional Support
Problem: I am seeing some content from the LearnDash plugin repeated in multiple cells in my Layout. Solution: Use Visual Editor cells and be sure to "Disable the_content() filter" in the cell options. |
2 | 3 | 6 years, 3 months ago | ||
I need to set limit for wp-post-body length
Started by: Rostislav Avtodiychuk in: Toolset Professional Support |
2 | 5 | 6 years, 7 months ago | ||
How to see grandchild custom post with information of his parent and grandparent
Started by: Rostislav Avtodiychuk
in: Toolset Professional Support
Problem: I have 3 post types in a child -> parent -> grandparent hierarchy relationship. I would like to display information about the parent and grandparent in the child post. Solution: [wpv-post-title id="$parent-type-slug"] So for example, if your city post type slug is "city", then your code will be: [wpv-post-title id="$city"] To access information about a grandparent post, you can use a Content Template to change the context by passing in the $city operator for the id attribute: [wpv-post-body id="$city" view_template="your-content-template-slug"] Inside that Content Template, you can then use the parent post technique we used before to access the grandparent country post. If your country post type slug is "country" then your code in the Content Template will be: [wpv-post-title id="$country"] Relevant Documentation: |
2 | 3 | 6 years, 10 months ago | ||
Pass URL parameter to target page
Started by: Rostislav Avtodiychuk
in: Toolset Professional Support
Problem: I would like to add a URL parameter to a link's destination URL so I can use that URL parameter as a View filter. Solution: In a loop, you can use Views Shortcodes to build the HTML for a link tag with a URL parameter like this: <a href="[wpv-post-url]?country-id=[wpv-post-id]">[wpv-post-title]</a> Relevant Documentation: |
2 | 2 | 6 years, 10 months ago | ||
How create grandchild post with CRED post form with parent and child relations
Started by: Rostislav Avtodiychuk in: Toolset Professional Support |
2 | 2 | 6 years, 11 months ago | ||
After user form has been submitted, when I tryed login (wpw-login-form), the fie
Started by: Rostislav Avtodiychuk
in: Toolset Professional Support
Problem: Solution: If you need more robust login form only, you can look into other plugins that offer front-end login forms, that will allow you to add a form and you can redirect user to that 3rd party form page after CRED form is submitted: |
2 | 3 | 7 years ago | ||
Hello, I want to insert in one of my Cred forms taxonomies as radio buttons
Started by: Rostislav Avtodiychuk
in: Toolset Professional Support
Problem: Solution: For example: - if display='select', then single_select='true' will only allow a single option to be selected (by default multiple options can be selected) Relevant Documentation: |
2 | 3 | 7 years ago | ||
File extension in conditional
Started by: Rostislav Avtodiychuk
in: Toolset Professional Support
Problem: I would like to show custom field images at different sizes depending on their file extension. Solution: There's not an easy way to do this in Toolset, so you must add a custom shortcode to functions.php: // return the extension of a custom file URL (everything after last ".") add_shortcode( 'get_file_ext', 'get_file_ext_func'); function get_file_ext_func($atts) { $urls = $atts['file_url']; $fileparts = explode('.', $urls); return end($fileparts); } Next, register this shortcode to be used as a 3rd party shortcode argument by going to Toolset > Settings > Front-end content and typing "get_file_ext" in the 3rd party shortcode arguments area. Then you can use the shortcode do build a conditional: [wpv-conditional if="( '[get_file_ext file_url='[types field='your-img-slug' separator=', ' output='raw'][/types]']' eq 'jpg' )"] [types field='indexed' alt='%%ALT%%' title='%%TITLE%%' size='medium' align='none' resize='proportional' separator=', '][/types] [/wpv-conditional] [wpv-conditional if="( '[get_file_ext file_url='[types field='your-img-slug' separator=', ' output='raw'][/types]']' eq 'gif' )"] [types field='indexed' alt='%%ALT%%' title='%%TITLE%%' size='full' align='none' resize='proportional' separator=', '][/types] [/wpv-conditional] Relevant Documentation: |
2 | 3 | 7 years, 1 month ago | ||
Please help or assist me with integration other plugins
Started by: Rostislav Avtodiychuk
in: Toolset Professional Support
Problem: I want to determine if this plugin Design Tailor is compatible with Toolset, or if I can use its API with Toolset. Solution: No, this plugin does not use WordPress's database or API in any way, so Toolset will not be able to interact with its data. |
2 | 5 | 7 years, 3 months ago |