Viewing 30 results - 6,691 through 6,720 (of 7,486 total)
  • Author
    Search Results
  • #230212

    In reply to: Search in Top Header

    This reply has been marked as private.
    #230204

    In reply to: Search in Top Header

    This reply has been marked as private.
    #230188

    In reply to: Search in Top Header

    dear enfold,

    i have found the CSS but now the top header looks ugly how to move it around before the HOMEpage menu and one line with homepage link.

    cheers,
    indra

    #230186

    In reply to: Search in Top Header

    Hi!

    It is in Enfold theme options under Styling tab http://i.imgur.com/W0v6KLB.jpg
    You can also add your custom CSS code in Custom.css file inside Enfold/Css folder

    Best regards,
    Yigit

    #230183

    In reply to: Search in Top Header

    Dear Enfold,

    i cannot find QUICK CSS in enfold directory… is it under different name? stylesheet.css? or where?

    thank you
    indra

    #230157

    Hi susannetessamueller!

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

    .title_container .breadcrumb { display: none; }

    and go to Enfold theme options > Header tab and uncheck "Append search icon to main menu" to remove the lupe

    Cheers!
    Yigit

    #230116

    In reply to: Search in Top Header

    Hey indrahalim!

    Please go to Appearance > Editor and open Header.php file and find

    if(strpos($headerS,'social_header') !== false && strpos($headerS,'bottom_nav_header') !== false) avia_social_media_icons($social_args);

    then add following code right below it

    get_search_form();

    Then you can position it by adding following code to Quick CSS in Enfold theme options under Styling tab

    #header #searchform { float: right; }

    You can remove default search icon from main menu in Enfold theme options > Header > Append search icon to main menu

    Regards,
    Yigit

    Hello Devin!

    Thanks so much for the quick reply, I really appreciate it. Unfortunately, it hasn’t yielded any different results. Here is what the beginning of my enfold functions.php file looks like (beyond what I’ve copy/pasted here, there are now zero changes…it’s exactly as it comes in a fresh download):

    <?php
    
    global $avia_config;
    
    /*
     * if you run a child theme and dont want to load the default functions.php file
     * set the global var bellow in you childthemes function.php to true:
     *
     * example: global $avia_config; $avia_config['use_child_theme_functions_only'] = true;
     * The default functions.php file will then no longer be loaded. You need to make sure then
     * to include framework and functions that you want to use by yourself. 
     *
     * This is only recommended for advanced users
     */
    
    if(isset($avia_config['use_child_theme_functions_only'])) return;
    
    /* adding filter for instant search to return relevanssi filtered pages/posts */
    
    add_filter('avf_ajax_search_function', 'avia_init_relevanssi', 10, 4);
    function avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)
    {
        $function_name = 'avia_relevanssi_search';
        return $function_name;
    }
    
    function avia_relevanssi_search($search_query, $search_parameters, $defaults)
    {
        global $query;
        $tempquery = $query;
    
        $tempquery->query_vars = $search_parameters;
        relevanssi_do_query($tempquery);
        $posts = $tempquery->posts;
    
        return $posts;
    }
    
    /*end relevanssi filter */
    crazyflx
    Participant

    I’m in the process of finishing up a development site before I move it to a live environment. I absolutely love the Enfold theme and have been able to, thus far, build a beautiful site using it (still have a lot left to finish unfortunately).

    EDIT: I’m using the newest/latest version of Enfold, Version 2.5.2

    Anyway, I installed Relevanssi and now my “instant search” results that Enfold serves up via Ajax do not match those results on the actual search results page. Within the Relevanssi settings I input specific page ID’s that I do not want returned in the search results. On the search results page, those pages I don’t want to appear in the search results don’t appear, which is great.

    However, they are still appearing within the “Instant Search” results. This is very bad, because I have pages that should only be seen by customers of mine (like “Thank you for purchasing”, “Reduced Special Pricing Pages” and so on).

    After searching the forums, I found a few posts detailing similar issues. I included the following code which I found on this post: https://kriesi.at/support/topic/enfold-code-update-for-2-2-to-use-relavanssi-plugin/ within my themes functions.php file (at the very bottom of it, beneath everything else within the file)

    add_filter('avf_ajax_search_function', 'avia_init_relevanssi', 10, 4);
    function avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)
    {
        $function_name = 'avia_relevanssi_search';
        return $function_name;
    }
    
    function avia_relevanssi_search($search_query, $search_parameters, $defaults)
    {
        global $query;
        $tempquery = $query;
    
        $tempquery->query_vars = $search_parameters;
        relevanssi_do_query($tempquery);
        $posts = $tempquery->posts;
    
        return $posts;
    }

    Unfortunately, that doesn’t work. I still am seeing pages that I specified within the Relevanssi settings as pages to not be returned in search results within the “Instant Search” results returned (but again, the pages I specified within the Relevanssi settings to not be returned in search results DO NOT appear on the actual search results page, which is correct…but they’re still appearing within the instant search results).

    • This topic was modified 11 years, 12 months ago by crazyflx.
    #229581

    Topic: Search in Top Header

    in forum Enfold
    indrahalim
    Participant

    Dear Enfold,

    help me please:

    1.How to make search avaliable in top header visible before the HOME link. currently the search button only popup after click. i would like the Search avaliable before the home link.

    2. why in the mobile version i could not find the search button at all? any code i need to put so i could search when im in mobile version?

    thank you
    indra

    #229512
    This reply has been marked as private.
    #229409

    Hey!

    Are you using the latest version of Enfold (2.5.4)?

    I tried reproducing your issue on my local install with no success:

    Regards,
    Josue

    #229395
    This reply has been marked as private.
    This reply has been marked as private.
    #229079

    Thanks, I’ve tried that, but despite trying different browsers and refreshing, the page is still loading the standard /wp-content/themes/enfold/js/avia.js?ver=1 file.

    #229058

    Hey emin!

    Please go to Appearance > Editor and open Header.php file and find

    wp_nav_menu($args);
                                echo '</nav>';

    and add following right below it

    get_search_form();

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

    #header  #searchform { float: right; padding-top: 37px; }
    .main_menu { right: 20%; }
    #top #menu-item-search { display: none; }

    Please hire a freelance developer if further customization is needed

    Regards,
    Yigit

    #228959
    parperei
    Participant

    Dear all,

    the AJAX-Search (location: main menu) displays two german terms below the input, when searching for a text-string which doesn’t exist. This happens in both versions of our website (standard: german / 2nd language: english). I think it is not a bug, so I kindly ask to give me some advice on how to solve that misbehaviour.

    What I did, while trying to solve it on my own:
    While earching for the strings which do not translate in the english version of our website, I found both translations in “themes\enfold\lang\de_DE.po”:

    on line60/61
    msgid “Sorry, no posts matched your criteria”
    msgstr “Entschuldigung, aber kein Eintrag erfüllt ihre Suchkriterien”

    and

    on line 65/66.
    msgid “Please try another search term”
    msgstr “Bitte versuchen Sie einen anderen Suchbegriff”

    I used the “import .po-file”-function, imported the above mentioned .po-file and selected both terms to add them to string translation.

    The result was that I saw an existing english translation for both terms. I added the german translation for both terms, check “translation done” and saved.

    But sadly this did not solve the still existing problem.

    I hope I described my approach in an understandable way. And I am looking forward to get a hint on how to solve this issue.

    Kind regards!

    #228917

    Hi!

    You can try to replace this line in enfold/js/avia.js:

    
    new $.AviaTooltip({"class": 'avia-search-tooltip',data: 'avia-search-tooltip', event:'click', position:'bottom', scope: "body", attach:'element'});
    

    with

    
    new $.AviaTooltip({"class": 'avia-search-tooltip',data: 'avia-search-tooltip', event:'click', position:'bottom', scope: "#header", attach:'element'});
    

    This change will change the click event scope and maybe fix your issue.

    Best regards,
    Peter

    #228913

    Hey!

    If you use a 3 columns layout the thumbnail size of 200×200 doesn’t make sense because the columns will stretch the images to 273px x 273px. You can try to increase the number of columns on the settings page (WooCommerce > Settings > Products – scroll down and search for the “Column Count” option and set it to 4 or 5). Then Enfold will show more columns per row and the image/thumbnail size will decrease because the column width is smaller.

    Best regards,
    Peter

    #228902

    Hey mnolden!

    Dafür gibt es seit Enfold 2.4 eine Option im Adminbereich. Gehe zu Enfold > Theme Options > Header und suche nach der “Append search icon to main menu” Option. Stelle sicher das diese Checkbox nicht markiert ist und speichere die Optionen.

    Cheers!
    Peter

    #228840

    Hi again. The issue is resolved and the problem was 100% with the UserPro plugin. Its author cited a “minor jquery conflict,” which he corrected for the updated version. I can now confirm that the updated plugin works very well with Enfold. Thanks!

    #228659
    stardrive
    Participant

    Please, I will soon commence design with your enfold theme I purchased.
    I am in discusiion with a propective client, and he is suggesting that instead of your icon collapsible text box, he would like to have a full (non collapsible) Text Box on the Right Hand Side of the Top Menu Bar.
    Please, how can this be achieved with your theme?

    #228645

    Hello
    I have done what you mention but it still doesn’t seem to work.
    My description is saved and appears when I open the code source of my site but the “Page Analysis” of the wordpress seo by yoast at the bottom of the front page still indicates : No meta description has been specified, search engines will display copy from the page instead.
    The keyword / phrase conseil does not appear in the page title.” > There is a meta descritption and the the keyword does appear in the title…
    Thanks again

    #228620
    Amanda
    Participant

    Hello,
    While optimizing the SEO of my website with the Yoast plugin, it dosen’t seem to work for my front static page.
    It says the meta description empty whereas it is not, I have wrote in a text… “No meta description has been specified, search engines will display copy from the page instead.”
    For all the other pages it is fine, so must I configure it somewhere else for the front page ? In the header.php ?
    Thanks very much for your help

    #228440
    mnolden
    Participant

    Hallo,
    wie kann ich die Search-Funktion ( das Lupen-Symbol) in der main nav beim Enfold Theme entfernen? Über eine schnelle Antwort wäre ich sehr dankbar, das wurde ganz vergssen, wir wollen die Website aber heute veröffentlichen.
    Danke!
    Mathias Nolden

    #228354

    I just discovered that it now conflicts with a plugin I’ve had installed before I installed Enfold and will check with that plugin’s author. Thanks.

    #228351
    This reply has been marked as private.
    #228150
    Schmenger
    Participant

    Hi,
    Everything was fine with my theme…Today I have updateded my enfold Theme via filezilla . I copied enfold folder> the newest version.
    In Firefox: All font face symbols are broken! (search symbo in header etc…)
    Can you help with that firefox 26 -font- face problem???

    Firefox updated
    Windows8.1 updated Started PC again
    Firefox cache cleared

    .htacess:
    <FilesMatch “\.(ttf|otf|svg|eot)$”>
    SetEnvIf Origin “^http(s)?://(.+\.)?(medientanz\.de|medientanz\.de)$” origin_is=$0
    Header set Access-Control-Allow-Origin %{origin_is}e env=origin_is
    </FilesMatch>

    Webpage:http://medientanz.de

    Thanks Thomas

    #228149
    foxvendetta
    Participant

    Hi,

    Just installed Enfold on a new WP install, imported the dummy data and set the menus but I can’t see the Top Navigation Menu. The only thing that seems to be showing is the “search” icon.

    However, if I switch to the twenty fourteen theme, or any other stock themes, the Top Navigation Menu shows without problems.

    Any idea why this is?

    Looking forward to your response, thanks!

    Fox

    #228008

    hi astrid!

    in the dashboard => ENFOLD you go to menu header! there is a box “Phone Number or small info text:

    i have wrote (make a div container) <div id=”myphone”>Now call me: <b>123456789</b></div>

    and in the menu “styling” (also in the same menu ENFOLD) there is under the Tab “General” a Box “Quick CSS”- here is the code…

    #myphone {
    font-size: 14px;
    padding-bottom: 10px;
    }

    so it should be, what you searching for…

    kind regards
    charly

Viewing 30 results - 6,691 through 6,720 (of 7,486 total)