How to get meta value of post and show it on front

Use next shortcode:

key – meta key  post_id – ID of the post where its value should be taken. You have to set it if you are going to use this shortcode out of single post page. If inside of single page, you can skip it. reflection – set 1 if you are sure that… read more

I did all options well but result page shows me No Results

For all customers who has the trouble: No results for your search – from v.1.1.1 added new shortcode:

To resolve this it is just enough to open your site current wp theme header.php file in WordPress editor and drop there next shortcode on the same bottom of the file:

How to insert shortcode in header.php but show it only on some pages?

Open header.php of the current wp theme and go on the same bottom of the file or in place where you want to place it For example you want show shortcode with ID 177 on two pages, with page-ID 22 and 77 Drop the shortcode in the next code example:

My theme have not good woocommerce search templates, how to add them?

Sometimes it is happens, the plugin allows you to use any output template, and in this way we will do next steps to let MDTF use woocommerce templates: Go to the plugins/woocommerce/templates and copy files there as on screen:  Paste this files into your current wp theme into woocommerce folder (create it if doesn exist):  Your site… read more

How to print on frontend the meta fields we created

If you need display values of the post/custom which are created by built-in meta data constructor, you can use next function:

If you are using this on the single page you not need set $post_id, if somewhere in loop you need set this value. If you are sure that you are using reflection, set $look_for_reflection… read more

How to use woocommerce attributes in the plugin

WooCommerce attributes in the plugin works in the same way as any another taxonomies if you are created them in the right way. create attributes you are need here:  go to the MDTF widgets and check there attributes you are want to use:  The same in the filter-shortcodes. That is all…  

How to get search arguments only on my page OR hack my portfolio shortcode

Sometimes there is necessary to hack/hook native theme OR any plugin code to make it works (filterable) with MDTF, as that shortcode uses its own WP_Query request. To make any shortcode works with MDTF do next steps: create page and drop your portfolio shortcode (for example) there in MDTF widget/shortcode options set “Results output page link” link to that new page… read more