Viewing 30 results - 242,641 through 242,670 (of 242,763 total)
  • Author
    Search Results
  • aweterings
    Participant

    After updating the theme to version 1.3, the blank pages are not centered anymore. The pages are aligned to the left. Tried opening the pages in Chrome and Safari.

    #22468
    schorni
    Participant

    Hallo,

    ich habe heute das Enfold-Theme gekauft und stoße bei der Erstellung eines Mega Menüs auf zwei Probleme:

    1. Wie bekomme ich es hin, ein Mega Menü wie in eurer Live Preview zu erstellen, bei dem jede Reihe eine vergrößerte, nicht verlinkte Überschrift hat? Komischerweise ist in eurer Demo dieser Aufbau nur mit dem Standard-Style zu sehen, alle anderen Styles haben kleinere Überschriften mit senkrechten Strichen links und rechts, die zudem verlinkt sind.

    2. Wie kann ich eine weitere Reihe erstellen, die keine Menüpunkte, sondern ein Bild oder HTML-Code enthält?

    3. Kann man im Hauptmenü auch Menüpunkte erstellen, die nicht verlinkt sind, sondern beim Hover nur das Untermenü aufklappen?

    Danke.

    #114570

    (from 3 posts)

    Layout Builder on Custom Post Types would be a dream come true!

    I’ve been using some of the leading Frameworks for a few years now (Thesis, Genesis, Headway) and after five minutes with Enfold/Avia I was able to do more, and have more fun doing it – than with any of those.

    ============

    The only let-down is that all of this incredible Layout Builder is limited to only pages and portfolio items.

    I imagine it would be allot more complex to attempt to make this work on custom post types, or posts.

    But if I could see anything added to this theme, that would be it.

    And while I’m at it – my sincere compliments to the development team – this is really an awesome theme!

    =============

    Allow to customize the Archive slug for portfolio items.

    In the General Settings you have given the option to customize the single-portfolio slug.

    That’s very helpful.

    But it would make more sense if you also had the option of making the Archive pages reflect the plural form of that slug.

    So, if I change the single slug to “lesson”, the archives would be “lessons” (instead of portfolio-items/)

    Thanks

    #22465

    Topic: theme layout diagram

    in forum Enfold
    jeffcrain
    Participant

    Is there a diagram of the enfold theme that describes what each part is? such as header, content, widget, etc

    #114863

    In reply to: Enfold child theme

    We’ll fix this in the next version – for now you need to replace

    if(!function_exists('avia_frontend_js'))

    with:

    if(!function_exists('avia_register_frontend_scripts'))

    in enfold/functions.php. The next version will contain this fix and your child theme will work without this mod.

    #114862

    In reply to: Enfold child theme

    no, this brings up a blank page. I already have a child functions.php.

    #114861

    In reply to: Enfold child theme

    You can add a functions.php to your child theme folder – then insert following code into the child theme functions.php:

    /*
    * Register frontend javascripts:
    */
    if(!function_exists('avia_frontend_js'))
    {
    if(!is_admin()){
    add_action('wp_enqueue_scripts', 'avia_register_frontend_scripts');
    }

    function avia_register_frontend_scripts()
    {
    $template_url = get_template_directory_uri();
    $child_theme_url = get_stylesheet_directory_uri();

    //register js
    wp_register_script( 'avia-compat', $template_url.'/js/avia-compat.js', array('jquery'), 1, false ); //needs to be loaded at the top to prevent bugs
    wp_register_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 1, true );
    wp_register_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery'), 1, true );
    wp_register_script( 'avia-prettyPhoto', $template_url.'/js/prettyPhoto/js/jquery.prettyPhoto.js', 'jquery', "3.1.5", true);
    wp_register_script( 'avia-html5-video', $template_url.'/js/mediaelement/mediaelement-and-player.min.js', 'jquery', "1", true);

    wp_enqueue_script( 'jquery' );
    wp_enqueue_script( 'avia-compat' );
    wp_enqueue_script( 'avia-default' );
    wp_enqueue_script( 'avia-shortcodes' );
    wp_enqueue_script( 'avia-prettyPhoto' );
    wp_enqueue_script( 'avia-html5-video' );

    if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); }

    //register styles
    wp_register_style( 'avia-style' , $child_theme_url."/style.css", array(), '1', 'screen' ); //register default style.css file. only include in childthemes. has no purpose in main theme
    wp_register_style( 'avia-grid' , $template_url."/css/grid.css", array(), '1', 'screen' );
    wp_register_style( 'avia-base' , $template_url."/css/base.css", array(), '1', 'screen' );
    wp_register_style( 'avia-layout', $template_url."/css/layout.css", array(), '1', 'screen' );
    wp_register_style( 'avia-scs', $template_url."/css/shortcodes.css", array(), '1', 'screen' );
    wp_register_style( 'avia-custom', $template_url."/css/custom.css", array(), '1', 'screen' );
    wp_register_style( 'avia-prettyP', $template_url."/js/prettyPhoto/css/prettyPhoto.css", array(), '1', 'screen' );
    wp_register_style( 'avia-media' , $template_url."/js/mediaelement/skin-1/mediaelementplayer.css", array(), '1', 'screen' );

    wp_enqueue_style( 'avia-grid');
    wp_enqueue_style( 'avia-base');
    wp_enqueue_style( 'avia-layout');
    wp_enqueue_style( 'avia-scs');
    wp_enqueue_style( 'avia-prettyP');
    wp_enqueue_style( 'avia-media');

    //register styles
    if($child_theme_url != $template_url)
    {
    wp_enqueue_style( 'avia-style');
    }

    global $avia;
    $safe_name = avia_backend_safe_string($avia->base_data['prefix']);

    if( get_option('avia_stylesheet_exists'.$safe_name) == 'true' )
    {
    $avia_upload_dir = wp_upload_dir();

    $avia_dyn_stylesheet_url = $avia_upload_dir['baseurl'] . '/dynamic_avia/'.$safe_name.'.css';
    wp_register_style( 'avia-dynamic', $avia_dyn_stylesheet_url, array(), '1', 'screen' );
    wp_enqueue_style( 'avia-dynamic');
    }

    wp_enqueue_style( 'avia-custom');

    }
    }

    #115589

    In reply to: Color Section

    Afaik this is not possible at the moment and the color section will always cover the full width of the page. If you feel like a setting/feature is missing you can suggest it here: https://kriesi.at/support/topic/enfold-feature-requests

    #115750

    Hi,

    no – unfortunately there’s no shortcode right now. I added your request to the feature request thread: https://kriesi.at/support/topic/enfold-feature-requests

    However for now you can use the character map: http://www.entypo.com/characters/ to find the unicode. I.e. for the telephone icon use:

    📞

    #115809

    In reply to: Color styling problem

    HI

    So what I did which works for me is as follows:

    1. Go to Enfold/Styling

    2. Click on the main content tab

    3. Paste #72c4b9 over the previous blue colour in highlight colour [Im using the default colour scheme]

    4. Save all changes

    Then the hover colour has changed to the one I want on the front end.

    It does sound odd that you can’t even change the colour scheme… I’m a new user here so that

    s the only suggestion I have .. hopefully someone else can help.

    But to answer my own question about CSS changes to the heading colours, further searching showed that the !important marker is required. So this CSS works – copied from an earlier answer by Kriesi staff about another theme – but worked for Enfold.

    h1, h2, h3, h4, h5, h6, legend { color: #5A5A5A !important; }

    #22454

    Topic: Google Maps

    in forum Enfold
    Snert
    Participant

    Hi, how can I google maps (as here: kriesi.at/themes/enfold/pages/contact/) insert? Thank you for reply.

    #115808

    In reply to: Color styling problem

    Hello Gordon,

    Thanks for your message. Yes, I do mean at Dashboard/Enfold/Styling. The changes I make don’t in any way affect the website. Everything stays green.

    #115807

    In reply to: Color styling problem

    Hi

    Do you mean using the Enfold settings tab or using CSS?

    At Dashboard/Enfold/Styling you can change colours for the paragraph text, link colour, borders, alternative layout background etc. This is working fine for me.

    But I can’t figure out how to change the colours for headings & CSS changes don’t seem to work. I will start a separate query re this.

    Gordon

    #115662

    In reply to: enfold audio players

    Glad we could help :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    #22445

    Topic: Color styling problem

    in forum Enfold
    timmeeh89
    Participant

    I am trying to change the colors of everything in the Enfold Theme Options under Styling, but when I change something, nothing happens. I keep turning things to pink, because that’s the color of our compagny, but still everything is staying green. I also can’t change to any of the pre-defined color schemes. Is there something I am missing?

    #115094

    thanx a lot… It’s great!

    #115661

    In reply to: enfold audio players

    thanx a lot. It works when the code is added to tbe quick css. It seems than the plugin css is inactive…

    you’re great!

    #114860

    In reply to: Enfold child theme

    Would be nice to have the child theme css load AFTER the main css. now we have to make all childtheme css a higher priority:

    #top #main .alternate_color.title_container .main-title a {color: #fff;}

    #114566

    Hi

    Great theme.

    1. Agree with Sebastian’s suggestions for small fixed header WITH social icons?

    2. Control over main menu fonts/size/colour [can’t see how to do this without CSS, correct me if it’s already there]

    Thanks

    #115729

    Hi lounge35,

    Kindly check this thread: https://kriesi.at/support/topic/enfold-child-theme

    Regards,

    Ismael

    #115506

    Make sure to clear your browser cache by refreshing the page 3-4 times after making a change. At the very least the option for small non fixed header will definitely not be fixed as I have that on my personal site: http://devinvinson.com/

    Regards,

    Devin

    #115660

    In reply to: enfold audio players

    Hi funkybytes7,

    In that plugins css, the height is too small on the audio player for some reason. You can overwrite it with:

    .mbMiniPlayer table span{
    height: 25px!important;
    }

    and for the track title:

    .mbMiniPlayer table span.map_title {
    height: 15px !important;
    }

    Add that to the themes custom.css file or Quick CSS field in the styling tab of the theme options. If that doesn’t do it, you’ll need to add it to the bottom of the plugins style.css file (if its getting added after the theme styles).

    Regards,

    Devin

    #22425
    andyhoodified
    Participant

    Is there a way you can guys can make it work in the next update? or If CSS can fix it?

    I use facebook comments plugin by fat panda for a lot of my other blogs.

    It’s really really useful. I’m sure for your other users as well.

    Any help would be great.

    Source post with facebook comments by fat panda plugin activated, but not showing up.

    http://www.hoodandheist.com/2013/04/angst-and-depression-the-ultimate-growth-experience-via-tiny-buddah/

    Thanks much

    andy

    #115093

    You can also use the theme’s built in option on each page in the Layout meta box on the right hand side. Just choose the option you want (either show or hide the header) where it says:

    Header Settings
    Display the Header with Page Title and Breadcrumb Navigation?

    with the dropdown there.

    Regards,

    Devin

    #115505

    I know what you mean. I try all the settings header but my header still fixed. Thanks

    #22412
    lounge35
    Participant

    I have tried to setup a child theme using the method I normally use. But for this theme it doesn’t work, as wordpress displays the child theme as a broken theme.

    I setup the child theme with a styles.css file with thw following

    /*

    Theme Name: New theme

    Description: New theme

    Author: name

    Template: Enfold

    Version: 1.0

    */

    @import url(“../enfold/style.css”);

    Are there instructions for setting it up for this theme, or are there files with just a blank child theme.

    #115724

    Just go to Enfold Settings – Theme Options and choose your Comming Soon Page in Frontpage Settings…

    #115133

    Glad we could help :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    #22411
    SMEketing
    Participant

    Is there a way of doing this within Enfold? Or do I need to install a ‘Coming Soon’ plugin and use the page template that comes with the theme?

    Thanks for your help.

    #115401

    Strange – it worked for me – please remove the code from the quick css field, then add it to enfold/css/shortcodes.css. You can insert it at the very bottom of the file. Afterwards clear your browser cache. If it still doesn’t work can you post a link to the page where you’re using the shortcode please? I’m really sorry for the hassle but css styling issues can be a pain especially if they just affect certain browsers/configurations….

Viewing 30 results - 242,641 through 242,670 (of 242,763 total)