Replace cart icon with language flags

Support Forums for LiveMesh Themes & Plugins Forums Appdev Theme Support Replace cart icon with language flags

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #4604

    Hi all,

    I saw your new appdev demo theme and I like the idea of ​​the cart icon. But for now i want to replace the cart icon near “Get this App” button with some language flags. It’s this possible?

    Thanks in advance for your cooperation

    #4631
    Raghavendra
    Moderator

    Can you pls check if you have the widget area named “Header Area” appearing in the Appearance->Widgets page. There you can drag a text widget with flag related HTML inserted. This option is available only the latest version of the theme and hence you may need to upgrade to 2.6 version to see this. Alternatively, you can modify the theme file header.php at line number 68 and enter your custom HTML there with the flag icons if you have the old version loaded. Then, you need to have below custom css to hide the cart icon and style the new flag section appropriately –

    /*Assuming you are wrapping the flags section with flags-section class */
    #header .flags-section {
    padding: 0;
    position: absolute;
    right: 20px;
    top: 30px;
    }
    .woocommerce-site .cart-contents {
    display: none;
    }
    
    #4664

    Thanks meteorite 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Replace cart icon with language flags’ is closed to new replies.