Viewing 30 results - 225,181 through 225,210 (of 243,488 total)
  • Author
    Search Results
  • unitsix
    Participant

    hey,

    enfold is a great theme! but after updating the enfold theme, there is a new “background-transparency option” under the “appearance tab”:

    LayerSlider> Appearance >Background-Color

    i want to use a boxed layout with a fullscreen fixed background.the contents of the slide images (.png) should be placed on the
    background

    but if put the opacity to “0” … i still have a white background below my transparent slide-images.

    any ideas?

    thanks,

    nik

    #238621
    simonac
    Participant

    Hi,

    after the update all horizontal lines changed. So now all the pages pages i admin and used enfold for, have to be adjusted.

    In fact the whitespace is more then before and the short separator also has more space under it. How ca i fix that!

    Thats really not what an update should do.

    Regards

    This reply has been marked as private.
    #238618

    Hi Peter,
    Du bist ja genial. Funktioniert Prima.

    Vielen vielen Dank für die schnelle Hilfe.
    Alles Gute.

    Martin

    #238614

    In reply to: JUSTIFY TEXT

    Hey!

    Yes, or into your child theme style.css or into the quick css field (Enfold > Styling).

    Regards,
    Peter

    #238613

    Hi!

    Versuche einmal folgenden Code am Ende von enfold/functions.php oder in deine Child Theme functions.php einzufügen:

    
    add_action( 'avia_meta_header', 'avia_mlp_language_switch', 10);
    function avia_mlp_language_switch()
    {
    if(function_exists( 'mlp_show_linked_elements' )) mlp_show_linked_elements( array( 'link_text' => 'flag', 'show_current_blog' => FALSE ) );
    }
    

    Regards,
    Peter

    #238608

    Hi!

    1) You just need to change the “parent theme” name. The child theme name is completely independent from the parent theme name. Normally the style.css theme data looks like:

    
    /*
    Theme Name: Enfold Child
    Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then.
    Version: 1.0
    Author: Kriesi
    Author URI: http://kriesi.at
    Template: enfold
    */
    
    

    The “Theme Name” can be any value/text of your choice – you’re not limited to Enfold Child or ABC Child, etc. and you can also i.e. name it “Supertheme”. The important part is “Template: enfold” – “enfold” which refers to the folder name of the parent theme. So if you rename the parent theme folder from “enfold” to “abc” you also must change this line to “Template: abc”.

    2) Yes, if you update the theme you must always manually rename the folder and the style.css theme name. I recommend to update the theme with ftp: https://vimeo.com/channels/aviathemes/67209750 then you just need to upload/overwrite all theme files except style.css and you don’t need to edit style.css everytime you update the theme.

    Cheers!
    Peter

    #238605

    … and calendar! Something like Google Calendar, but in Enfold design :-)

    #238598

    In reply to: button link to gallery

    Sorry Josue, but ‘snippets’…?
    When I click the the link you posted I see thousands of questions on the forum and tuts.
    Good to have all this info but very hard to find the answer to my question.
    Do I need to become a member on the PrettyPhoto forum?
    I bought Enfold and would like help from this side….
    : (

    regards Corien

    #238597

    Hi Ismael,

    I couldn’t find any string from the code you’ve sent , not in functions.php and not in functions-enfold.php …

    #238590

    Hey!

    1) Ok, then remove the flags from the main menu (you can configure this on the WPML option page) and insert this code at the very bottom of functions.php:

    
        if(!function_exists('avia_append_lang_flags'))
        {
            //first append search item to main menu
            add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            add_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
    
            function avia_append_lang_flags( $items, $args )
            {
                if ((is_object($args) && $args->theme_location == 'avia'))
                {
                    global $avia_config, $sitepress;
    
                    if(empty($avia_config['wpml_language_menu_position'])) $avia_config['wpml_language_menu_position'] = apply_filters('avf_wpml_language_switcher_position', 'main_menu');
                    if($avia_config['wpml_language_menu_position'] != 'main_menu') return $items;
    
                    $languages = icl_get_languages('skip_missing=0&orderby=custom');
    
                    if(is_array($languages))
                    {
                        foreach($languages as $lang)
                        {
                            $currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : '';
    
                            if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
    
                            $items .= "<li class='language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>";
                            $items .= "	<span class='language_flag'><img title='".$lang['native_name']."' src='".$lang['country_flag_url']."' /></span>";
                            $items .= "</a></li>";
                        }
                    }
                }
                return $items;
            }
        }
    

    to add the flags to the main menu.

    2) Maybe you didn’t configure or translate the portfolio slugs – see: http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/

    Cheers!
    Peter

    #238586
    Voilaah
    Participant

    Hi,

    im trying to customize my enfold integration with woocommerce.

    What will be the recommendation for this aspect plase ? (im not asking regarding woocommerce itself i know there are a woocommerce documentation) but i’m asking regarding Enfold theme.
    Indeed, Enfold is already defining a lot of action/filter – how can i override them properly being sure my code wont be erased by the next Enfold version ?

    thanks

    #238582

    Hallo Peter,

    ich habe nach dem Uptate auf 2.6.1 Probleme mit dem Sprachenumschalter von Multilingual Press Pro.

    Vor dem Update habe ich es auch Dank Eurer vorzüglichen Hilfe hin bekommen, das der Schalter sichtbar im secondary Headermenü war.
    http://s511947180.online.de/wordpress/sprachumschalter.JPG

    Wie gesagt nach dem Update finde ich einfach nicht mehr die Position wo ich den Code <?php if ( function_exists( 'mlp_show_linked_elements' ) ) : ?><?php mlp_show_linked_elements( array( 'link_text' => 'flag', 'show_current_blog' => FALSE ) ); endif;?>
    einfügen soll.
    Er verschwindet quasi hinter der Seite. Hier ein zur Testseite http://s511947180.online.de/wordpress/

    Gibt es hier einen Lösungsweg oder Vorschlag wie ich das bewerkstelligen kann?

    Danke.

    Grüße
    Martin

    • This reply was modified 11 years, 8 months ago by gator0815.
    #238578
    Cum_Vincere
    Participant

    Hello,

    The typical Enfold header is transparent, and when you scroll down the page it reduces its height.

    Is there a possibility of blocking the height of the header, so that when you scroll down it remains unchanged, and also the logo remains in the same size?

    Thank you everybody.

    Thank you Ismael,

    I commented out as follow, and apparently it works in /enfold/functions-enfold.php…

    in the code block starting as… if(!function_exists(‘avia_post_nav’))

    if(version_compare($settings[‘wpversion’], ‘3.8’, ‘>=’ ))
    {
    // $entries[‘prev’] = get_previous_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
    // $entries[‘next’] = get_next_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
    }
    else
    {
    // $entries[‘prev’] = get_previous_post($settings[‘same_category’]);
    // $entries[‘next’] = get_next_post($settings[‘same_category’]);
    }

    Thank you for your assistance.

    #238569

    Hey!

    1) Please insert this code into the quick css field:

    
    .main_color .pricing-table li.avia-pricing-row br{ display: none; }
    

    2) Please install the latest version (Enfold 2.6.1). It comes with new header options and allows you to customize the header layout.

    Best regards,
    Peter

    #238568

    Hi!


    @muslimmedical
    : If you have the Enfold 2.6 version, you can change the portfolio permalink on Settings > Permalink > Portfolio Entry Settings > Portfolio Items Base.

    Regards,
    Ismael

    #238565

    Hey Scott!

    Can you please post the link to the website? Do you have a cache plugin? Please deactivate them. Remove browser cache then reload the page a few times.

    Best regards,
    Ismael

    #238562
    theozijderveld
    Participant

    Hello,

    I do really enjoy the Enfold theme, but one thing keeps bothering me. The e-mail function (which I use for the contact form http://www.yourstory-mystory.nl/contact/) does not work properly. It takes a long time before and e-mail arrives, and sometimes I wonder it I don’t miss e-mails that way. What could be wrong?

    Kind regards,

    Theo Zijderveld

    #238557

    Hi!

    2.) Please use this for the tab title:

    .js_active .tab {
    font-size: 20px !important;
    }

    4.) Use this instead:

    .av-masonry-sort {
    padding: 30px;
    }

    Cheers!
    Ismael

    #238548

    Hi!

    Personally I can’t reproduce the issue but maybe the animation code doesn’t trigger after the page load. To fix this open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist.php and replace:

    
    				$output  = "";
    				$output .= "<li>";
    

    with

    
    				$output  = "";
    				$output .= "<li class='avia_start_animation'>";
    

    Best regards,
    Peter

    #238535

    Hi!

    For a quick fix open up wp-content/themes/enfold/includes/helper-main-menu.php and replace:

    
    if(!empty($nav)) 
    

    with

    
    if(!empty($nav) || empty($nav)) 
    

    and make sure the top menu is active. The next update will enable you to display the flags in the main navigation if the secondary menu is deactivated or to display the flags in the top bar even if no secondary menu is selected.

    Cheers!
    Peter

    #238530

    Hi!

    You can refer to this link: https://kriesi.at/support/topic/how-can-you-add-a-tagline-or-subheading-to-all-pages-for-the-enfold-theme/

    Instead of editing header.php, find the code on includes > header-main-menu.php. Go to line 101:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
    

    Follow the instructions on the link.

    Regards,
    Ismael

    Hi!

    I did some tests and it must be related to some sort of cache. I’m not sure if it’s WP-Super Cache or a server side cache script but it seems like the post queries are cached for users who are not logged in and as soon as you switch the theme (i.e. to TwentyThirteen) or deactivate plugins the server clears the cache and rebuilds the blog. I can reproduce this issue with all themes though – i.e. the post will also not appear if you create it with TwentyThirteen. You first need to switch to Enfold and then it will suddenly pop up.

    Regards,
    Peter

    #238521

    Hey!

    Please go to Enfold > Sidebar > Page Sidebar navigation, disable the nested navigation.

    Regards,
    Ismael

    OK thanks i will wait for the update then.

    Maybe you can add it as a checkbox in header options (display WPML language switcher on top left/right.)

    Thanks.

    #238517

    Hey!

    Please go to Enfold > Sidebar > Page Sidebar navigation, disable the nested sidebar.

    Regards,
    Ismael

    Hey Wanderlustme!

    Looks like you need to watch these videos to learn more about the theme: http://vimeo.com/channels/aviathemes/

    Refer to this link for basic stuffs: http://kriesi.at/documentation/enfold/

    Please come back to use after you watch the videos and figured out most of the things above. You can setup a blog using the Blog Posts element on a page. You can select which categories to show and how many posts you want to show on a specific page. Select different blog style like grid, multi author etc. You can control the number of comments on Settings > Discussion. Related posts are shown by tag.

    For the menu, please go to Appearance > Menus then create a new menu. Assign this new menu as Enfold Main Menu.

    Create portfolio page using the Portfolio Grid element. Like the blog posts, you can select which categories you want to show on a specif page. You can also use the full width masonry element if you want to show the blog or portfolio in a different way.

    Best regards,
    Ismael

    #238506

    Topic: Tag Cloud Styling

    in forum Enfold
    janeyj
    Participant

    Can you please tell me where to remove the Enfold styling so this defaults to the traditional looking tag cloud (where each word gets bigger with more tags)?

    Thank you!

    #238495

    In reply to: Header social icons

    Hey!

    I can’t find the Editor on Appearance panel. Did you deactivate it somehow? I would like to check the code. I”m not sure why the social icons is outside the header_meta container. Please download the theme again on your themeforest account then update the whole theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    If that doesn’t work, please check the file permission of wp-content/uploads/dynamic_avia to 755 or higher. Delete enfold.css file. Go to Enfold > Styling then change the predefined color scheme back and forth to regenerate the enfold.css file.

    Best regards,
    Ismael

Viewing 30 results - 225,181 through 225,210 (of 243,488 total)