Forum replies created

    Imran
    Spectator
    Posts: 402
    July 2, 2015 at 12:49 pm #18612

    Hi there,

    Thanks for writing in,

    It seems like a plugin conflict so I would advise try disabling your plugins all at once and see if the problem remains, if its solved then you’ll know that which one of the plugin makes it suffer by enabling the plugins again.

    Thanks.

    Imran
    Spectator
    Posts: 402
    July 2, 2015 at 12:32 pm #18611

    Hi there,

    Thanks for writing in,

    You can achieve that by using a custom CSS code. Please add the following code under Appearance > Theme Options > Custom CSS:

    img.img-responsive {
    box-shadow: none;
    background: none;
    }

    Thanks.

    Imran
    Spectator
    Posts: 402
    July 2, 2015 at 12:21 pm #18610

    Hi there,

    Thanks for writing in,

    If you wish to eliminate that extra space, you can add following code under Appearance > Theme Options > Custom CSS:

    .menu-container .container {
    height: 0px;
    }

    Thanks.

    In reply to Mobile Menu
    Imran
    Spectator
    Posts: 402
    July 1, 2015 at 12:20 pm #18600

    Hi Elihah,

    You can achieve that by using a CSS code. Please add following code under Appearance > Theme Options > Custom CSS:

    #search-text-top {
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-indent: 0px !important;
    background-color: #fff;
    font-size: 12px !important;
    font-weight: normal !important;
    }

    Thanks.

    Imran
    Spectator
    Posts: 402
    July 1, 2015 at 11:52 am #18599

    You’re welcome! 🙂

    Imran
    Spectator
    Posts: 402
    July 1, 2015 at 11:50 am #18598

    Hi there,

    Thanks for writing in,

    You can disable the search box by going under Appearances > Theme Options > Header and uncheck the box of “Enable searchbox in main menu” as per shown here: http://prntscr.com/7nhwwi.

    Thanks.

    Imran
    Spectator
    Posts: 402
    June 30, 2015 at 11:47 am #18589

    Hi Patric,

    I’m assuming that you have a child theme installed in your website. So you can simply add the following code in your child theme’s functions.php file and if your functions.php file is blank, add following line before the provided code <?php:

    // =============================================================================
    // Translate string using 'gettext' filter
    // =============================================================================

    add_filter('gettext', 'custom_strings_translation', 20, 3);

    function custom_strings_translation( $translated_text, $text, $domain ) {

    switch ( $translated_text ) {
    case 'Item(s)' :
    $translated_text = __( 'REPLACE_THIS_WITH_TRANSLATION', 'evolve' );
    break;
    }

    return $translated_text;
    }

    REPLACE_THIS_WITH_TRANSLATION Replace this line with the translation you want.

    Thanks.

    Imran
    Spectator
    Posts: 402
    June 30, 2015 at 11:01 am #18588

    Hi there,

    Thanks for writing in,

    You can find column short code under Visual editor > Shortcode button > columns. There you will find all of the combinations and how to use different columns as per shown here: http://prntscr.com/7n2c8o.

    Thanks.

    In reply to Mobile Menu
    Imran
    Spectator
    Posts: 402
    June 30, 2015 at 9:10 am #18587

    Hi Elijah,

    Thanks for writing in, you can achieve that by adding following code under Appearance > Theme Options > Custom CSS:

    span.glyphicon.glyphicon-align-justify:after {
    content: " Menu ";
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 20px;
    }

    Thanks.

    In reply to Mobile Menu
    Imran
    Spectator
    Posts: 402
    June 30, 2015 at 9:00 am #18586

    Hi efrain,

    In the version of 2.5.0 there is no option to change the mobile menu color so you can achieve that by custom CSS codes. Here are three codes to handle background colors hover colors and etc. Please add following code under Appearance > Theme Options > Custom CSS:

    .mobile-nav-holder .mobile-selector, .mobile-topnav-holder .mobile-selector, #mobile-nav {
    background-color: #e3e3e3 !important;
    }

    .mobile-nav-holder .mobile-selector, .mobile-topnav-holder .mobile-selector, #mobile-nav li a, #wrapper .header-social .mobile-topnav-holder li a, .catalog-ordering a, .order-dropdown > li:after, .order-dropdown ul li a {
    color: #FFB917 !important;
    }

    #mobile-nav li a:hover {
    background-color: #81d742 !important;
    }

    Hope this helps!

    Thanks.