Viewing 30 results - 220,411 through 220,440 (of 244,326 total)
  • Author
    Search Results
  • #271273
    Micheal0424
    Participant

    I am using Role Editor (http://role-editor.com/) and when I deselect Manage Options it makes it so the role will not see the Enfold option on the menu bar, unfortunately it also takes away the LayerSlider option.

    Is there another way I can control who can see the Enfold option? I don’t want certain roles having access to that option.

    Thanks.

    #271272
    freepixelweb
    Participant

    Hi, with Enfold theme a phone number is automatically detected.

    The problem is the appearance of this link (black background white text), how to change this style?

    Regards.
    Jean

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    body .column-top-margin {
    margin-top: 15px;
    }

    top margin is 50px by default

    Cheers!
    Yigit

    mareva
    Participant

    Hi!
    I’ve just upgraded to the 2.8 version and some images are not well displayed anymore.
    This is true with images that are embeded with the option “original size” in a column that is less than 1/1.
    E.g. : Image original size : width: 400, height: 800. Column 2/5.
    Before : the image width was adjusted to the column width (then, less than the image original width).
    Now (withe Enfold 2.8) : the width of the image displayed is 400px. Then, the image run over the column 2/5 (and over the sidebar).
    The trouble is : with avia advanced editor, I can’t define manually the size of the image.
    Any idea to help me to solve this trouble?
    You can have a look on: http://www.ticettac.net/wp_eloise/navire/ or : http://www.ticettac.net/wp_eloise/liens/
    pwd : tic!tac!

    (Sorry for my very bad english).
    mareva

    This reply has been marked as private.
    #271240

    Well it is your decision. But your customer will be happy if this becomes a core feature or even an option they can modify from the settings page. If you neither change the core file nor add the filter by default every user of Enfold with paged blog pages will get “double tilte tags” errors displayed in Googles webmaster tools. Those users addicted to SEO won’t be very happy about it.

    #271235
    avanzamas
    Participant

    I have your Enfold theme at: http://32ladrillos.com/contacto/

    The problem is that the map only show in this page on the first visit of the page. If you refresh the page you wont see the map.

    Please check this error
    Thanks

    #271233

    Hey!

    Ok, try to insert this code into your child theme functions.php file or enfold/functions.php:

    
    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
            add_action('ava_after_main_menu', 'avia_wpml_language_switch', 10);
    }
    

    Then insert this code into the quick css field:

    
    .avia_wpml_language_switch{
    margin-top: -30px;
    }
    

    and change the margin-top value if necessary.

    Best regards,
    Peter

    StuWeTueHo
    Participant

    I just tried the new “related entries” version (the one with thumbnail and post title). I noticed that all posts without featured image have a misaligned icon. See for yourself:
    http://kriesi.at/themes/enfold/2013/10/23/the-lone-balloon/

    I could fix it with changing
    #top .av-related-style-full .related_image_wrap {display: table-cell;}
    to
    #top .av-related-style-full .related_image_wrap {display: block;}

    Don´t know if it is the correct way, but at least it works :-).

    • This topic was modified 11 years, 9 months ago by StuWeTueHo.
    #271225

    In reply to: Image size Firefox

    Hi hansenberg!

    Please add fllowing code to Quick CSS in Enfold theme options under General Styling tab

    .avia_image { width: 100% ; }

    Regards,
    Yigit

    #271221

    Topic: Image size Firefox

    in forum Enfold
    hansenberg
    Participant

    Hi
    I am building a website with the Enfold theme. I am working locally on my site and have just updated the theme to the latest version. But now there is a problem in firefox with some of the images. They are alle shown in full size, eventhough they are put in the responsive layout elements. It is no problem in the other browsers I have tested (safari, chrome). Please help.

    #271219
    avsurganov
    Participant

    Hi guys!

    I bought your theme to update my site (to make it look more modern, and have a mobile friendly theme). However, the person who worked on the site previously did a custom job, and the woocommerce plugin seems to break with the Enfold Theme. Is there any way to set woocommerce back to default without reinstalling the plugin and losing all the past orders? Please let me know!

    Old Site: http://www.luminaid.com/shop/
    New (Temp) Site: http://luminaid.avsurganov.com/shop/

    Don’t mind the formatting / colors. It’s still a very early draft.

    #271217

    Hey stankages!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    p#element_avia_please_explain_what_you_are_1 .hidden {
    display: block!important;
    }

    Cheers!
    Yigit

    #271212

    Hi!

    Try to insert this code into the child theme functionsphp file or into enfold/functions.php

    
    add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 5, 1);
    function avia_change_breadcrumb($trail) {
        if(is_page())
        {
            global $post;
    
            $front 			= avia_get_option('frontpage');
            $blog 			= avia_get_option('blogpage');
    
            if($post->ID == $blog || $post->ID == $front) return $trail;
    
            $parents = get_post_ancestors($post->ID);
            if(!empty($parents))
            {
                $home = $trail[0];
                $last = array_pop($trail);
                $trail = array(0 => $home);
    
                foreach($parents as $key => $data)
                {
                    $link = '<a href="'.get_permalink($data).'">'.get_the_title($data).'</a>';
                    $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link);
                    $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link);
                    $link = '<span typeof="v:Breadcrumb">'.$link.'</span>';
                    $trail[] = $link;
                }
    
                $trail[] = $last;
            }
        }
        return $trail;
    }
    

    Cheers!
    Peter

    #271205

    Hi Bruno!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    span.av-masonry-date.meta-color.updated {
    display: none;
    }

    Regards,
    Yigit

    #271204
    koballo
    Participant

    Hi all,
    apologies for my English (google translator)

    On page I’m doing with Enfold I’ve noticed that the letters are “thick” and “duplicate top of each other” is a little weird …

    Attached a screenshot of the error:
    fonts very strong
    thank you very much
    PS: a big template!!
    Greetings!

    • This topic was modified 11 years, 9 months ago by koballo.
    #271197

    Hi!

    Please firstly update Enfold to the latest version 2.8 via FTP – http://vimeo.com/67209750

    Best regards,
    Yigit

    #271191

    In reply to: Header tweaks

    Hi Rupert!

    1- Please go to Appearance > Menus and remove “personal training” from your menu
    2- You can rearrange the position of menu items in Appearance > Menus
    3- Please go to Enfold theme options > Advanced Styling and edit “small bar above main menu” element and increase the font size
    4- Please go to Appearance > Menus and add your menu item as a new link with # for URL so it will not be clickable http://i.imgur.com/9I3QF9j.jpg

    Cheers!
    Yigit

    #271189

    Hey!

    You just need to add this code to your child theme functions.php file. Then you can select the Rum Raisin font from the “font” dropdown on the theme options page (Enfold > Theme Options > General Styling > “General” tab – “Heading Font” dropdown). If you want to apply the font family to the menu links insert this code into the quick css field:

    
    #avia-menu li a{font-family: "Rum Raisin";}
    

    Cheers!
    Peter

    #271185

    In reply to: update enfold theme

    Hi diaarts!

    Please see – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Yigit

    Hey!

    Did you upload your modified shortcode file into the wp-content/themes/enfold-child//shortcodes/ folder?

    Regards,
    Peter

    #271174

    Hey sarahed!

    Please firstly turn on custom CSS field for Avia Layout Builder elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    then add following code to Quick CSS in Enfold theme options under General Styling tab

    .your-custom-class { background: orange; color: white; padding: 10px; }

    Cheers!
    Yigit

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .avia_cart_buttons { display: none !important; }

    Cheers!
    Yigit

    Hey!

    1) Please create us an admin account and post the login credentials as private reply – we’ll check the configuration.

    2) No, Enfold just uses the standard wordpress search which doesn’t support such a feature. You can try a search plugin like: SearchWP though.

    Regards,
    Peter

    #271158

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .avia_image { width: 100% ; }

    Regards,
    Yigit

    Hey t3lgroup!

    I answered your here – https://kriesi.at/support/topic/latest-update-enfold-picture-probelm/#post-271153
    But please post your answer on this topic. Other users are having image size issue there, let us not mix the issues :)

    Regards,
    Yigit

    #271147

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .search div.page-heading-container {
    display: none !important; 
    }

    Regards,
    Yigit

    #271145

    Hi Jun-E-Jay!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .grid-entry {
    margin-bottom: 1%;
    width: 24%!important;
    margin-right: 1%;
    }

    Best regards,
    Yigit

    #271143

    In reply to: Problem after Update

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .rounded-container, .rounded-container img { width: 120px; }

    Cheers!
    Yigit

    Hi!

    Ihr könnt probieren die gesamte Funktion in enfold/functions-enfold.php zu ersetzen. Diese startet mit:

    
    if(!function_exists('avia_ajax_search'))
    

    und endet mit:

    
    	    echo $output;
    	    die();
    	}
    }
    
    

    Kopiert am Besten die neueste Version dieser Funktion aus der aktuellen enfold/functions-enfold.php (Version 2.8) und fügt den Code in eure functions-enfold.php (V1.9.1) ein und überschreibt den “alten” Funktionscode.

    Regards,
    Peter

Viewing 30 results - 220,411 through 220,440 (of 244,326 total)