Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #782638

    Hello, I am using the Enfold theme and WPML muttcurrency plugin. I am encounter the following problems and need help:

    #783361

    Hey sailentpooN,

    Reviews and sidebar are settings that can be configured in WooCommerce.
    Please refer to this thread for a possible solution for blurred images.

    You need to add the currency switcher to the header as a widget. Here is hoe to do it

    You can hide the flag in WPML settings or by adding this code to Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css

    .av-language-switch-item { display: none;}

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #784918

    Hi
    Thanks for your reply.

    • This reply was modified 7 years, 6 months ago by sailentpooN.
    #785659

    Hi,

    It seems like you managed to change background color of header meta section by editing “Small bar above Main Menu” in Enfold theme options > Advanced Styling.

    Currency switcher is missing on my end at the moment. The easiest way would be adding custom jQuery to functions.php file to move the switcher to main menu. Can you please enable switcher and let us know so we can look further into it?

    Best regards,
    Yigit

    #786613

    Thanks for your reply, I have enabled the currency switcher. Please help me to have a look.

    Best regards,
    Anthony

    #786648

    Hi,

    I added following code to Quick CSS field in Enfold theme options > General Styling tab

    #currency_sel_widget-3 {
        max-width: 235px;
        float: left;
        clear: none;
    }
    a.wcml-cs-item-toggle {
        font-size: 12px;
        line-height: 20px!important;
        height: 30px!important;
    }

    and added following code to Functions.php file in Appearance > Editor

    function av_move_currency_switcher(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery("#currency_sel_widget-3").detach().insertBefore('#menu-item-shop.cart_dropdown')
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'av_move_currency_switcher');

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.