• Resolved r0812

    (@r0812)


    Hi,

    We have imported the products and created SKU’s using this plugin. But, the SKU’s are not showing up on the Product Page on Home.

    Could you please help us with this?

Viewing 15 replies - 1 through 15 (of 16 total)
  • Plugin Author Dan Zakirov

    (@alexodiy)

    Hello. Most likely the question is not about the plugin, but about your theme or widget that displays products on the home page.

    Thread Starter r0812

    (@r0812)

    Hi,

    The SKU is showing up for other products. Only the SKU generated with this plugin is not visible on the product page.

    Plugin Author Dan Zakirov

    (@alexodiy)

    The problem is not with the plugin, but with the theme or other plugins. Our plugin just rewrites the SKU in woocommerce. So, on your site, the articles are displayed somehow differently.

    Thread Starter r0812

    (@r0812)

    Hi,

    Apologies for asking the same question again.

    We are stuck on this issue for a couple of days. We have over 2500 products and it is not feasible for us to update them one by one for having the SKU on the product page.

    Could you please elaborate more about the theme and the other plugins which are causing this?

    Thread Starter r0812

    (@r0812)

    Hi Again,

    Apologies for not being clear in my previous message. I think you consider the product page on the website. I was talking about the product section under WooCommerce where we can see all the imported products.

    We have created the SKU with the “Easy Auto SKU Generator for WooCommerce” plugin.

    The SKU is generated for the products. But it is not visible under the products section in WooCommerce Administration. (WooCommerce -> Products)

    For Example:

    We have generated the SKU for the product “Chaplin Curved Sofa”. When I clicked on the product title and checked in the inventory section, I saw the newly generated SKU.

    But this SKU is not visible for the same product under the product section on the WooCommerce Administration page.

    If we manually update the product then the SKU shows up on the WooCommerce product section. But it is not feasible to update this for 2000+ products. The bulk update is also not working.

    Could you please guide us on this?

    Thanks.

    Plugin Author Dan Zakirov

    (@alexodiy)

    What’s your theme? Can you give me a link to the site?

    Thread Starter r0812

    (@r0812)

    Hi Dan,

    We are using the Beaver Builder Child Theme. Is it possible to connect over a call to discuss this in detail?

    Thanks.

    most of the theme are similar like this step
    check at
    theme option—woocommerce—product page—show meta/description—save

    Plugin Author Dan Zakirov

    (@alexodiy)

    Hello. I will try to test the theme today, but let me remind you that the problem is not in our plugin.

    Thread Starter r0812

    (@r0812)

    Hi Dan,

    Thanks for getting back to me. Have you tested the theme? Any changes we can make to the theme to sort this issue?

    Thread Starter r0812

    (@r0812)

    Hi Dan,

    How do you demonstrate that the issue is with the theme and not with the plugin. We are facing the issue with the administration part of WooCommerce with the path
    Login to the site -> Open WooCommerce -> Product section.

    We know that the theme is for presentation layer to consumers. The issue is not for the presentation layer but within the WooCommerce product section.

    Thread Starter r0812

    (@r0812)

    Hi Dan,

    I have sent an email to the email address [removed email] and
    [removed email] with all the issue details and screenshots.

    Could you please check the email and reply?

    Plugin Author Dan Zakirov

    (@alexodiy)

    Hi @r0812

    Thank you for the information, it was passed on to me. Sorry, I haven’t used this mail for a long time. Turns out I forgot to fix the contacts on this site.

    Yes I know what the problem is and in general I need another 24 hours to give you recommendations. I just do not have enough time for all the tasks. I remember about you, please expect a response here.

    By the way, support is carried out only on this forum. By the rules of the forum, support for the plugin should be carried out only here in the forum tickets. That is why I suggest that we discuss this only here.

    • This reply was modified 3 years, 7 months ago by Dan Zakirov.

    @r0812
    Please never publish email addresses and similar stuff in these forums. (Only exception is when a plugin/theme developer in their own forum publishes their email address and request the poster to send logs, or similar.)
    I have removed the addresses you put here.

    One important reason for this is that these forums are constantly scanned by bots that harvest email addresses for spamming, but there’s more:

    Support in these forums are provided voluntarily by other WordPress users. A plugin or theme developer has no obligation to help you. For that reason, you’re not supposed to “follow people home” by trying to reach them via social networks, email, etc, unless they themselves have suggested that.

    Plugin Author Dan Zakirov

    (@alexodiy)

    I have studied the information and as I thought the problem is not in my plugin. Our plugin simply generates the SKU, and the data is recorded perfectly. The output of SKU is done in other ways, our plugin has nothing to do with the display of SKU.

    Let’s start in order.

    1. SKU is not deduced in the listing(archive) – so is made by your template, on this issue should have appealed to the authors of your template, I think they would quickly suggest how to make the output SKU in the archive. I will try to help you…

    Now is it possible to display SKU in the archive(listing) of goods?

    1.1 Open the file functions.php
    1.2 woocommerce_before_shop_loop_item_title is the hook you need to use

    add_action('woocommerce_before_shop_loop_item_title', 'custom_before_title' );
    function custom_before_title() {
    	global $product;
    	if ( $product->get_sku() ) {
    		echo '<div style="font-size: 11px; margin: 4px 0;">'.$product->get_sku().'</div>';
    	}
    }

    After installing this code, it should look something like this

    2. Let’s now talk about the listing, which is in the admin. I tested the generator and it works fine https://dmd-district.ru/2021-08-04_093418.png . If I were you, I would just disable extra columns here and in general you don’t even need SKU there, because there is a search that works fine by SKU fields. In your case, you need to look for the cause in another place – it may be a plugin or a site theme, or just need to update.

    3. You say that after updating the product page itself starts to work fine and everything is displayed. In this case I can recommend you function wp_update_post() . But I would just upload through WP ALL Export and WP ALL Import

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘SKU’s not showing up on the Product Page’ is closed to new replies.