Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Advanced Description Field
This topic contains 5 replies, has 2 voices, and was last updated by Ernest Marcinko 4 years, 6 months ago.
- AuthorPosts
- February 18, 2020 at 11:26 am #25839
Hello, thanks for the great plugin.
1) I use “_stock” in Advanced Description Field. It works, but zeros are added to the value: 50.000000 or 0.000000. How to remove zeros in value?
2) Is it possible to use “if-then-else” in Advanced Description Field? I want show Out of Stock message, if “_stock” is 0.
Thanks, Prokhor.
February 18, 2020 at 12:59 pm #25840Hi,
Can you please copy/paste your current advanced content field here? Thank you!
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
February 18, 2020 at 1:36 pm #25841<p>SKU: <b>{_sku}</b> | In stock: <b>{_stock}</b>
February 18, 2020 at 1:50 pm #25842Hi,
I assume you probably want to display the stock information whenever the stock is > 0. I have constructed a quick custom code snippet that you should try for that. Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!
add_filter( 'asp_results', 'asp_add_stock_count', 10, 1 ); function asp_add_stock_count($results) { foreach ( $results as $k => &$r ) { $stock = get_post_meta($r->id, '_stock', true); if ( $stock > 0 ) { $stock = intval($stock); $r->content .= " | In stock: $stock</b>"; } } return $results; }
This should also force the number value to integer, removing the extra zeros.
Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
February 19, 2020 at 1:40 am #25859Thank you very much, you helped me a lot, everything works! I just rated 5 stars for the plugin.
February 19, 2020 at 9:20 am #25863You cannot access this content. Best,
Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)
- AuthorPosts
You must be logged in to reply to this topic.