Viewing 30 results - 242,791 through 242,820 (of 244,458 total)
  • Author
    Search Results
  • #125713

    okay, thank you, Dude, I will give it a try!

    #125842

    Hello Ismrael,

    Always with the great replies!

    This works great for Firefox and Chrome, though for IE when I hover it doesn’t show but I can still click and be taken through to the item. Is there any way around this for IE or not really?

    Cheers mate,

    Daniel

    #125712

    Hi!

    Yes, you can export the “avia_options_enfold” option field in the wp_options table. However it’s a serialized array – thus you might want to use: WP MIGRATE DB

    Regards,
    Peter

    #125630

    Hey!

    Hi,

    I can’t reproduce this issue on my test server: http://www.screenr.com/ZjSH

    Please make sure you’re using the latest theme version (Enfold 1.7).

    Best regards,

    Peter

    #125802

    Open up wp-contentthemesenfoldconfig-woocommerceconfig.php and delete following line:

    if($image) echo "<div class='page-thumb'>{$image}</div>";

    If you want to replace it with the term name replace the line above with

    echo $term->name;

    #125761

    Open up wp-contentthemesenfoldjsavia.js and replace

    if(container == 'body')
    {
    var elements = $('#main a img').parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a');
    }
    else
    {
    var elements = $('a img', container).parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a');
    }

    with

    if(container == 'body')
    {
    var elements = $('#main a img').parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .mg_grid_wrap a, .thumb');
    }
    else
    {
    var elements = $('a img', container).parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .mg_grid_wrap a, .thumb');
    }

    #125581

    Hey,

    No problem.

    Cheers,

    Ismael

    Hi,

    Can you give us a link where you test the plugin?

    Regards,

    Ismael

    #125505

    1) See https://kriesi.at/support/topic/custom-font-with-cyrillic-symbols – you can add a new font or overwrite an existing font – a list of all supported fonts can be found in wp-contentthemesenfoldincludesadminregister-admin-options.php

    'Alice'=>'Alice',
    'Allerta'=>'Allerta',
    'Arvo'=>'Arvo',
    'Antic'=>'Antic',

    'Bangers'=>'Bangers',
    'Bitter'=>'Bitter',

    'Cabin'=>'Cabin',
    'Cardo'=>'Cardo',
    'Carme'=>'Carme',
    'Coda'=>'Coda',
    'Coustard'=>'Coustard',
    'Gruppo'=>'Gruppo',

    'Damion'=>'Damion',
    'Dancing Script'=>'Dancing Script',
    'Droid Sans'=>'Droid Sans',
    'Droid Serif'=>'Droid Serif',

    'EB Garamond'=>'EB Garamond',

    'Fjord One'=>'Fjord One',

    'Inconsolata'=>'Inconsolata',

    'Josefin Sans' => 'Josefin Sans',
    'Josefin Slab'=>'Josefin Slab',

    'Kameron'=>'Kameron',
    'Kreon'=>'Kreon',

    'Lobster'=>'Lobster',
    'League Script'=>'League Script',

    'Mate SC'=>'Mate SC',
    'Mako'=>'Mako',
    'Merriweather'=>'Merriweather',
    'Metrophobic'=>'Metrophobic',
    'Molengo'=>'Molengo',
    'Muli'=>'Muli',

    'Nobile'=>'Nobile',
    'News Cycle'=>'News Cycle',

    'Open Sans'=>'Open Sans:400,600',
    'Orbitron'=>'Orbitron',
    'Oswald'=>'Oswald',

    'Pacifico'=>'Pacifico',
    'Poly'=>'Poly',
    'Podkova'=>'Podkova',
    'PT Sans'=>'PT Sans',

    'Quattrocento'=>'Quattrocento',
    'Questrial'=>'Questrial',
    'Quicksand'=>'Quicksand',

    'Raleway'=>'Raleway',

    'Salsa'=>'Salsa',
    'Sunshiney'=>'Sunshiney',
    'Signika Negative'=>'Signika Negative',

    'Tangerine'=>'Tangerine',
    'Terminal Dosis'=>'Terminal Dosis',
    'Tenor Sans'=>'Tenor Sans',

    'Varela Round'=>'Varela Round',

    'Yellowtail'=>'Yellowtail',

    Eg if you want to use Open Sans with Cyrillic characters add following code to the bottom of functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,700,400italic,700italic&subset=cyrillic';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,700,400italic,700italic&subset=cyrillic';
    return $fonts;
    }

    2) To change the body font size insert following code into the quick css field and change the font size/line height value:

    body {
    font: 13px/1.65em "HelveticaNeue", "Helvetica Neue",Helvetica,Arial,sans-serif;
    }

    The first value is the font size, the second value the line height.

    You can change the headline sizes with

    h1 { font-size: 34px; line-height: 1.1em; margin-bottom: 14px;}
    h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }
    h3 { font-size: 19px; line-height: 1.1em; margin-bottom: 8px; } /*28*/
    h4 { font-size: 17px; line-height: 1.1em; margin-bottom: 4px; } /*21*/
    h5 { font-size: 16px; line-height: 1.1em; } /*17*/
    h6 { font-size: 14px; line-height: 1.1em; }

    #125404

    Enfold uses a new breadcrumb function which is also located in class-breadcrumbs.php – search for

    $trail[] = '<a href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" class="trail-begin">' . $show_home . '</a>';

    You can replace the get_bloginfo( ‘name’ ) function with your custom text. If you want to replace the $show_home variable content (by default it’s “Home”) I’d recommend to modify the breadcrumb parameters in functions-enfold.php and replace:

    $defaults 	 = array(

    'title' => get_the_title($id),
    'subtitle' => "", //avia_post_meta($id, 'subtitle'),
    'link' => get_permalink($id),
    'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
    'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    'breadcrumb' => true,
    'additions' => "",
    'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    );

    with

    $defaults 	 = array(

    'title' => get_the_title($id),
    'subtitle' => "", //avia_post_meta($id, 'subtitle'),
    'link' => get_permalink($id),
    'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
    'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    'breadcrumb' => true,
    'additions' => "",
    'show_home' => __( 'MY CUSTOM TEXT', 'avia_framework' ),
    'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    );

    and insert your custom text instead of “MY CUSTOM TEXT”.

    #125618

    Hey!

    Please search for following code in enfold/js/avia.js

    switchWidth 	  = 767;

    if(first_level_items > 8 && !bottom_menu)
    {
    switchWidth = 989;
    header.addClass('mobile_menu_tablet');
    }

    Try to change the switchWidth value of 767 to 1006.

    Regards,

    Peter

    #125841

    Hi,

    Not sure if this is the one you’re looking for. Add this on your custom.css or Quick CSS. This will disable the link.

    .cart_list.product_list_widget li a {
    cursor: default;
    pointer-events: none !important;
    }

    Regards,

    Ismael

    #25087

    Topic: Enfold Theme

    in forum Enfold
    sharonleaney
    Participant

    I just purchased this theme and as i am new to WordPress – ‘well documentation’ – was a must for before buying a new Theme. Where would i best find this ‘Documentation’ or which Video would you recommend i watch first to get started. I don’t want to download the Demo (tried but failed – and have never downloaded demos with previous Themes). Just looking for how to properly set up from the start. Cheers

    Shaz

    Hi,

    What type of Blog style do you have? You can find the settings on Enfold > General Settings > Blog Style.

    You can add this on your custom.css Or Quick CSS

    .big-preview.single-big a, .small-preview {
    pointer-events: none;
    cursor: default;
    }

    Regards,

    Ismael

    #25143
    Scott
    Participant

    I am so happy you added the Ajax Portfolio to the Enfold theme. I have had no problem adding the items I want but for some reason, when adding a video, it only opens up in lightbox. When I use the same Ajax Portfolio in the Choices theme, you click on the featured image, just like you do for a picture, and slides to the top and gives a brief description of the video. In Enfold, you click on the image and it just opens in lightbox instead of suing the Ajax feature. Hope that makes sense.

    Am I doing something wrong? I have even tried adding preview images.

    Scott

    stats4stem
    Participant

    Hi,

    Here is a link to my issue (image provided):

    http://www.helpwithstats.com/?page_id=222

    Essentially, in the enfold theme, how do I:

    1. Remove the top bar above the header

    2. Reduce the whitespace found across all pages between the menu and text

    3. Reduce the white space above and below the horizontal ruler.

    Is there is some css code that I can drop into the “Quick CSS” box to help with these modifications. For 2 and 3, I can do some trial and error with the code to find what is right.. just need some help with code :)

    Thanks!

    Note:

    comes the dummy.xml somewhere with the Themeforest’s download of from an exernal server?

    #25132
    georgeyounan
    Participant

    Good Afternoon,

    For some reason the slider is not transitioning in the different web browsers when you go to the actual page. It is showing up in the PREVIEW mode in the dashboard, so I don’t know what is going on. Any help?

    THANKS!

    George

    #25131
    andypeck
    Participant

    Hi there,

    on your demo page (ive not installed it as im building from afresh) and I see you have several galleries on this page that are different to the default regarding the thumbnail borders

    the top gallery has no border at all but has a fine margin between each image. How do I replicate but also do it so that it doesnt wreck the other galleries on that same page if I create another (with borders this time). Just like this page.

    Also, how do you replicate the others with a different margin to the borders. Am I missing a setting somewhere in the builder or does it all have to be done in CSS. Either way, how do i create this page?

    cheers

    Andy

    BeeCee
    Participant

    Hi,

    I have deleted all old dummy things from ENFOLD and started from scratch in the hope, that I get with the new dummy data of ENFOLD’s version 1.7 the SHOP page thing.

    But … nothing … the dummy data seem to be the same as in version 1.6 :-(

    And:

    how is it possible to get always the newest dummy data to an existing installation without getting lost of existing stuff?

    Is it possible with some special workaround?

    – – –

    By the way: I have updated from version 1.6 to 1.7 only these files and folders, which Kriesi mentioned in the changelog text file!

    #25079
    BeeCee
    Participant

    Hi,

    is it possible to save/export ENFOLD’s theme options in any way?

    If there isn’t a possibility within WordPress, then perhaps using PHPmyAdmin?

    Thanks.

    #114681

    The EXPORT of the THEME OPTIONS would be great.

    For example, if you would like to have the same settings for the theme’s options as a basis for another WordPress installation with ENFOLD, or just for a backup in case your WP crashes ;-)

    #125580

    Ah, I see, thanks a lot!

    #125530

    Thanks. I think it really seems to be intended to work that way, which is sad. Thanks again for the quick reply.

    #125415

    @ ianstudio:

    Any suggestions? Sitting on the same issue…

    #125529

    Hi rhunecke,

    I believe the color section only works as a full width element. I’ll tag the topic for Kriesi to get confirmation for sure but I’m fairly sure its only intended to be a full width element in layouts.

    Regards,

    Devin

    #125480

    Hi colorit2,

    I’ll tag Kriesi on the post since as far as I know if it isn’t supported be default he may not have gotten it working at all or there was an issue preventing him from adding it as a feature.

    Regards,

    Devin

    #25123
    Daniel
    Participant

    Hello,

    I have no idea where this is in the code or how to do it, but I would greatly appreciate some help on this one.

    Basically in Enfold with WooCommerce installed, when you add a product it adds the nice ajax symbol top right of the shopping cart and then you can hover over it and see the items you have added and view cart and checkout.

    If you hover over those items you can then click on them and be taken to that product.

    Due to the fact I’m building a course website and have used ‘add to cart’ buttons and not actually the product pages. I want it so I can’t click on the items in the cart widget (ajax thing) I want it so people can just use it as a reference to see what’s in their cart and click to checkout or see cart etc..

    So in short I just want the items to still show exactly how they are but not hyperlinks or.. clicking on the items takes me straight to the cart and not the product?

    Hopefully that makes sense, been trying to find out where it’s putting the link tags then I could properly nut it out, but I’m here as a last resort.

    Cheers,

    Daniel :)

    #125800

    Follow up I guess I should ask, Is the dummy data updated in line with the Demo Enfold site?

    I can select all the pages and posts and portfolio items etc and delete them manually and upload dummy data again, no?

Viewing 30 results - 242,791 through 242,820 (of 244,458 total)