jussiP
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 |
---|---|---|---|---|---|
Date comparison error with Tribe Events Calendar after update
Started by: jussiP in: Toolset Professional Support |
3 | 6 | 6 years, 1 month ago | ||
Passing values to Views loop to make a comparison
Started by: jussiP in: Toolset Professional Support |
2 | 2 | 6 years, 4 months ago | ||
Removing custom post type slug from url
Started by: jussiP
in: Toolset Professional Support
Problem: Solution: |
2 | 2 | 6 years, 9 months ago | ||
Views from another site of multisite
Started by: jussiP
in: Toolset Professional Support
Problem: Solution: You would use the switch_to_blog function and then the render_view function. Relevant Documentation: |
2 | 4 | 6 years, 9 months ago | ||
Genesis breadcrumbs
Started by: jussiP in: Toolset Professional Support |
2 | 2 | 6 years, 11 months ago | ||
Set Condition(s) button is not working when editing post fields
Started by: jussiP
in: Toolset Professional Support
Problem: With Views 2.5.0 active, I am unable to add or edit conditional display rules for custom fields. Solution: Apply the patch described in the erratum post here: |
2 | 3 | 7 years ago | ||
Toolset Access – limited content in search results?
Started by: jussiP in: Toolset Professional Support |
2 | 2 | 7 years, 1 month ago | ||
Using own php-function in Views loop editor
Started by: jussiP
in: Types Community Support
Problem: Solution: [my_custom_shortcode attr_1="field1_shortcode" attr_2="field2_shortcode"] - Then after processing those fields you can return result back to the shortcode for display.. 2. Client used following php-code into theme’s functions.php file: function this_is_test_shortcode_func( $atts ) { $attlist = shortcode_atts( array( 'first' => '(no first)', 'second' => '(no second)', ), $atts, 'this_is_test_shortcode' ); return "Output 1: " . $attlist['first'] . " / 2: " . $attlist['second']; } add_shortcode( 'this_is_test_shortcode' , 'this_is_test_shortcode_func' ); -- And used shortcode in Loop Output Editor like this: [this_is_test_shortcode first="[wpv-post-title]" second="[wpv-post-date]"] It outputs nicely those two fields as a return. Relevant Documentation: |
2 | 3 | 7 years, 1 month ago |