• Resolved ADP

    (@artevo)


    Hello!

    Is there a way to have the stock status visible in product page when using this great plugin?

    Regards!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author ELEXtensions

    (@elextensions)

    Hello,

    ELEX catalog mode plugin doesn’t have the option for showing the stock status on the product page. However, you can use the WooCommerce “manage stock” option for showing the stock status on the product page.

    Thanks

    Thread Starter ADP

    (@artevo)

    Adding stock info back on item page in catalog mode provided by the plugin’s author

    function elex_add_text_short_descr( $description ){
    global $product;
    return $description . wc_get_stock_html( $product );
    }
    add_filter(‘woocommerce_short_description’,’elex_add_text_short_descr’);

    Regards!

    Plugin Author ELEXtensions

    (@elextensions)

    Thanks, @artevo.Glad to know our solution has solved your concern.

    We have documented the same here.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Stock status visibility’ is closed to new replies.