Viewing 30 results - 239,611 through 239,640 (of 243,768 total)
  • Author
    Search Results
  • #136120

    Hi Jase,

    The first thing to do would be to update your theme files to the newest version available from your Downloads on Themeforest. Version 1.9.1+ is required for WordPress 3.6 compatibility and there were also some new features in 2.0.

    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Regards,

    Devin

    #28431
    TinyGiantStudios
    Participant

    Hi Kriesi,

    I’ve got a contact page with a 1/1 section and Widget Area specified. Whenever I add a Google Map widget with longtitude / latitude I get the following error on in console (with the map NOT displaying):

    Uncaught ReferenceError: google is not defined

    Any help would be appreciated.

    We’re running Enfold, 2.0, WP 3.6

    #134320

    You can use Relevanssi for the ajax search query. Open up enfoldfunctions-enfold.php and replace

    $defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    $_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);

    $query = array_merge($defaults, $_REQUEST);
    $query = apply_filters('avf_ajax_search_query', http_build_query($query) );
    $posts = get_posts( $query );

    with

    $defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    $_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);

    $searchquery = array_merge($defaults, $_REQUEST);

    if(!function_exists('relevanssi_do_query'))
    {
    $searchquery = apply_filters('avf_ajax_search_query', http_build_query($searchquery));
    $posts = get_posts($searchquery);
    }
    else
    {
    global $query;
    $tempquery = $query;
    $searchquery = apply_filters('avf_ajax_search_query', $searchquery);

    $tempquery->query_vars = $searchquery;
    relevanssi_do_query($tempquery);
    $posts = $tempquery->posts;
    }

    #114808

    Hi Kriesi,

    Definitely love this theme!!!

    I just have one wish : To have the video playing in the ajax portfolio directly ( without getting it in a lightbox) That would be great!!!

    Thanks a lot

    Kambate

    #28435
    headbentdesign
    Participant

    I figured out how to center the logo, . . . but cannot center the menu.

    Can someone help a brother out?

    Thanks a bunch guys!

    #137503

    Hi,

    I uploaded an updated pot file here: http://www.mediafire.com/?3d6hhhxy3dihf1z – it’s compatible with Enfold 2.0. Please use it to update your po file (eg use PoEdit: http://www.poedit.net/ to update the existing po file).

    #28157

    Topic: custom.css not working

    in forum Enfold
    wesdacar
    Participant

    Hi

    When i write something into the custom.css file, then it does’t read it in enfold.

    Therefore when i add the same code into the quick css box, then it works fine.

    Do i have to activate the custom.css somehow ?

    #114972

    Great thanks. I didn’t know the mb_strimwidth function yet. We’ll fix it in the next version. If you need a quick fix open up wp-contentthemesenfoldframeworkphpfunction-set-avia-backend.php and replace

    function avia_backend_truncate($string, $limit, $break=".", $pad="...", $stripClean = false, $excludetags = '<strong><em><span>')
    {
    if($stripClean)
    {
    $string = strip_shortcodes(strip_tags($string, $excludetags));
    }

    if(strlen($string) <= $limit) return $string;

    if(false !== ($breakpoint = strpos($string, $break, $limit)))
    {
    if($breakpoint < strlen($string) - 1)
    {
    $string = substr($string, 0, $breakpoint) . $pad;
    }
    }

    // if there is no breakpoint an no tags we could accidentaly split split inside a word
    if(!$breakpoint && strlen(strip_tags($string)) == strlen($string))
    {
    $string = substr($string, 0, $limit) . $pad;
    }

    return $string;
    }

    with

    function avia_backend_truncate($string, $limit, $break=".", $pad="...", $stripClean = false, $excludetags = '<strong><em><span>')
    {
    if($stripClean)
    {
    $string = strip_shortcodes(strip_tags($string, $excludetags));
    }

    if(strlen($string) <= $limit) return $string;

    if(false !== ($breakpoint = strpos($string, $break, $limit)))
    {
    if($breakpoint < strlen($string) - 1)
    {
    $string = mb_strimwidth($string, 0, $breakpoint) . $pad;
    }
    }

    // if there is no breakpoint an no tags we could accidentaly split split inside a word
    if(!$breakpoint && strlen(strip_tags($string)) == strlen($string))
    {
    $string = mb_strimwidth($string, 0, $limit) . $pad;
    }

    return $string;
    }

    #136145

    In reply to: Change Language

    If you want to change the “You are here” text open up wp-contentthemesenfoldfunctions-enfold.php and replace

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    with

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true, 'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>'));

    and instead of “You are here” insert your custom text.

    Hi Dude,

    I could not find new version of Enfold at CodeCanyon.

    There is 1.9.9 version only present.

    Please, update it and I will use v.2.0.x also.

    Kind Regards,

    Aleksey

    #137462

    In reply to: ajax portfolio preview

    Hi!

    Yes – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesportfolio.php and delete

    $output .= "<div class='av_table_col first portfolio-preview-image'>";
    $output .= $images;
    $output .= "</div>";

    Best regards,

    Peter

    #137532

    Please try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace

    return "<div class='avia_textblock {$custom_class}'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>";

    with

    return "<div class='avia_textblock {$custom_class}'>".stripslashes(ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content)))."</div>";

    #131594

    Hi

    1. I got some issue with the thumbnails and the mobile view.

    They don’t stay on the bottom border in mobile view.

    A way to fix that?

    website: http://maurilux.com/properties/villa-karma/

    screenschot: http://maurilux.com/wp-content/uploads/2013/08/Thumbnails-layerslider.png

    2. The Layerslider as a seperated plugin (not integrated in Enfold) displays the thumbnails under the slider like here:

    http://mauritius-panorama.com/.

    Can i do that in enfold as well?

    3. Is it possible to revome the thumbnails just in mobile view?

    Thanks for answers

    #137220

    Unfortunately this is not possible at the moment but you can hide certain menu items by inserting “noMobile” into the css class field of these items (if you can’t find this option field on the menu option page search for the “Screen Options” tab in the right top corner and click on it. Then tick the checkbox next to “CSS Classes” to activate this field).

    If you really need to separate menus you can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests and we’ll look into it if more users request it.

    #28433
    jmann99999
    Participant

    Hi-

    I am finalizing a real-estate site that uses Enfold. As part of the effort, I need to create HTML markup in order to provide links to houses between certain price ranges. To do this, I am using the Advanced Builder in Enfold and creating a textblock. I go into the TEXT tab and create my markup. I am creating a table with links in each cell. (note: I tried to include code here but it wasn’t coming through correctly… so please view source using the link provided below).

    If I save the Textblock and then save the page, it works fine However, if I go back in and edit the page, without saving the textblock specifically (i.e. going into the textbox and re-saving it), nothing in the table shows. I viewed the source to try and see what was happening. It appears it is dropping the end-quote in the href.

    So, instead of This is CNN

    I am getting This is CNN

    Which breaks the markup and causes the links to not appear.

    I have saved a page that demonstrates this behavior. You can see the results:

    http://parkcityproperty.com/neighborhoods/aerie/

    Above the Homes, Condos, and Land buttons you should see links to homes that are 100K – 200K, 200K-300K,etc. but it’s blank (between two hr’s). If you view the source, you’ll see its missing the closing tags for the hrefs.

    Does anyone have a workaround for the issue or a suggestion on how to make this work?

    I am on version 1.91 of the Enfold Framework.

    Thanks for the help!

    #28432
    kermit73
    Participant

    Hi!

    How can I change the color of the Buttons in Enfold e.g. the ones in Woocommerce?

    Regards

    Maike

    #135282

    In reply to: Enfold: Logo resize

    Hi Ismael,

    Thanks so much!

    The code worked perfectly.

    All the best,

    Michael

    #135281

    In reply to: Enfold: Logo resize

    Hey,

    Please edit js > avia.js, find this code:

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

    Replace it with:

    if(st < el_height/1.5)
    {
    newH = el_height - st;
    header.removeClass('header-scrolled');
    }
    else
    {
    newH = el_height/1.5;
    header.addClass('header-scrolled');
    }

    Please don’t forget to remove browser cache then reload the page a few times.

    Regards,

    Ismael

    Hey,

    Please refer to this link on how to add social icons using addThis: https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header?replies=4#post-134606

    Once you’re done, go to Appearance > Widgets then insert a Text widget on the Footer – column widget areas. Copy the social button code on the Text widget.

    Regards,

    Ismael

    #27765

    Topic: Enfold: Logo resize

    in forum Enfold
    #28007
    jaseellis
    Participant

    Hi Guys

    Since updating to latest theme files, the search button and also the “View All Results” buttons do not work. They both just refresh the home page. The dynamic list is working fine. It’s more if I hit View All Results or just type a word and hit enter.

    Any suggestions?

    Thanks in advance.

    Cheers

    Jase

    hi Devlin – wow thank you for the quick reply! I have created a new Widget Area, I am guessing a new custom area for each feed?

    But how do I add Facebook to the new empty widget area?

    Hi collette,

    The easiest way would probably be to add a new widget area in the Appearance>Widgets section of WordPress using the themes custom widget area functionality. Then add those three items in as widgets to the new widget area and on your 2 column layout add a Sidebar element to the column that should show the feeds and set it to output your custom widget area showing 3 widgets.

    Regards,

    Devin

    #28049
    dylandibona
    Participant

    Hello,

    I’m almost finished with a site I’m putting together for a client using Enfold and now I’m having trouble with the contact forms. There are 3 different forms on the site – 2 of them work, 1 doesn’t. They all use the same email address and I set them all up identically. Any ideas what might be happening?

    These forms work:

    http://pecanpieproductions.com/advertise-on-screen/start-your-advertising-program/

    http://pecanpieproductions.com/join-our-theatre-network/start-selling-advertising-on-your-screens/

    This one doesn’t work:

    http://pecanpieproductions.com/contact/

    (doesn’t produce the “email sent” message, doesn’t send any emails)

    Thanks for the help.

    #28426
    collette
    Participant

    hi guys

    first of all I am a bit of a newbie to WordPress

    second – I am trying a 2 column lay out in Enfold theme

    the left is right, pulling in blog articles

    on the right however the client would like 3 separate boxes, Facebook / Twitter and Instagram – a feed for each

    does anyone know I can go about adding this to my homepage please

    Many thanks in advance!

    #137162

    Thanks Devin, Dude mentioned changing the background to white? (I thought Enfold was already white, but obviously not) and this would eliminate the grey, is there an easy way to do this safely?

    Thank you.

    #28424
    yutakaemura
    Participant

    I also found the translation of “Archive for month:” is currently “アーカイブ月: 6月, 2013”. However, in Japanese, it should be written as “アーカイブ月: 2013年6月”. As you see, not only the order is different, the year character “年” is missing.

    I found the cause is at line 844 of enfold/framework/php/function-set-avia-frontend.php:

    $output = __(‘Archive for month:’,’avia_framework’).” “.get_the_time(‘F, Y’);

    should be:

    $output = __(‘Archive for month:’,’avia_framework’).” “.get_the_time(‘Y年F’);

    in case of Japanese, but obviously, the format ‘F, Y’ should be localized using the admin’s date format.

    #114971

    Hello Dude,

    Thanks for your response.

    In this case, all these two ‘��’ should be removed. Therefore, the breadcrumb is created, the PHP code should cut off the string before these two invalid characters. Sometimes, you will see one of these as ‘�’. But this is just a representation of UTF-8 encodings in a browser, and using W3C HTML Validator reveals invalid character code is “xE3” in this case.

    This can happen when you are trying to truncate a UTF-8 string at any character boundary. For example, if you have a string “あ”, which consists of 3 bytes “E3 81 82”. If you cut the string within these 3 characters, the original character “あ” will be corrupted, and it is represented like this ‘�’.

    This issue is not limited to Japanese. In German, for example, a character ‘ä’ can be encoded as two bytes: “C3 A4”, and cutting these two bytes into half will make the ‘ä’ character invalid.

    With a little search, I found a similar article:

    http://stackoverflow.com/questions/8484162/how-to-truncate-an-utf8-string-in-php

    I think using mb_strimwidth instead of substr will resolve this issue.

    Thank you,

    Hi!

    found the issue, will be fixed with the next update ;)

    Cheers!

    Regards,

    Kriesi

    #136369

    Yes only the main theme will be updated. Child themes are not touched by the theme updater :)

    Thats actually the point of the child theme ;D

    The updater simply replaced the old theme folder with the new one

Viewing 30 results - 239,611 through 239,640 (of 243,768 total)