Viewing 2 replies - 1 through 2 (of 2 total)
  • This code will show the same logo for every product:

    <?php
      // code goes in functions.php for your child theme
      add_action('woocommerce_before_subcategory', 'before_item' );
      add_action('woocommerce_before_shop_loop_item', 'before_item');
      add_action('woocommerce_before_single_product', 'before_item');
      function before_item() {
        echo '<img src="http://www.mydomain.com/wp-content/uploads/logo.jpg" alt="Logo">';
      }

    If you have different logos for different products, check out this plugin:
    https://wordpress.org/plugins/ultimate-woocommerce-brands/
    The free version will show brand names as text but you will need the pro version to show brand logos. There seem to be lots of settings so you can customise it.
    http://codecanyon.net/item/ultimate-woocommerce-brands-plugin/full_screen_preview/9433984

    I have not tried the pro version myself so I cannot guarantee it will be suitable for you.

    Thread Starter john

    (@pawansaini312)

    hey lorro this plugin is working but this brand should be just above proudct image
    if you have any option for then please tell me
    one other thing that actually i want to make a website like this
    freekaamaal.com

    if you any solution or if you know any plugin for make this website then please tell me

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘logo,icon’ is closed to new replies.