I've made a marketplace using WordPress Archive in Toolset.... It's display all list of product...
Marketplace.png is my marketplace that I'm make using Toolset...
I'm putting the search to easier the customer search the product... I'm set search filter to search title and content... but it's only can search title, not content on marketplace....
If the content you are searching for is in the post body and you have the same settings as in the screenshot, then it looks like something is wrong.
In that case the first thing I would need is for you to try the search with the twentyseventeen theme and all non-Toolset plugins disabled, to see if a conflict with other code is preventing it from working correctly.
Ok...Thanks, It can search content now.... but it is possible to search dynamic content, it mean content from custom shortcode that I made in function.php?
Example the shortcode is 'coname' and it display company name of author... I'm use shortcode api to made that shortcode...
If you add a shortcode to the post content, then what is saved in the database (in the post_content column of wp_posts) would include the shortcode, e.g. "the author works for [coname]".
It is only when this content is being rendered on the page that the shortcode is parsed and replaced with the dynamically generated content.
When you perform a search, you are searching the content of the database, so you are searching against "[coname]" and not "Acme Products, Ltd".
If you need to be able to search the company name, you need to rethink what you are doing so that the company name is a field belonging to the posts you are searching.