tobiasF-3
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 |
---|---|---|---|---|---|
How to add a note system
Started by: tobiasF-3 in: Toolset Professioneller Support |
2 | 10 | 5 years ago | ||
Contacts Database
Started by: tobiasF-3 in: Toolset Professioneller Support |
2 | 12 | 5 years ago | ||
How to show an address added with toolset maps on several lines in single view
Started by: tobiasF-3
in: Toolset Professioneller Support
Problem: The issue here is that the user wanted to display their address field in multiple lines, rather than in a single line by default. Solution: This simple custom shortcode should do the trick // Add Shortcode function wp_split_address( $atts ) { // Attributes $atts = shortcode_atts( array( 'address' => '', ), $atts ); return str_replace(",","<br/>",$atts['address']); } add_shortcode( 'wp_split_address', 'wp_split_address' ); Add it to your toolset custom code section in Toolset -> Settings -> Custom Code and then activate it once it is added. Then the example usage is [wp_split_address address="my-types-shortcode"] Please try this and let me know if it helps. |
2 | 15 | 5 years ago | ||
Favourite System: cannot remove favourite, but can add double
Started by: tobiasF-3
in: Toolset Professional Support
Problem: Solution: Please check the following reply: You can find the proposed solution in this case with the following reply; Relevant Documentation: |
2 | 11 | 5 years, 1 month ago | ||
When to use a repeatable field group over a post type relationship
Started by: tobiasF-3 in: Toolset Professional Support |
2 | 5 | 5 years, 1 month ago | ||
Creating a shortlist system for members similar to airbnb – favorite system
1
2
3
Started by: tobiasF-3
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 35 | 5 years, 1 month ago | ||
Creating a Location & Casting Database/Directory for Film Production
Started by: tobiasF-3 in: Toolset Professional Support |
2 | 5 | 5 years, 2 months ago | ||
Adoption & Sponsoring System for Charity Website
1
2
Started by: tobiasF-3 in: Toolset Professional Support |
2 | 20 | 5 years, 3 months ago | ||
Access Shortcode not working
Started by: tobiasF-3 in: Toolset Professional Support |
2 | 2 | 5 years, 12 months ago | ||
Passing Name & Email fields from Toolset Form to Woocommerce Checkout Page
Started by: tobiasF-3 in: Toolset Professional Support |
2 | 4 | 6 years, 2 months ago | ||
CRED Form with woocommerce subscriptions and recurring payments
Started by: tobiasF-3
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
4 | 10 | 6 years, 2 months ago | ||
Browse through found entries of a filter search
Started by: tobiasF-3
in: Toolset Professional Support
Problem: I would like to be able to browse search results one post at a time, and have navigation that links through the results one by one. Solution: Use a taxonomy archive with custom search fields. Relevant Documentation: |
2 | 9 | 6 years, 2 months ago | ||
Auto-Create a relationship between two custom post types
Started by: tobiasF-3 in: Toolset Professional Support |
2 | 2 | 6 years, 10 months ago | ||
Featured image not working
Started by: tobiasF-3 in: Toolset Professional Support |
2 | 2 | 7 years, 2 months ago | ||
Control over Bootstrap Grid: without padding, borders, etc
Started by: tobiasF-3
in: Toolset Professional Support
Problem: Solution: .img-full-width { width:100% !important; } 2. You can use bootstrap classes to define number of columns show at specific screen sizes. See attached html file here: https://drive.google.com/file/d/0B5EmJQ1qcuyqalp2MjVZcFUxTXM/view?usp=sharing In following classes, it will show 2 columns (by using col-xs-6) on mobile and 6 columns at desktop (col-sm-2). <div class="col-xs-6 col-sm-2">Desktop 6 Columns, Mobile 2 columns</div> Relevant Documentation: |
2 | 13 | 7 years, 2 months ago |