• Resolved amnion

    (@amnion)


    How do I change the default image that appears if a vendor hasn’t uploaded a store logo yet? It is currently the WCFM logo. For example, on a product page, if you see the store info, the WCFM logo appears.

    In WCfM Dashboard Setting I have a logo uploaded, but these two appear to be different.

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

    (@wclovers)

    Hi,

    Please add this code snippet to your child theme’s function.php and set your default logo URL here –

    add_filter( 'wcfmmp_store_default_logo', function( $default_logo ) {
      $default_logo = ''; // SET YOUR LOGO HERE
      return $default_logo;
    }, 50 );

    Thank You

    Thread Starter amnion

    (@amnion)

    Thank you, that worked wonderfully.

    Plugin Author WC Lovers

    (@wclovers)

    Great .. you are welcome 🙂

    Don’t forget to leave a review for me, have a great day!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Change default store icon’ is closed to new replies.