AtefR7377
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 |
---|---|---|---|---|---|
Bootstrap 4 and Bootstrap RTL
Started by: AtefR7377 in: Toolset Professional Support |
2 | 2 | 6 years, 4 months ago | ||
Post Relationship import/export
Started by: AtefR7377 in: Toolset Professional Support |
2 | 9 | 6 years, 5 months ago | ||
Problems in Creating custom Taxonomy Archive Page
Started by: AtefR7377 in: Toolset Professional Support |
1 | 3 | 6 years, 5 months ago | ||
Displaying Children posts based on Post relationships (many to many) not working
Started by: AtefR7377
in: Toolset Professional Support
Problem: I am trying to display a list of related posts in a many-to-many (M2M) relationship, but it's not working as expected. Solution: Be sure to use a Post Relationship filter, not a Post Parent filter. Post Parent filter is for a single hierarchical post type, Post Relationships filter is for posts in different post types. Relevant Documentation: |
2 | 2 | 6 years, 5 months ago | ||
Conditional Output if the post content is filled
Started by: AtefR7377
in: Toolset Professional Support
Problem: I would like to use conditional HTML to test whether or not the post content is empty. Solution: You can use a custom function to test if the body contents are empty: function wpv_conditional_post_has_content($type, $object) { $return = 0; if ( $type == 'posts' ) { if ( empty( $object->post_content ) ) { $return = 0; } else { $return = count($object->post_content); } } return $return; } Go to Toolset > Settings > Frontend Content > Functions inside conditional evaluations, and enter wpv_conditional_post_has_content to register this function for use in conditionals. Then you can use the function in a conditional like this: [wpv-conditional if="( wpv_conditional_post_has_content() eq '1' )"] <a href="#person-gallery"><button type="button" class="btn btn-primary">[wpml-string context="Person Gallery Anchor" name="Person Gallery Anchor"]الصور / الأيقونات المتاحة[/wpml-string]</button></a> [/wpv-conditional] Relevant Documentation: |
2 | 3 | 6 years, 5 months ago | ||
Only show child posts in a View if there are any
Started by: AtefR7377
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 6 years, 5 months ago | ||
Displaying Brother Posts not working for me
Started by: AtefR7377 in: Toolset Professional Support |
2 | 5 | 6 years, 5 months ago | ||
CSV Import of many-to-many relationship
Started by: AtefR7377 in: Toolset Professional Support |
2 | 2 | 6 years, 5 months ago | ||
Showing featured image automatically not working properly
Started by: AtefR7377
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 2 | 6 years, 5 months ago | ||
Yoast Breadcrumbs shortcode is not working for me
Started by: AtefR7377 in: Toolset Professional Support |
2 | 3 | 6 years, 5 months ago | ||
Pages instead or Archives Tutorial not working for me
Started by: AtefR7377 in: Toolset Professional Support |
2 | 7 | 6 years, 5 months ago | ||
Checkboxes show corrupt code compared to Radio Buttons when Exported
Started by: AtefR7377 in: Toolset Professional Support |
2 | 2 | 6 years, 6 months ago | ||
Slider showing Multiple Posts, and Breadcrumbs
Started by: AtefR7377 in: Toolset Professional Support |
3 | 5 | 6 years, 6 months ago | ||
How to add the RTL Bootstrap Css file for RTL WPML Post only?
Started by: AtefR7377
in: Toolset Professional Support
Problem: I would like to include the Bootstrap RTL CSS file on posts that are in an RTL language. Solution: Enqueue the RTL CSS file in your child theme like this: wp_enqueue_style( 'bootstrap-rtl', '//cdn.rawgit.com/morteza/bootstrap-rtl/v3.3.4/dist/css/bootstrap-rtl.min.css', array( 'toolset_bootstrap_styles' )); |
2 | 6 | 6 years, 6 months ago | ||
View to display sibling posts not working
Started by: AtefR7377
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 7 | 6 years, 6 months ago |