Paul Marconi
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 |
---|---|---|---|---|---|
Toolset view – Add ACF custom fields to parametric search
Started by: Paul Marconi
in: Toolset Professional Support
Problem: Solution: It is only with this plugin installed that you are able to use the text search option to search through custom fields. |
2 | 7 | 3 years, 4 months ago | ||
Dequeue unused styles and scripts
Started by: Paul Marconi
in: Toolset Professional Support
Problem: I would like to dequeue the stylesheets and script files enqueued for the lightbox plugin, but the script I added does not seem to dequeue these assets as expected. Solution: Use priority 1 in the third param of add_action to dequeue these assets more effectively: add_action( 'wp_print_footer_scripts', 'ts_dequeue_scripts', 1 ); function ts_dequeue_scripts( $handles ){ wp_dequeue_script( 'lightbox' ); } add_action( 'wp_print_footer_scripts', 'ts_dequeue_scripts', 1 ); function ts_dequeue_scripts( $handles ){ wp_dequeue_script( 'lightbox' ); } Relevant Documentation: |
2 | 3 | 3 years, 4 months ago | ||
Add Toolset Hook to my custom plugin
Started by: Paul Marconi
in: Toolset Professional Support
Problem: Solution: You just need to get the value of key "toolset_options" from wp_options table and then unserialize it and look for the array key "show_admin_bar_shortcut" which holds the value either "on" or "off". If you want to display the "Design with Toolset" menu, you should update the "show_admin_bar_shortcut" to "on" and if you want to disable it then set it value to "off" and accordingly save the "toolset_options" key value. Relevant Documentation: |
2 | 3 | 3 years, 5 months ago | ||
Toolset View – Infinite scroll not working
Started by: Paul Marconi
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 7 | 3 years, 5 months ago | ||
Load an external js file when page contains a view
Started by: Paul Marconi
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 5 | 3 years, 5 months ago | ||
Toolset View – Grouping posts by category name with filters on the side
Started by: Paul Marconi in: Toolset Professional Support |
2 | 9 | 3 years, 6 months ago | ||
Getting an error from the Toolset View plugin
Started by: Paul Marconi in: Toolset Professional Support |
2 | 4 | 3 years, 8 months ago | ||
Check if Toolset plugin is installed and active
Started by: Paul Marconi
in: Toolset Professional Support
Problem: The issue here is that the user wanted to check if our toolset plugin is installed. Solution: Toolset isn't a single plugin but a group of plugins, so you are not able to check if Toolset is installed, however you can check if any of our plugins are installed. To do this you will need to use the code below. if ( is_plugin_active( 'types/wpcf.php' ) ) { add_action( 'wp_before_admin_bar_render', 'my_custom_function' ); } The above code checks if our Types plugin is active. |
2 | 5 | 3 years, 9 months ago | ||
Using toolset as an e-commerce for selling one product/service
Started by: Paul Marconi in: Toolset Professional Support |
2 | 2 | 4 years, 1 month ago | ||
Dequeue unnecessary Toolset javascripts
Started by: Paul Marconi in: Toolset Professional Support |
2 | 9 | 4 years, 4 months ago | ||
Create a Filter view by custom taxonomy that shows only the sub category terms
Started by: Paul Marconi in: Toolset Professional Support |
2 | 8 | 4 years, 5 months ago | ||
View – parametric search with filters issue – terms missing after search
Started by: Paul Marconi
in: Toolset Professional Support
Problem: The problem is that after I've selected some filters and click on the submit button to search, some of the taxonomies from each filters are missing. Solution: Please try these in your website: In section "Custom Search Settings", enable option "Let me choose individual settings manually"-> Enable option "Always show all values for inputs", and test again. Relevant Documentation: |
2 | 3 | 4 years, 8 months ago | ||
Toolset View – can views be searchable?
Started by: Paul Marconi in: Toolset Professional Support |
2 | 3 | 4 years, 9 months ago | ||
Disable the single page for a custom post type not working
Started by: Paul Marconi in: Toolset Professional Support |
2 | 4 | 4 years, 10 months ago | ||
Toolset Access plugin affecting ACF Pro
Started by: Paul Marconi in: Toolset Professional Support |
2 | 4 | 5 years, 7 months ago |