TeamDev Ltd
Forum Replies Created
-
Hi AFillbrandt,
Thank you very much for pointing on this! We really appreciate this.
We have fixed this. Please download latest version of the plugin.
Thanks!
Forum: Plugins
In reply to: [Search Manager Lite] Plugin doesn't seem to be workingHi,
This plugin does not provide such options.
To do this you need custom code, something like this:
// some function that modifies the query function modify_search ( $where ) { global $wpdb; if( !is_admin() ) { // here should be additional checks return $where = ""; // custom sql here } return $where; } // attach your function to the posts_where filter add_filter( 'posts_where' , 'modify_search' );
In ‘return $where = “”‘ expression you should specify your SQL query. It can be various depending on your project features.
Thanks!
Forum: Plugins
In reply to: [Search Manager Lite] Plugin doesn't seem to be workingHi bbirchmeier,
Thank you for contacting us!
If I understand you correctly, you have the SKU in post_content in your products. If so, your product will appear in search results regardless of using this plugin.
This is because WordPress searches in post_title and post_content by default. And if you have SKU in content or title, products will appear in search results anyway.
If I misunderstood you, can you provide more details please?
Thanks!
Forum: Plugins
In reply to: [Search Manager Lite] Search by multiple tags?Hi jph7007,
Thank you very much for your interest in our plugin!
That’s a pretty good idea and we need to investigate this.
We will do our best to include this feature in one of next plugin releases.Thanks!
Hi nicolasricher,
Thank you for contacting us!
We are planning to add internationalization support in future versions of this plugin.
And thank you a lot for participating in development of this plugin!
Howdy ramonjosegn,
Thank you for contacting us!
Search Manager Lite allows searching by some generic fields of WordPress and WooCommerce.
Looks like the features you have requested are out of scope of this plugin.
I believe that functionality you need is possible but requires custom solution.
We can help you on this if needed. Drop us your request and we will get back with the estimate shortly.
Hi krisrichens,
We have answered on your question here – https://www.ads-software.com/support/topic/added-php-script-to-url-works-fine-but-need-to-cloak-1
Hi, krisrichens!
You can add any URL parameters to your target affiliate url via ‘af_link_target_url’ hook.
Your code should look like this:
add_filter( 'af_link_target_url', 'my_target_url_filter' ); function my_target_url_filter( $target_url ){ $clickref_value = 'your_value'; //some php here $target_url = add_query_arg( array( 'clickref' => $clickref_value ), $target_url ); //var_dump($target_url); die(); return $target_url; }
This code adds url argument that you can dynamically generate via php.
You can place it in your theme or plugin.Thank you for contacting!