Viewing 30 results - 239,551 through 239,580 (of 241,850 total)
  • Author
    Search Results
  • #128835

    Hi gabriel_khod,

    I’m fairly certain the shortcodes are not supposed to be support within the layer slider right now. They may work in some cases but it isn’t specifically a supported functionality for now.

    I’ll add the idea for them to be added in the Enfold feature request topic.

    Regards,

    Devin

    #128912

    Hi!

    Open up wp-contentthemesenfoldframeworkjsavia_media_advanced.js and replace

    avia_media_advanced.sortable();

    with

    if($('.avia_sortable_gallery_container').length > 0 || $('.avia_handle').length > 0) avia_media_advanced.sortable();

    Best regards,

    Peter

    #128882

    If you’ve a PHP memory limit of 128M, why do you decrease it in your wp-config? Remove the line, it won’t help. :)

    Anyways 64M is rather low. I do use Enfold with WPML and it soakes 67M in Peak… this has driven me crazy, because of a misbehaviour of my server skeleton.

    Another hint: Enfold does have a debug-feature. Open up config-templatebuilder/config.php and change

    $builder->setMode( 'safe' );

    to

    $builder->setMode( 'debug' );

    This enables a simple input area in posts below the builder (it must be enabled) and you may modify the values right there. It’s also an option to copy contents of the builder to other pages (e.g. dev > live) without using the template stuff.

    Won’t solve your individual probs, but worth a shot.

    Always check the options tab (this saves sometimes a lot of time and nags). ;)

    #128833

    Hey!

    Yes, Enfold fully supports WPML.

    Regards,

    Peter

    mmsh8765
    Participant

    Hi hi,

    I’ve run into trouble with the installation of the theme. I followed your video for installing via FTP; after the files uploaded the theme appeared in my WordPress ‘themes’ dashboard section – however, when I clicked ‘live preview’ I was taken to this:

    Server error

    The website encountered an error while retrieving http://yobanfa.com/wp-admin/customize.php?theme=enfold%2Fenfold. It may be down for maintenance or configured incorrectly

    and I (mistakenly, maybe) went back and tried ‘activate’ and received the same error page…

    Tried to go back and it seems the whole dashboard is broken.. i get the same error just going to /wp-admin :-(

    any help would be lovely

    cheers

    Hi,

    I can’t reproduce the issue – did you find the problem in the meantime? The widget areas and the widgets work just fine for me: http://www.screenr.com/oRgH

    I switched the theme again because I’m not sure if you want to use it instead of Enfold.

    Kind regards,

    Peter

    #128599

    @phangmoh – it seems like both portfolio items are assigned to the same category (products) and the “projects” category is empty (no entries are assigned to this category). Enfold won’t display a category in the filter list if it’s empty or if no entries of this category can be found on the current page (eg if you’re using pagination and the items of category X can only be found on page 2, 3, etc. but not on page 1).

    #128539

    Perhaps i did not describe it correctly, I’ll try as clear as i can:

    In IE9:

    1. go to http://kriesi.at/themes/enfold/portfolio/

    2. click on category filter “HTML”

    3. change category filter by clicking on “PSD”

    4. Click again on “HTML” category filter

    5. Now hover with your mouse over the 4th item and you will see the titles do not match and when u click on the item you don’t go to the item’s page, the link appears to be broken.

    This problem appears after switching back and forth between category filters and only some portfolio items have this problem.

    #128903

    Hi!

    No, don’t think so. Probably SEO Quake Bar affects the browser rendering engine somehow…

    Regards,

    Peter

    #25874
    odac25thka
    Participant

    Hi,

    I would like to use the Qoate Scroll Triggered Box Plugin like this site : liveyourlegend.net

    However, I can’t seem to get it work with Enfold. http://odac25thka.byethost16.com/

    Is there a workaround this?

    Thank you!

    #128475

    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 “Latin Extended subset” 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=latin,latin-ext';
    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=latin,latin-ext';
    return $fonts;
    }

    Note: Not all google fonts support all subsets. You can search for fonts which support “latin extended” characters here: http://www.google.com/fonts/

    #128902

    Sorry, I don’t know SEO Quake Bar. :(

    #128901

    Oh. You are right. But it’s not the Admin Bar. It’s my SEO Quake Bar that is causing the problem. I disabled it and it works now!

    However, just curious, is there a way to make it work with the SEO Quake Bar. I kinda don’t want my site to look broken when they visit. They won’t know it’s SEOquake that’s causing the problem and think it’s my site.

    Hi Devan,

    Thanks for your response.

    1) I’m not sure how the Corona theme is still showing or affecting the Enfold theme. I’ve only changed the custom.css file and added the Enfold Portfolio Coding into these pages. Can you please advise how to get this working as Enfold?

    2) Can you tell me the width of the central section please then I can change the images to fit based on how many columns I’ll use. The image size info in functions.php is only thumbnails not the width of the website design.

    Thanks, Siobhan

    #128900

    Both of your pages look fine in my Chrome. I’d say try logging out of WP and then check the site again. Maybe the WP admin bar is interfering with it?

    #128899

    Hi,

    I experienced problems specific to Chrome as well. When building a blank page in chrome, the page just goes off completely towards the right. This happens with the coming soon page and the Maintenance mode pages.

    Here’s one of my test sites:

    http://odac25thka.byethost16.com/pages/blank/

    Here’s a screenshot of how it looks like on my computer:

    https://dl.dropboxusercontent.com/u/38779815/Screen%20Shot%202013-07-10%20at%203.49.59%20PM.png

    Please advise me what to do. Thank you so much!

    #128719

    Hi Devin,

    Thanks for your response and link.

    I switched themes from Corona to Enfold so have quite a few blog posts and was trying to avoid any manual editing.

    There are excerpt sections on each blog post which are already filled in – should these be showing automatically rather than the full summary?

    Thanks, Siobhan

    #128626

    Hi,

    I think Dude has the right way to go about this. Calendar plugin used a similar approach http://trac.theseednetwork.com/ticket/251 For me all the German words are static (in the sense that its always the same set of words in the same positions http://i.imgur.com/LaUGYv6.png these two words, and another phrase blinking quickly sometimes…) so worse comes to worse can even come up with a quick hack and add it right into the do_search function on line 913 of avia.js . Can possibly pull them into the php page (functions_enfold.php line 157, since one of the german words is just a single line above it i believe, the one in h4 tags).

    Thanks,

    Nick

    I tested the button several times now and it worked for me all the time. However I noticed that it will reload the same page if you don’t enter a postcode value. The “This field is required.” message is partly hidden under the white input field and you might want to change its position. Btw – please add the javascript code to a js file (eg to http://my-boiler.info/wp-content/themes/enfold/js/avia.js ) and don’t add it directly into the html source code because the wpautop filter might mess up the javascript code.

    #128937

    Hey!

    Can you post a link to your website please?

    Best regards,

    Peter

    #128778

    Yes, the problem is the textdomain won’t work if the theme loads the LayerSlider files. However you can fix it. First deactivate the Enfold theme (switch to another theme), then copy the “LayerSlider” folder (located in wp-content/themes/enfold/config-layerslider/) into the wp-content/plugins/ directory. Then activate the LayerSlider plugin and then activate Enfold again – this should do the trick and LayerSlider will load the right textdomain.

    #128777

    Hey!

    Open up wp-contentthemesenfoldincludesloop-portfolio-single.php and comment out/delete following code

    $thumb = get_the_post_thumbnail(get_the_ID(), $avia_config['size']);

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

    Best regards,

    Peter

    #128732

    In reply to: FB comments count 0

    It depends on the plugin. Enfold does not support the facebook comments counter and will just use the default wordpress function. However if the plugin comes with a function which allows you to display the facebook comments you can replace/modify following code in includes/loop-index.php:

    if ( get_comments_number() != "0" || comments_open() ){

    echo "<span class='comment-container minor-meta'>";
    comments_popup_link( "0 ".__('Comments','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));
    echo "</span>";
    echo "<span class='text-sep'>/</span>";
    }

    to display the facebook comments counter.

    #128704

    Hallo,

    nein, leider. Enfold basiert auf einem gänzlich neuen Template Builder der nicht nur wesentlich mehr Funktionen bietet sondern auch komplett neue (und geänderte) Shortcode Parameter & Strukturen benötigt. Diese zwei “Systeme” sind daher nicht miteinander kompatibel und es macht daher kaum Sinn zB ein Konverter-Skript zu schreiben.

    #128625

    I’ve found: http://wpml.org/forums/topic/ajax-call-is-not-localized/ and probably this helps you. Open up functions-enfold.php and replace

    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" data-avia-search-tooltip="'.$form.'">'.$avia_config['font_icons']['search'].'</a></li>';

    with

    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?lang='.ICL_LANGUAGE_CODE.'&s=" data-avia-search-tooltip="'.$form.'">'.$avia_config['font_icons']['search'].'</a></li>';

    Then replace

    if(empty($_REQUEST['s'])) die();

    with

    if(empty($_REQUEST['s'])) die();
    if(!empty($_REQUEST['lang']))
    {
    global $sitepress;
    $sitepress->switch_lang($_REQUEST['lang'], true);
    }

    #128818

    Hey Ivana,

    I freelance on Codeable.io . Typical going rate there is ~$50 an hour and individual tasks all get a single combined/averaged estimate by the approved contractors so its a pretty solid fair system. Not for everyone as the price isn’t as budget as places like elance but it has a money back gurantee behind it so a bit more reliability for the hiree.

    We’ll be doing more tutorials and videos for Enfold coming up and the idea being that most things wont need a developer to do but even still having a good place to go is always nice and in that regard Codeable is a great option.

    Regards,

    Devin

    #128898

    Hi adamsqb,

    This is the first time I’ve ever heard of the theme not performing well with chrome so right now there is zero intention of an update to address anything with it.

    Looking at your site now with the latest version of Chrome on a windows 7 machine and OSX I’m having no delay in page load or performance issues.

    In addition, the dozen or so sites I’ve built and manage using Enfold don’t have or have not had any reported Chrome specific performance issues.

    Regards,

    Devin

    #25934
    skosmer
    Participant

    Can anyone suggest the best way to add a share button or a better option, to a blog post?

    Is there a plugin or do you have to write the code?

    If so, what should i look up to find out how?

    I am using the Enfold theme.

    Thx in advance.

    #128782

    Hey Fabiana,

    See if the video on installing via FTP helps: https://vimeo.com/channels/aviathemes/64927356

    Regards,

    Devin

    #25997
    MSM
    Participant

    In Woocommerce using Enfold my product image is not scaling properly and is getting cut off. Not sure what I am missing.

    Mike

Viewing 30 results - 239,551 through 239,580 (of 241,850 total)