koheiY
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 |
---|---|---|---|---|---|
Send emails to several recipients set in several related posts to the currently edited one
Started by: koheiY
in: Toolset Professional Support
Problem: Solution: |
2 | 5 | 5 years ago | ||
Toolset Blocks / Download Error
Started by: koheiY
in: Toolset Professional Support
Problem: Solution: We will update the "Cooking Made Simple - Toolset Training Course" reference site and the work is in progress so that users can download and use it. Relevant Documentation: |
4 | 6 | 5 years ago | ||
Loading a view from one site on another in WordPress Multisite
Started by: koheiY
in: Toolset Professional Support
Problem: Will Toolset View (version3) plugin would support loading a view from one site on another in WordPress Multisite? Solution: There isn't such kind of built-in feature within Toolset plugins, it needs custom codes, for example, you can try these: Relevant Documentation: https://developer.wordpress.org/reference/functions/switch_to_blog/ https://codex.wordpress.org/Function_Reference/add_shortcode |
2 | 3 | 5 years ago | ||
View's table column
Started by: koheiY in: Toolset Professional Support |
2 | 5 | 5 years, 1 month ago | ||
Dropdown's Option Sorting by "post slug" – Filter by post relationship
Started by: koheiY in: Toolset Professional Support |
2 | 4 | 5 years, 11 months ago | ||
Dropdown's Option Sorting – Filter by post relationship
Started by: koheiY in: Toolset Professional Support |
2 | 4 | 5 years, 11 months ago | ||
How to create multiple taxonomies’ archive page
Started by: koheiY
in: Toolset Professional Support
Problem: I would like to create archives of posts by combining term filters from two different custom taxonomies. I would like to include both terms in the page title for SEO purposes. Solution: Create a custom Page called "Cafes in London". Insert this View in the Page contents and use shortcode attributes to manually define the area and shop-category terms used in the View filter. Create custom pages for each combination of terms. Relevant Documentation: |
2 | 3 | 6 years ago | ||
Add post relationship column to custom post list in admin
Started by: koheiY in: Toolset Professional Support |
2 | 3 | 6 years, 3 months ago | ||
Add post relationship column to custom post list in admin / Make it sortable
Started by: koheiY in: Toolset Professional Support |
2 | 3 | 6 years, 3 months ago | ||
Add post relationship column to custom post list in admin menu /Child post count
Started by: koheiY
in: Toolset Professional Support
Problem: I would like to add a column to the post list in wp-admin menu for a custom post type. In that column I would like to display the number of child posts in a specific post relationship. Solution: Custom code is required to do this. /****************************** ** Adds post relationship column to salons table ******************************/ add_filter( 'manage_edit-salons_columns', 'my_edit_salons_columns' ) ; function my_edit_salons_columns($defaults) { $defaults['child'] = 'Child'; return $defaults; } /****************************** ** Adds data to the post relationship column in salons table ******************************/ add_action( 'manage_salons_posts_custom_column', 'my_manage_salons_columns', 10, 2 ); function my_manage_salons_columns($column_name, $post_id) { if ($column_name == 'child') { $children = toolset_get_related_posts( $post_id, 'salons-shops', 'parent', 1000000, 0, array(), 'post_id', 'child' ); echo sizeof($children); } } Relevant Documentation: |
2 | 3 | 6 years, 4 months ago | ||
Add post relationship column to custom post list in admin menu
Started by: koheiY
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 7 | 6 years, 4 months ago | ||
Great-GrandParent(Child) View
Started by: koheiY in: Toolset Professional Support |
3 | 5 | 6 years, 5 months ago | ||
CSV Import after Toolset Types 3.0 (Toolset Post Relationships Released)
Started by: koheiY
in: Toolset Professional Support
Problem: After Toolset Types 3.0 (Toolset Post Relationships Released), I set one-to-many relationships. States(one) and Cities(many). How can I import that csv? Solution: For the new post relationship of Types plugin, please follow our document to import the post relationships: Relevant Documentation: |
2 | 3 | 6 years, 5 months ago | ||
How to disable Fields & Views, CRED and Access button in front-end editor
Started by: koheiY
in: Toolset Professional Support
Problem: Solution: // remove the Fields and Views button add_filter( 'toolset_editor_add_form_buttons', '__return_false' ); // remove the CRED button add_filter( 'toolset_cred_button_before_print', '__return_false' ); // remove the Access button for certain roles add_filter( 'toolset_editor_add_access_button', function(){ $roles = array( 'author', 'subscriber' ); return $roles; } ); |
2 | 3 | 6 years, 7 months ago | ||
Copy CRED save data to existing field that plugin generated
Started by: koheiY
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 8 months ago |