Thank you for this wonderful search plugin. I recently switched to your plugin from another plugin and it works great. The only problem I have is that searching by SKU doesn’t work if the SKU contains a dot. Let’s say my SKU is “245.563” and I want to search for it. In this case, the product is not found. If I remove the dot from the SKU, the search is successful.
Am I doing something wrong, do I need to adjust something, or is this a bug that you can fix?
Thank you in advance!
]]>I want to hide the SKU on follow-up Emails. Is there any possibility?
Backend: https://share.nmblc.cloud/fdf22f19
Frontend (red = SKU): https://drive.google.com/file/d/1flrX0XQKG2Mo_mYyB4JVwRciu7ElOgvu/view?usp=sharing
]]>I’m having trouble using the same SKU inventory number and SKU attribute number. After editing and updating an item, I get an “Invalid or duplicated SKU.” notification, which was previously editable. Therefore would like to ask for help or solve this problem.
Thank you
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
to remove the product meta from under the buy now button. Which works greats, but I would like to display the product sku in the additional information tab. I found
add_action( 'woocommerce_single_product_summary', 'bbloomer_show_sku_again_single_product', 40 );
function bbloomer_show_sku_again_single_product() {
global $product;
?>
<div class="product_meta">
<?php if ( wc_product_sku_enabled() && ( $product->get_sku() || $product->is_type( 'variable' ) ) ) : ?>
<span class="sku_wrapper"><?php esc_html_e( 'SKU:', 'woocommerce' ); ?> <span class="sku"><?php echo ( $sku = $product->get_sku() ) ? $sku : esc_html__( 'N/A', 'woocommerce' ); ?></span></span>
<?php endif; ?>
</div>
<?php
}
But this just places it in the same location.
My question is: Is there some way to move the sku to the additional information tab?
]]>How can I remove the SKU from email-template when using {{cart.product.table}}?
Which file has to be edited?
Thanks!
With so many variations gaining the wrong Regular Price / SKUs, I have a big problem!
Before the support changes, WordPress support recommended a plugin to remove all traces of previously used and unistalled plugins. However, I felt out of my depth using it.
I have forgotten it’s name.
I am now wondering whether the redundant column headings / data are responsible for my variable product corruption…
Has anybody else experienced this?
Does anybody know of such a “old plugin data removing” plugin?
Many thanks.
Sarah