Viewing 30 results - 6,451 through 6,480 (of 7,502 total)
  • Author
    Search Results
  • Great plugin, SearchWP.

    I have another question, i can’t target the enfold quick search drop down with firebug or chrome console. Can you give me the tags for the CSS changes below or point me to were its located in layout.css

    Originally it was for the magnifying glass, then there was a function you could overrides to make all searches have a quick search feature.

    I want to change:
    1) The quick search highlight color
    2) Remove the image entirely (the pencil)
    3) Make the Borders solid
    4) Remove the date the page was posted or the date on the search drop down.

    #271598

    Hey!

    Thank you for the update.

    Actually there is none but In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Best regards,
    Ismael

    #271312
    Lido
    Participant

    Hello,
    I made a esearch in the forum but I could not solve my problem.

    I initially used WP SEO by Yoast without problems but after an update of the template can not seem to use it more.
    If active the plugin “disappear” all the admin panel, I see a blank page.
    I have tried other SEO plugin but I have the same problem.

    This is the site http://redsrl.net/home/

    I checked the forum and I see that Yoast is cited as a plugin compatible, but I have this problem.

    I am using the following versions:
    WP SEO Yoast 1.5.3.2
    Enfold 2.8

    thank you in advance if you can solve my problem

    DavyE
    Participant

    Hi,

    I’ve downloaded and updated the latest Enfold version today and have noticed certain icons no longer display correctly. How to fix this please?

    Example: click on the search icon in the main menu of this page http://goo.gl/UhiOTZ

    Thanks in advance

    Hey!

    1) Please create us an admin account and post the login credentials as private reply – we’ll check the configuration.

    2) No, Enfold just uses the standard wordpress search which doesn’t support such a feature. You can try a search plugin like: SearchWP though.

    Regards,
    Peter

    #271147

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .search div.page-heading-container {
    display: none !important; 
    }

    Regards,
    Yigit

    Hi!

    Ihr könnt probieren die gesamte Funktion in enfold/functions-enfold.php zu ersetzen. Diese startet mit:

    
    if(!function_exists('avia_ajax_search'))
    

    und endet mit:

    
    	    echo $output;
    	    die();
    	}
    }
    
    

    Kopiert am Besten die neueste Version dieser Funktion aus der aktuellen enfold/functions-enfold.php (Version 2.8) und fügt den Code in eure functions-enfold.php (V1.9.1) ein und überschreibt den “alten” Funktionscode.

    Regards,
    Peter

    #271009
    This reply has been marked as private.
    #270901
    datadirt
    Participant

    Dear Enfold support team,

    I apologize in advance – probably this question has been asked before, but I didn’t find the proper answer via the search function.
    How can I change the font color in form fields? I figured out how to change the background of form fields, but not how to change the actual font color (http://blog.datenschmutz.net/kontakt/)

    greetings, Ritchie

    Tried that once, and tired again with no new results.

    Aside from that issue, is there anyway to limit the enfold Search to a certain parent page directory instead of the entire site?

    #270048

    Hi t3lgroup!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .search .sidebar { display: none !important; border: none!important; }
    .search .container .nine.units { width: 100% !important; border: none !important; }

    Cheers!
    Yigit

    #269914

    Hey!

    Glad you figured it out. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Regards,
    Ismael

    #269647

    Hi!

    Personally I recommend to place this code into the child theme functions.php. If you want to place it into the parent theme file (enfold/functions.php search for this code at the very top of the file:

    
    <?php
    
    global $avia_config;
    
    

    and replace it with

    
    <?php
    
    global $avia_config;
    
    add_action("avia_builder_mode", "builder_set_debug");
    function builder_set_debug() { return "debug"; }
    

    Best regards,
    Peter

    #269012

    Hey!

    It’s not possible to use portfolio filter across multiple portfolio pages. Someone created a feature request here: https://kriesi.at/support/enfold-feature-requests/ – (Click on “Popular”, page 14 and search for “AJAX Portfolio filtering over multiple pages”) but as you can see the idea is not popular enough and we’ll probably not implement this feature in the near future.

    The portfolio filter will not pop up if a portfolio page just shows entries from one category – so if i.e. page 1 shows entries from 2012 and page 2 shows entries from 2013 no portfolio filter will be shown simply because it doesn’t make sense if there’re no categories to filter. However if the page contains entries from 2012 and 2013 the filter will be shown because the user can use it to select the entries from the 2012 or 2013.

    Regards,
    Peter

    Hey Frank!

    You can try to add this code to your child theme functions.php file (or enfold/functions.php):

    
    add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 10, 15);
    function avia_change_breadcrumb($trail) {
            foreach($trail as $key => $data)
            {
                    $search = 'ninja_forms_preview_page';
                    if(strpos($data, $search) !== false)
                    {
                                      unset($trail[$key]);
                    }
            }
    return $trail;
    }
    

    The code should remove the ninja_forms_preview_page link from the breadcrumb trail.

    Regards,
    Peter

    #268494

    Hey coinmaster!

    You can try to change the imaage size in wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php – open up the file and search for:

    
    $img_size	 						= 'masonry';
    

    Replace “masonry” with another thumbnail size like ‘square’, featured’, ‘featured_large’, ‘portfolio’, ‘gallery’, ‘entry_with_sidebar’,’entry_without_sidebar’,extra_large’ or “magazine”.

    Cheers!
    Peter

    #267356

    Hi!

    Please go to Enfold/Includes folder and helper-main-menu.php file and find

    if($headerS['header_social'] == 'icon_active_main' && !empty($headerS['bottom_menu'])) echo $icons;

    and add following code right below it

    get_search_form();

    and adjust its position using following selector

    #header form#searchform { margin-left: 40%; }

    Regards,
    Yigit

    #267274
    victoriaeducacion
    Participant

    Hi everybody:

    I tried to update to 2.7.1 like other times: download from themeforest, unzip and upload to my hosting with filezilla.

    But I was not able to because I was blocked by my hosting provider’s protection system. They blocked my IP. After I get in touch with them, they explain to me that a file was doing the issue.

    I reproduce the full text (sorry for the spanish):

    Estimado cliente:

    Nos ponemos en contacto con usted en referencia al bloqueo de IP que nos ha reportado.

    Tras llevar a cabo un análisis de su caso, nuestros técnicos han comprobado que la IP desde la que está accediendo, ha sido bloqueada por las medidas de seguridad implementadas en la plataforma, debido a que ha tratado de subir el siguiente fichero:

    /public_html/wp-content/themes/enfold/config-layerslider/LayerSlider/static/codemirror/mode/clike/index.html

    Este fichero es un .c, es decir, código fuente en lenguaje c sin compilar, que no puede ser ejecutado. Este tipo de ficheros no tiene razón de ser en su alojamiento, ya que no solo no podrá compilarlos, sino que además son potencialmente peligrosos para la seguridad de su cuenta

    Por tanto, este sistema de seguridad ha bloqueado la IP desde la que se ha subido este fichero, para evitar nuevos accesos potencialmente peligrosos. Por favor, evite que este fichero se suba de nuevo a través de FTP, ya que en caso contrario su IP se bloqueará de nuevo

    In a few lines, they explain there is a not compiled file that comprises the security /public_html/wp-content/themes/enfold/config-layerslider/LayerSlider/static/codemirror/mode/clike/index.html

    They says that if I retry to upload, the protection system will block me again.

    I search in this forum and I haven’t found anything with the same problem. What could we do for solving this?

    Thank you very much,

    Best regards!

    #267214

    Topic: Viewport

    in forum Enfold
    designchimp
    Participant

    Hi, I am using the enfold theme and its fantastic but how can i fix this?

    The page content is 480 CSS pixels wide, but the viewport is only 320 CSS pixels wide. The following elements fall outside the viewport:
    • The element <span class=”avia-menu-text”>Home</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Services & Pricing</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Web Design</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>eCommerce</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Graphic Design</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Print Design</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>SEO – Search E…e Optimization</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Google Adwords</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Blog</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Contact</span> falls outside the viewport.

    #267104

    Hey!

    Everything was fine, except for the page structure, you needed to set the ID in the respective Color Section, i already did it for #research:
    http://mckeown.marketing/
    http://mckeown.marketing/wp-admin/post.php?post=9&action=edit&message=1

    Documentation:
    http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    Cheers!
    Josue

    colleendr
    Participant

    Hi, I love you’re theme, but am having some trouble with it being compatible with several of the real estate plug ins. I need something to provide a listings database, search function and display. WP-Property does not work with the theme in terms of displaying the properties (won’t use the template and just makes a mess across the screen).

    I’m wondering if you know of one that works with your themes. It has to be pretty simple for me – I am not very technical.
    Thanks so much.

    #266813
    This reply has been marked as private.
    #266644
    #266184

    Dear Yigit,
    Thank you. At least I managed now for the extra 2 logos to appear on the page with links.
    But now, they are not scaling in the header when I scroll down.
    I would like them to scale like the aukea logo which I used to substitute the “ENFOLD” logo (on the Enfold theme options)
    I publish my page so you can see what I mean: http://173.254.28.59/~aukeaxfi/think-tank/
    Also I saw that they are also displacing the menu on the top right (home think tank and search)
    Any help much appreciated,
    best wishes,
    G.

    Thanks Peter. I pasted the css into the Enfold Quick CSS box under General Styling because these pages are generated automatically from links. It did not quite fix the issue. If you click the dropdown button on the far right side of the search bar, after it expands you will see that the filter input fields are still broken.

    http://moltensites.com/demo/idx/city/newport-beach/

    moltenman
    Participant

    Any idea why Enfold does not play nicely with my dsIDXpress WP plugin’s search filter box? Enfold breaks the search filter box layout and functionality.

    Here is what it’s suppose to look like and how it’s suppose to work (using a different theme):
    http://findlosgatoshomes.com/idx/city/los-gatos/

    And here’s what happens with Enfold:
    http://moltensites.com/demo/idx/city/newport-beach/

    Thanks
    -mark

    • This topic was modified 11 years, 11 months ago by moltenman.
    #265886
    travtex
    Participant

    Hello,

    My org uses Enfold pretty much as a default for WP sites. I’m currently on a project where the client wants a side nav. I’ve searched through the support a bit for some ideas but they’re all coming up short in some way or another. Basically, I’m looking for the best way to disable the header/menu and create a left-side vertical nav area — responsive similar to the main header nav menu.

    I’ve tried implementing Sidr without much success, and I’ve tried the various suggestions to just set display:none on the header (Might’ve been an update since that support question as the targeted class in that answer does not exist. I tried it on the main header’s id, but the body still maintains the offset in a data attrib.)

    Just wanted to see if there was a friendlier way to accomplish what I’m trying before I go digging deeper. Thanks.

    Hey bts-de!

    1) Enfold tries to fetch the content of the “excerpt” field to generate a short content for the search results. If the “excerpt” doesn’t exist (which is always the case for pages) it will use the content data and truncate the text to get a short content. If it doesn’t work on your website I recommend to deactivate all third party plugins – maybe a plugin hooks into the the_content or the_excerpt filter and breaks the short content generation.

    2) No, unfortunately I’m not sure why it doesn’t work. Maybe it’s a plugin conflict or the Yoast SEO plugin isn’t configured properly. Our theme does not strip the meta tags for sure.

    Regards,
    Peter

    #265762
    Breakstuff
    Participant

    Hi,

    I’m searching for a Plugin that works similar as the enfold styleswitcher.
    Anyone know such a plugin?

    What I want:
    On each site, I want a different text, like a popup.

    Thanks for your help.

    #265634
    Sam
    Participant

    Hi,
    I wish to add a flight search widget to my Enfold site.
    1) Is this possible?
    2) Where should I put the widget code? see below.

    <div id=”mmd-flight-widget”></div>
    <script type=”text/javascript”>(function initWidget() {
    var options = {
    layout: {
    theme: “momondo”
    , width: “300”
    , height: “250”
    },
    airports: {
    origin: “LHR”,
    destination: “GOI”
    },
    settings: {
    openNewWindow: true,
    domain: “www.momondo.co.uk”,
    source: “”
    }
    };
    var settings = options.settings;
    var airports = options.airports;
    var layout = options.layout;
    var encoding = null;
    onWidgetLoad = function (f)
    {
    f(“mmd-flight-widget”, {
    searchForms: [{
    type: 1,
    searchURL: “http://[DOMAIN][PATH][QUERY]&#8221; + (!!settings.source ? “&source=” + settings.source : “”),
    openNewWindow: settings.openNewWindow,
    currency: settings.currency,
    segments: [
    {
    airports: [
    { code: airports.origin || “” },
    { code: airports.destination || “” }
    ]
    },
    {
    airports: [
    { code: airports.destination || “” },
    { code: airports.origin || “” }
    ]
    }
    ]
    }]
    });
    };
    var scr = document.createElement(“script”);
    scr[“src”] = “http://&#8221; + settings.domain + “/widgets/searchform?dimensions=” + layout.width + “x” + layout.height + “&types=1&callback=onWidgetLoad&theme=” + layout.theme;
    var tag = document.getElementsByTagName(“head”);
    if (tag && tag.length)
    {
    tag = tag[0];
    tag.appendChild(scr);
    }
    })();
    </script>

Viewing 30 results - 6,451 through 6,480 (of 7,502 total)