We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support How to get the template part working with WPSP? Reply To: How to get the template part working with WPSP?

#4897
Tom
Keymaster

Hmm, you would need to grab the variables set by the search plugin, and plug them into the settings parameter in the shortcode/plugin.

For example:

$custom_settings = array(
    'taxonomy' => 'value_from_search',
    'tax_term' => 'value_from_search',
);

wpsp_display( 123, $custom_settings );

It would require you to use PHP in order to grab those variables from the search plugin.