• Resolved cartaclaudio

    (@cartaclaudio)


    Hi,

    Can I disable latest topics, like the way I can disable store stats?
    I would also like to disable Low in Stock reports and out of stock reports for my store vendors as they only have digital products with no stock

    Having had Shipment and Refunds disabled I would like that on the orders page the links to Shipped and Refunded be disabled.

    Regards,
    Claudio

    • This topic was modified 5 years, 5 months ago by cartaclaudio.
    • This topic was modified 5 years, 5 months ago by cartaclaudio.
    • This topic was modified 5 years, 5 months ago by cartaclaudio. Reason: Apologies for the edit but I discovered this later
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WC Lovers

    (@wclovers)

    HI,

    Can I disable latest topics, like the way I can disable store stats?

    – Latest Topics is part of “Announcement/Notice” module. You may disable this module from WCFM Admin Setting -> Modules

    Add this code snippet to your child theme’s functions.php to remove low and out of stock –

    add_filter( 'wcfm_reports_menus', function( $wcfm_reports_menus ) {
    	if( isset( $wcfm_reports_menus['out-of-stock'] ) ) unset( $wcfm_reports_menus['out-of-stock'] );
    	if( isset( $wcfm_reports_menus['low-in-stock'] ) ) unset( $wcfm_reports_menus['low-in-stock'] );
    	return $wcfm_reports_menus;
    }, 50 );

    Having had Shipment and Refunds disabled I would like that on the orders page the links to Shipped and Refunded be disabled.

    – Please show me screenshot, where you want to disable this.

    Well, you may disable “Refund” module from WCFM Admin Setting -> Modules

    Thank You

    Thread Starter cartaclaudio

    (@cartaclaudio)

    Hi thanks for the update.

    With regards to refunded not displaying in order: https://ibb.co/MS6QhCp
    My Refund module is disabled already but that still appears.

    Plugin Author WC Lovers

    (@wclovers)

    HI,

    Well, refund module is disabled mean vendor and customer not allowed to generate “Refund Request”.

    But “Refund” order status will be there.

    Well, if you want to remove that as well then possible using custom code.

    Do you want that ?

    Thank You

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Disable Latest Topics from dashboard home and some reports’ is closed to new replies.