Viewing 30 results - 240,991 through 241,020 (of 244,415 total)
  • Author
    Search Results
  • #134451

    Hi!

    Try following – open up wp-contentthemesenfoldforum.php and replace

    global $avia_config;

    with

    global $avia_config;
    $avia_config['layout']['current'] = $avia_config['layout']['fullsize'];
    $avia_config['layout']['current']['main'] = 'fullsize';

    Regards,

    Peter

    #114960

    Is it possible to transfer the translation from one theme to another or do I have to translate form the scratch? Anyway, Latvian translation will come as well.

    #134463

    In reply to: old jQuery issue

    Hey!

    Which version of Enfold are you using? Please upgrade to v1.9.1 which is compatible with wp3.6 and it should also fix the jquery error message.

    Regards,

    Peter

    Hi!

    please try to re-upload the wp-contentthemesenfoldconfig-templatebuilderavia-template-builder folder (via ftp) and make sure that all files on the server are overwritten by the new files (Enfold 1.9.1 files).

    Best regards,

    Peter

    #134281

    1) Try to update Enfold to the latest version (1.9.1).

    2) If this doesn’t help try to deactivate all third party plugins. Maybe a plugin conflicts with the theme/slider. If the slider works afterwards activate the plugins one by one to find the culprit.

    #27567
    hojoon
    Participant

    Hello

    ‘fade’ works well at all browsers.

    But, ‘slide’ animaiton in all sliders of Enfold theme does not work at IE9 and Opera.

    I hope this works well at IE.

    I am using below;

    WP3.6

    Enfold1.9.1

    Server: PHP5,MySQL5.x

    Waiting your surport…

    Regards,

    Hojoon

    shawjared
    Participant

    I get the following error after the latest theme update:

    Fatal error: Call to undefined method ShortcodeHelper::avia_apply_autop() in /home/wrapwave/public_html/wrapwave.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/team.php on line 284

    http://wrapwave.com/about-us/

    Can you take a look?

    Thanks

    #134182

    Do you have the lastest upgrade of Enfold? That might be a solution. Mine wasn’t working after WP 3.6 install and it does now after I upgraded.

    #133419

    I have the same issue : I run WP 3.6 and Enfold 1.9.1

    #134251

    Hi macrunner,

    From the theme options you can use the Header tab to choose the type of header you want. Some of the header options include a secondary menu.

    See the demo examples here: http://kriesi.at/themes/enfold/headers/

    Regards,

    Devin

    #27509
    macrunner
    Participant

    Hi,

    In Enfold there are 3 menu, Main Menu, Footer Menu and Secondary Menu.

    I created Main Menu and Footer Menu and it works perfectly, but Secondary Menu does not appear.

    The Secondary Menu what is it?

    I would like to add a new menu, above the Main Menu, as in this screenshot: http://i.imgur.com/kcDa1IX.jpg

    Thanks

    #134249

    Hey!

    Pretty much all of them came from the portfolio of this user:

    http://photodune.net/user/ollyi/portfolio?utf8=%E2%9C%93&sort_by=sales_count&ref=Kriesi

    Cheers!

    Kriesi

    #134127

    Thank you Peter,

    My issue is with the Enfold theme unfortunately. I can activate any of the other themes I own and have no trouble posting. Only when I activate Enfold, do these issues arise. I have been forced to changing themes to compose a blog post and then activating Enfold when I am finished, which appears to work fine delivering my posts each morning. A pain, but a workaround for the time being. I would rather not switch permanently to another theme. I like how Enfold looks on my site, but you can understand I can not continue activating and deactivating every time I wish to add another post.

    Thanks again

    #114783

    Hi Ismael,

    the code above, sets the category-browsing in every case. I mean that an user should stay in a category, only if he chooses that category before, not in general.

    For Example: Someone starts in the main blog-page, where all posts are listed. Then he wants, that clicking at the next- or previous-arrows leads him through all posts. But if he selects before a specific category, he expected, that the arrows guide him only through the posts in the selected category. The plugin ‘smarter-navigation’ remembers, if someone comes from a category-archive or not, and from wich category he comes.

    Regards,

    Günter

    #27538
    hsie
    Participant

    Hi, just wonder how to remove the debug information in the theme as below, thanks in advance!

    <!–

    Debugging Info for Theme support:

    Theme: Enfold

    Version: 1.9.1

    Installed: enfold

    AviaFramework Version: 1.8

    AviaBuilder Version: 0.3

    ML:128-PU:7-PLA:5

    –>

    #114782

    I also request the following:

    A deeplinking feature for the AJAX portfolio ;) I would love to link to specific portfolio items from any page of my website.

    It would be cool if we could link to a extended ajax portfolio item.

    #25692
    bevlogenverf
    Participant

    Hi I would like to remove the place where you see on the page name and the breadcrumb on all pages.

    Any code that would help?

    http://www.bevlogenverf.nl/enfold2

    #134284

    In reply to: Ajax Search

    In functions-enfold.php replace

    if(!empty($post->post_excerpt))
    {
    $excerpt = apply_filters( 'avf_ajax_search_excerpt', avia_backend_truncate($post->post_excerpt,70," ") );
    }
    else
    {
    $excerpt = apply_filters( 'avf_ajax_search_time_format', get_the_time(get_option('date_format'), $post->ID) );
    }

    with

    if(!empty($post->post_excerpt))
    {
    $excerpt = apply_filters( 'avf_ajax_search_excerpt', avia_backend_truncate($post->post_excerpt,70," ") );
    }
    else
    {
    $excerpt = apply_filters( 'avf_ajax_search_time_format', get_the_time(get_option('date_format'), $post->ID) );
    }

    $taxonomies = get_object_taxonomies(get_post_type($post->ID));
    $cats = '';
    $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'));

    if(!empty($taxonomies))
    {
    foreach($taxonomies as $taxonomy)
    {
    if(!in_array($taxonomy, $excluded_taxonomies))
    {
    $terms = get_the_terms( $post->ID, $taxonomy );

    if(!empty($terms))
    {
    foreach($terms as $term)
    {
    $cats .= $term->name .' ';
    }
    }
    }
    }
    }

    and

    $output .=      $excerpt;
    $output .= " </span>";
    $output .= "</span>";

    with

    $output .=      $excerpt;
    $output .= " </span>";
    $output .= "</span>";
    $output .= __('Categories:','avia_framework') . ' ' .$cats;

    This will add a list of all categories to the search result. However it’s not possible to apply add links to the categories which point to the category archive pages because the search results are wrapped into an a href tag and you can’t create a link inside a link. On the other hand the layout will be messed up if you add the categories after the a href element.

    #133928

    In reply to: Menu Header Layout

    Hi,

    1) No, such a menu layout is not supported by Enfold. The Mega Menu allows you to build columns (like the submenu of “Pages” here: http://kriesi.at/themes/enfold/ ) but it’s actually just a dropdown which fades in and it’s not easily possible to convert it to a “column menu” like here http://www.hillsong.co.uk

    2) You could try to build a layout with 2/3 and 1/3 column elements. Then add an Easy Slider into the left column (2/3) and an easy slider into the right columns (1/3). Probably you won’t get exactly the same look but it will be similar.

    #133484

    Thanks Ismael!! I’ll give that a try. I know that sometimes there is a line of code (I think in functions.php) where the slider quality is set to 90 by default. I would like full quality. Am I making sense? Sorry, very tired.

    Cheers!

    Pat

    #134141

    The gallery itself does not support social share buttons but you can try to add the social share links to the lightbox (prettyphoto). Open up enfold/js/avia.js and replace

    elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });

    with

    elements.prettyPhoto({ slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });

    The share buttons will look like: Demo

    #114781

    Hey,

    @kommbuero: You can actually do it by editing function-enfold.php, find this code:

    if(!function_exists('avia_post_nav'))
    {
    function avia_post_nav($same_category = false)

    Set it to true:

    if(!function_exists('avia_post_nav'))
    {
    function avia_post_nav($same_category = true)

    Regards,

    Ismael

    #114780

    I add this topic at the recommendation of Nick (thread “Can I use the navigation arrows for each category, not all?”)

    If someone selects a category, and then clicks inside that category a single post, the prev/next-arrows do not navigate inside that category.

    There exists a small (5 kb) plugin wich would solve this problem. But is hard to integrate this plugin into the theme.

    It would be very helpful, if there would be any possibility to browse inside a category.

    #134154

    Yes, the reason is that Enfold will always add the sidebar to the last element after a fullwidth element. In your case the layout is built with a “sidebar element”, a “fullwidth color section” element and Enfold adds the sidebar to the content element after the color section. If you want to avoid this layout you’ve two options.

    1) Use the product element after the color section.

    2) Use a fullwidth layout without sidebar and use the column elements (eg 3/4 1/4) to display the products element side by side with some “widget area” elements. The layout would look like:

    header…


    1/4 (widet areas) / 3/4 product grid


    color section


    footer…

    This issue will be fixed in the next version. For now open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php and replace

    $output = str_replace('{{thumbnail}}', $thumb_fallback, $output);

    with

    $output = str_replace('{{thumbnail}}', $thumb_fallback, $output);

    wp_reset_query();

    #134113

    Enfold does not allow you to add custom icons to the font file which is bundled with the theme at the moment but we’re working on a “font icon” generator which will help the user to build a customized font file (which just contains the icons you need). mp3power suggestion seems to be a great workaround for now.

    #124668

    Hi,

    You can submit a request here: https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Ismael

    #134328

    Saved again, by your great work. I upgraded manually to theme 1.9.1… retaining my CSS files (just didn’t replace them on the server) and everything works great.

    Thanks guys… I’ll check with you next time…

    really nice website

    #27535
    bevlogenverf
    Participant

    Hi, guys

    the theme is so nice

    with what code could i get the top menu bigger? the one with the phone numder, extra menu and social icons there? any css code for it? htttp://www.bevlogenverf.nl/enfold2

    THX!

Viewing 30 results - 240,991 through 241,020 (of 244,415 total)