Okay
  Public Ticket #1668352
Breadcrumbs
Closed

Comments

  •  1
    Lucy Hargrave started the conversation

    Hi there - I need to remove the breadcrumbs for every page header. Please show me how to do this. I can see there are 3 options for the breadcrumb style but there also should be a remove breadcrumb button too?

    Also, how do you change the font in the main menu navigation in the header section? I've changed all the H1 styles to Roboto Slab font but the menu is still in the wrong font. 


    Thank you


  •  608
    WordPress replied

    Hi,
    Thanks for your purchase.

    Breadcrumb: Currently we do not have the option to hide breadcrumbs in Apr Option. You can install and active child theme. Then, you can add style css in child theme.

    .side-breadcrumb {
        display: none;
    }

    Menu: You can go to Apr Option -> General -> Choose General font and Save



    Regards,
    Alex Vũ


  •  1
    Lucy Hargrave replied

    Hi there thanks for that.


    I can't see APR Options in my Wordpress back end. It was there previously but it's suddenly disappeared and all my fonts and logos have gone with it. Any idea on how to get it back? The site is dev.qcfresh.com.au

  •  608
    WordPress replied

    Hello,

    Can you check if the Redux Framework plugin is active? If not you need to activate it.

    Thanks!

    Alex Vũ


  •  1
    Lucy Hargrave replied

    Thanks that got it working legend!

  •  608
    WordPress replied

    Hi,

    Can you take some time to rate our item 5stars in ThemeForest?

    https://themeforest.net/item/efarm-a-multipurpose-food-wordpress-theme/reviews/20109992

    Thank you so much.

    Alex Vũ


  •  1
    Lucy Hargrave replied

    Hey Alex


    Just gave you a 5 star rating :)

    Also - how do I remove the default contact details which are showing up in the mobile menu?

  •  608
    WordPress replied

    Hi,

    You can add style in child theme 

    .contact-mobile{

          display :none;

    }

    Best !


  •  1
    Lucy Hargrave replied

    Thanks so much!


    Do you know how I change the drop down sub menu background colour? At the moment it's black but I just want it to be white? For example if I hover over Our Produce, I want Fruit and Vegetables to be over a white background not black please.


    dev.qcfresh.com.au

  •  1
    Lucy Hargrave replied

    Hi again, sorry could you please help me remove the Availability from the products pages:

     http://dev.qcfresh.com.au/product/r2e2-mangoes/

    We don't want to show any availability please. 

  •  608
    WordPress replied

    Hello,

    You can add css in child theme

    .info .summary .availability, #yith-quick-view-content .summary .availability {
        display: none;
    }
    @media (min-width: 992px){
        .header-v1 .mega-menu li .sub-menu {
            background: #fff none repeat scroll 0 0;
        }
        .header-v1 .mega-menu li .sub-menu li a{
            color: #000;
        }
    }
    Thanks!

    Alex Vũ



  •  1
    Lucy Hargrave replied

    Thanks so much!

    I have 3 last questions and the site is almost ready to go live. 

    1. On the product pages http://dev.qcfresh.com.au/product/r2e2-mangoes/ there is a green banner with food images in it on top of the footer which doesn't appear on any other pages...how do I get rid of this image? 

    2. Can we make the photos of the products clickable as well as the title of the product? http://dev.qcfresh.com.au/our-produce/ for example if we click the image of the mango can it link to the mango product?


    3. For some reason the menu hamburger icon in mobile is white until your roll over it - can this be black so it's visible?


    Thanks again!

  •  608
    WordPress replied

    Hi,

    You can add style css in child theme:

    .footer-v1 .footer-newsletter {
        display: none;
    } .product-content.clearfix .product-image:before{
        content: none;
    }
    .product-content.clearfix .product-image > a{
        display: block;
        position: relative;
    }
    .product-content:hover .product-image > a:before{
        opacity: 1;
    }
    .product-content.clearfix .product-image > a::before {
        position: absolute;
        content: "";
        background: #fff;
        opacity: 0;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
        -webkit-transition: all 0.35s ease-in-out 0s;
        -moz-transition: all 0.35s ease-in-out 0s;
        -ms-transition: all 0.35s ease-in-out 0s;
        -o-transition: all 0.35s ease-in-out 0s;
        transition: all 0.35s ease-in-out 0s;
    }
    @media (max-width: 991px){
        .open-menu-mobile {
            color: #fff !important;
        }
    }
    Thanks!

    Alex Vũ


  •  1
    Lucy Hargrave replied

    Thanks so much you're amazing. 


    For some reason the mobile version of the menu still is invisible - screen shot attached... could the three lined icon please be black all the time?

  •  608
    WordPress replied

    Hi,

    You can edit color #fff to #000 in style css in child theme

    @media (max-width: 991px){
        .open-menu-mobile {
            color: #fff !important;
        }
    }

    Thanks!

    Alex Vũ


  •  1
    Lucy Hargrave replied

    Hey mate. I need to be able to turn the site into Chinese as well as English. What options are there for this that are compatible with this theme?

  •  608
    WordPress replied

    Hello,

    You can install plugin WPML. It supports multiple language installations.

    Thanks!

    Alex Vũ