ILLID
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Woo Labels - Product Labels for WooCommerce] Position LabelHi,
If you are talking about ‘In image’ position – then you also can set labels on top, center or bottom of the image. Or are you talking about ‘Before title’ position?
Regards
Not sure why this happens but to fix that logo on footer issue you can use following custom css:
.site-footer .advanced-woo-labels {
display: none !important;
}Forum: Plugins
In reply to: [Advanced Woo Search] No results on search@jsneor So you don’t see some products that must be there. Is that correct? Can you give me a link to the page with a working search form and tell me examples of search queries that must show some products but failed to?
Forum: Reviews
In reply to: [Share This Image] change urlDid you try this code snippet? It must share only image link without page link.
Please tell me – do you use any other additional code snippets or maybe you made some changes in the plugins Hooks option?
Forum: Plugins
In reply to: [Advanced Woo Search] Filters not triggeringHi,
If we are talking about custom code snippets – then you can use the built-in aws_exclude_products filter to exclude certain products from the search results.
Regards
Forum: Plugins
In reply to: [Advanced Woo Search] No results on searchHi,
Please tell me – when did you mention that issue? Does that appear after you update the plugin or maybe when you add some other new plugin to your site?
Regards
Forum: Plugins
In reply to: [Advanced Woo Search] Style update in v3.19Hi,
Well there weren’t any significant changes. Just added this new style to prevent overwriting search input height by other third-party default styles.
.aws-container .aws-search-field {
min-height: inherit;
{Forum: Plugins
In reply to: [Advanced Woo Search] Case SensitiveHi,
Sorry for the long response but it looks like I found how to solve your problem. Please try the following code snippet:
add_filter( 'aws_pre_normalize_string', 'my_aws_pre_normalize_string' );
function my_aws_pre_normalize_string( $string ) {
if ( function_exists( 'mb_strtolower' ) ) {
$string = mb_strtolower( $string );
}
return $string;
}You need to add it somewhere outside the plugins folder. For example, inside functions.php file of your theme or use some plugin for adding code snippets.
Also, after adding this code, you need to re-index the plugin table.
Forum: Plugins
In reply to: [Advanced Woo Search] How to edit form appearance@tomlodge You still can override that border radius with custom css. Please try something like that:
.aws-container .aws-search-form .aws-search-field {
border-radius: 10px !important;
}Forum: Plugins
In reply to: [Advanced Woo Labels - Product Labels for WooCommerce] Badge misplacementLooks like the problem is in integration with Variation Images Gallery for WooCommerce plugin.
Please do the following – open plugin settings page and and following field for Hooks option:
On Image -> Custom -> action -> rtwpvg_product_badge -> 10For now I can tell the exact timeframe for this feature to be released.
Forum: Plugins
In reply to: [Advanced Woo Search] Disable AJAXHi,
Yes, it is possible. Please open plugin settings page -> Search Form tab and find Disable Ajax option.
Regards
Ok, for now the plugin doesn’t have such a feature. Perhaps I will add it in the next plugin versions.
Regards
So I still don’t fully understand you. You want to show that label box inside the product admin page or order page. If second – can think how to do that because labels are displayed for products, not the orders. Or you just want to set some specific labels that must be displayed only on the order page for users.
Regards