kelvinL-2
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 |
---|---|---|---|---|---|
CSS order from different setting
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 5 | 6 years, 6 months ago | ||
Adding WP conditional script to Views
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 2 | 6 years, 6 months ago | ||
Resize upload image via CRED
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 2 | 6 years, 6 months ago | ||
Change the menu style in Toolset Starter Theme
Started by: kelvinL-2
in: Toolset Professional Support
Problem: I would like to customize some aspects of the Toolset Starter Theme, including the menu style. Solution: You can write any custom CSS you would like to override the Toolset Starter Theme's styles. You can also go to Appearance > Customize > Advanced Settings to disable the theme's CSS. Then you can add any CSS overrides in Toolset > Layouts CSS, or to a child theme's style.css file. To remove the background color from the main menu and make the link text red, you can do something like this: .navbar-default, body .ddl-navbar-default { background: none; } .ddl-navbar-nav > li > a { color: red; } If you are starting a custom theme, I do not recommend basing it on Toolset Starter Theme. This theme is being deprecated and should not be used as anything but a reference. |
2 | 4 | 6 years, 6 months ago | ||
Fatal Error on Types 2.3-b1
1
2
Started by: kelvinL-2
in: Toolset Professional Support
Problem: I'm having problems with the Toolset beta plugins. When I update I see the error "Parse error: syntax error, unexpected T_CLASS, expecting T_STRING or T_VARIABLE or $". Solution: Update to the latest Release Candidate plugins. There was a problem with PHP 5.3 that has been resolved. |
2 | 27 | 6 years, 6 months ago | ||
Javascript error when using post relationship editor to add new child post (cont
Started by: kelvinL-2 in: Toolset Professional Support |
3 | 5 | 6 years, 6 months ago | ||
Building one page with transition effect
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 2 | 6 years, 6 months ago | ||
Allow re-open the closed ticket
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 2 | 6 years, 6 months ago | ||
User and Post Relationship
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 4 | 6 years, 6 months ago | ||
File upload drag/drop feature from CRED
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 4 | 6 years, 7 months ago | ||
m-to-m relationship setting
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 6 | 6 years, 7 months ago | ||
JavaScript error when using post relationship editor to add new child post
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 4 | 6 years, 7 months ago | ||
User Role and Post relationship
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 2 | 6 years, 7 months ago | ||
Import over thousands of relationship
Started by: kelvinL-2 in: Toolset Professional Support |
2 | 4 | 6 years, 7 months ago | ||
Show post excerpt if not empty, otherwise show post body
Started by: kelvinL-2
in: Toolset Professional Support
Problem: I would like to show the post excerpt if it is not empty, otherwise show the full post content. Solution: add_shortcode('wpv-post-real-excerpt', 'real_excerpt_shortcode'); function real_excerpt_shortcode() { global $post; return $post->post_excerpt; } Go to Toolset > Settings > Frontend Content and enter "wpv-post-real-excerpt" in the 3rd party shortcodes area. Then you should be able to test the excerpt like this: [wpv-conditional if="('[wpv-post-real-excerpt]' != '')"] [wpv-post-excerpt] [/wpv-conditional] [wpv-conditional if="('[wpv-post-real-excerpt]' != '')" evaluate="false"] [wpv-post-body view_template='None'] [/wpv-conditional] Relevant Documentation: |
2 | 3 | 6 years, 9 months ago |