Viewing 12 results - 243,811 through 243,822 (of 243,822 total)
  • Author
    Search Results
  • #114381

    Hey! I think I found a way to solve this issue. Since solving this requires me to implement the “ajax functionality” of choices as well it might last a little but I have already some ideas on how to make the transition as easy as possible :)

    #114261

    I want a little bit of a less-formal, more “personal” feel (this will be a personal website to promote myself as a public speaker, including my new teaching series, and eventually books). Will I be able to change the font of titles and main headings in Enfold to something a little bit informal?

    Also is there any way to add a promotional widget anywhere on the header, like a banner add for my book, or to make the slider smaller and have a promotional widget in the right-hand column? I realize that may not be possible but it it were an option it would remove all doubt that this is the theme I’ll go with.

    Thanks for your patience! I’m likely to stick with you guys for my themes in the future since you offer such prompt and thorough tech support.

    #22173
    sanderpinkse
    Participant

    I would like to build a magazine-like home page in Enfold. To that end, it would be great if the blog posts content element would support the offset attribute.

    In that way, you could for instance have two blog posts elements: one with the latest three posts in full width, and another one with the next 12 posts or so in a grid.

    Would that be possible without too much trouble?

    Cheers,

    Sander

    #114380

    Hey Carl!

    Unfortunately Enfold works with a completely different system so out of the box the old feature media is not compatible with enfold. I will think about a way to port those settings from previous installations to Enfold. Not sure yet if this can be done in a manner that makes sense. I will keep you posted if can come up with something smart…

    #22150

    Topic: Random errors …

    in forum Enfold
    lenscraft
    Participant

    I am getting the following errors occurring randomly while editing my pages. This is one example, but they all look similar:

    Warning: simplexml_load_file() [function.simplexml-load-file]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in /nfs/c07/h04/mnt/106557/domains/lenscraft.com/html/wp-content/themes/enfold/framework/php/class-update-notifier.php on line 62

    Warning: simplexml_load_file(http://kriesi.at/themes/wp-content/uploads/avia_xml/Enfold-Updates.xml) [function.simplexml-load-file]: failed to open stream: no suitable wrapper could be found in /nfs/c07/h04/mnt/106557/domains/lenscraft.com/html/wp-content/themes/enfold/framework/php/class-update-notifier.php on line 62

    Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity “http://kriesi.at/themes/wp-content/uploads/avia_xml/Enfold-Updates.xml” in /nfs/c07/h04/mnt/106557/domains/lenscraft.com/html/wp-content/themes/enfold/framework/php/class-update-notifier.php on line 62

    #22149
    Carl Nelson
    Participant

    I am moving from Choices theme to the Enfold theme. It appears that the “Featured media” images and video from the Choices theme are lost when switching to the Enfold theme. Am I missing something here? An easy way to get them to appear? Do I need to relink hundreds of portfolio item video and images to make the transition to Enfold?

    Carl

    #114260

    1) Yes, you can add a slideshow to each post, page, etc. – the blog template/page itself does not support a slideshow. Only the posts (on the blog page) will display a slideshow if you attached images to these posts but you can use the “dynamic template builder” to build a template with a “slideshow element” and a “blog” element. By using this workaround you can build a “blog” page with a slideshow.

    2) I’m not sure what “banner images” are? If you refer to the slideshow(s) – i.e. demonstrated here: http://kriesi.at/themes/coherence/ – the answer is “yes” (the image with the green leaf + stone is clickable).

    3) No, only Choices comes with flying captions.

    Please note that Kriesi released a new theme today: http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 which is more versatile/flexible than Coherence,Choices,Flagship, etc.

    #114216

    Keeping a theme woo-commerce compatible is a lot of work, thats why we dont add it to every single one. If people like the theme and it sells well we will definitely add it. So earliest possible eta is after a short evaluation in 1-2 weeks

    #114215

    Hi!

    Afaik no WooCommerce integration is planned but I’ll tag this thread for Kriesi (feature request).

    Regards,

    Peter

    #22101
    LugaGuga
    Participant

    Wow, I have already seen Enfold, wonderfull! But when will woocommerce be added?

    Hi,

    Since people asked here is how to add a button to the Fixed Header with Social Icons and Additional Navigation.

    The button http://www.clipular.com/c?9784008=vDuclwRmVGaUtEsvJE5OhIUqBHQ&f=.png

    The button when fixed header shrinks http://www.clipular.com/c?9782007=1ngiPM6XB_EChXBaoJWkUftEaSo&f=.png

    The only thing you need to add manually is the url where the button takes you, and the button’s label.

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

    1) In header.php find line 157 that looks like

    <!-- end container-->

    and replace it with the block below. Inside this block you will need to add the url where the button should take people who press it in place of http://URL which should be in the format: http://www.domain.com/page/ .. and also replace PRESS ME with what you want the button to say. To change the button color change avia-color-red in the css below to blue, or green, etc..

    <div class="avia-button-wrap avia-button-right" style="margin-top: 39px;" >
    <a href="HTTP://URL" class="avia-button avia-color-red avia-size-small avia-position-right ">
    <span class="avia_iconbox_title">PRESS ME</span>
    </a>
    </div>

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

    2) Open up /js/avis.js and find the function on line 809-847 called

    function avia_header_size()

    and replace that entire function with the one below

    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    logo = header.find('.logo img'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    element_button = $('.avia-button-wrap.avia-button-right'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0, newTopMargin =0;

    if(st < el_height/2)
    {
    newH = el_height - st;
    newTopMargin = 39;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;
    newTopMargin = 10;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    element_button.css({'margin-top': newTopMargin + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    3) Add this css to you /css/custom.css or to Quick CSS

    .main_menu {
    right: 80px;
    }
    .avia-button-right {
    display: inline-block;
    left: 28px;
    position: relative;
    float: right;
    }
    @media only screen and (max-width: 767px) {
    .avia-button-right {
    left: initial;
    position: absolute;
    top: 89px;
    right: 9px;
    }
    }

    That’s it.

    Thanks,

    FreshGirl
    Participant

    How do I add a button to the Header?

Viewing 12 results - 243,811 through 243,822 (of 243,822 total)