Viewing 30 results - 6,781 through 6,810 (of 7,495 total)
  • Author
    Search Results
  • #219945

    Hey xpoveda!

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

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

    Regards,
    Yigit

    #219530

    In reply to: Some SEO issues

    Hey TJ!

    1) Thanks, we’ll add the alt/title attributes to the “You might also like” images with the next theme update.

    2) the ?s= query parameter is probably added by the search link (loop icon) in the menu. Since 2.4 we added a rel=”nofollow” to the search link and the search engines should not follow it. However if the spider/crawler ignores the rel value and follows the link it will provoke a 404 error. You can remove the search icon if you fear that it affects your ranking (Enfold > Theme options) however I’m pretty sure it has no impacts at all because google and other search engines respect the nofollow attribute…

    Cheers!
    Peter

    Hi!

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

    .sidebar #searchsubmit { background-color: red!important; }

    It should change the button color on sidebar and you can use the class you targeted to change the color on header

    Regards,
    Yigit

    #219058

    Thank you,
    The problem has been solve by itself ! I don’t know what’s happen. It’s a good new.
    Now, I have this message in the bottom of my home page : “Incoming search terms: arkerus”. May be it will be solve tomorrow. I don’t know what this message mean.
    Regards ++

    #218786

    Hi, maybe some are requested already:

    1. Easier custom logo integration (add ability to give width and height of custom logo). Too many users struggle with the current logo integration.
    2. easier customization of the menu. Some like it simple (choose background color (also hover), text color (also hover), height, font family and size)

    The above two are mainly for an easier customization of the header overall.

    3. Unify the styling and have import/export for all languages. When running multisite and multiple languages it’s a real pain going through all style settings per language.

    4. extensive search feature in the forum. Too many results from various themes pop up now when doing search.

    Cheers!

    #218717

    In reply to: WPML tweaks on Enfold

    Hi!

    1) Normally Enfold will display the WPML flags in the top navigation menu. If you want to add the flags to the main menu add following code to the functions.php file (insert it at the very bottom of the file)

    
    if(!function_exists('avia_append_lang_flags'))
    {
    	//first append search item to main menu
    	add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 10, 2 );
    
    	function avia_append_lang_flags( $items, $args )
    	{	
    	    if ((is_object($args) && $args->theme_location == 'avia'))
    	    {
    	        global $avia_config;
    	        global $sitepress;
    			$languages = icl_get_languages('skip_missing=0&orderby=custom');
    
    			if(is_array($languages))
    			{
    				foreach($languages as $lang)
    				{
    					$currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : '';
    
    					if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
    					         
    					$items .= "<li class='language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>";
    					$items .= "	<span class='language_flag'><img title='".$lang['native_name']."' src='".$lang['country_flag_url']."' /></span>";
    					$items .= "</a></li>";
    				}
    			}
    	    }
    	    return $items;
    	}
    }
    
    

    2+3) You can try to use a negative margin-top to re-position the flags (i.e. above the main menu links).

    4) In the code I posted above replace

    
    if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
    

    with

    
    if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
    if(ICL_LANGUAGE_CODE == 'ar') $lang['country_flag_url'] = 'http://my-custom-flag.png';
    

    and instead of http://my-custom-flag.png insert the url to your flag image.

    Best regards,
    Peter

    #217661

    I found it in the meanwhile, deeply hidden in these forums.
    It would be nice to search only in “enfold” forum. Is this possible any way to do advanced searches?
    The older forum had more search functionality.
    Thanks.

    #217656

    Hey cerelogic!

    They will already come up in search results by default. See: http://kriesi.at/themes/enfold/?s=single+portfolio

    Regards,
    Devin

    #217479
    cerelogic
    Participant

    I’m loving the enfold theme and especially the people behind it supporting it! :)

    Question: How can I have portfolio items show up in the search results?

    Thank you for your assistance.

    #217477
    Spiv
    Participant

    Hi,

    Maybe this has been asked before, but I find the search in this forum rather difficult (not possible to search on theme enfold only)

    I want the languages not displayed as flags in the top bar, but simply the language code, eg NL EN FR

    How can I achieve this? It seems the top bar selector doesnt hook with the WPML settings I choose.

    Thanks

    S

    #217366

    Hi!

    The “All” word is translatable with the mo/po files. I suggest to use Codestyling to translate it. Install the plugin ( http://wordpress.org/plugins/codestyling-localization/ ), go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and select your language and click the “create po-file” button. Click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Best regards,
    Peter

    #217104
    borkent
    Participant

    Hi all,

    I have been working with Enfold for a number of sites now and never actually needed this forum :) However I have one now where I want something special. I am not sure if a support forum is the place to be as its more like a customization of the masonry portfolio.

    So whats the deal?

    Its possible to show title and excerpt on the hover panel of the items in the masonry, however I would like to show an image there. I was able to do this by setting it to excerpt, and add <img src=” etc to the excerpt. Looks pretty ok, only now ofcourse in the search results the image is shown aswell, and probably will on other areas of the site at some point.

    Here is a screenie of the work in progress: http://www.borkent.com/screenie.jpg

    I have a custom metabox setup in the portfolio admin to add the image needed for the figcaption hover panel, and I found the code in masonry_entries.php “<div class=’av-masonry-entry-content entry-content’ {$markup}>{$content}</div>” but somehow I just cant get the image to show correctly, it either breaks entirely or shows multiple instances of the src url.

    If anybody can tell me how to squeeze in this custom metabox entry without it duplicating zillions of times etc etc I would be very greatfull! Or maybe there is a way to use a function to insert something there?

    Kind regards and thanks for awesome themes!

    Thomas

    ps. just clicked my link and I see it opens in the lightbox, this is the same lightbox as on the enfold template and it has some css bug. Here is a css fix for it.

    problem: http://www.borkent.com/screenie_lightbox_kriesi.jpg
    fix:

    @media only screen and (max-width: 767px)
    {.pp_details {
    height: 50px!important;
    width: 100%!important;
    }}

    div.pp_default div.pp_content_container .pp_details {
    margin-top: 5px;
    }

    I also noticed I had to change some stuff to get logos working correctly in responive mode, I fix it with this:
    @media only screen and (max-width: 767px){
    .responsive .logo img {
    margin: 0 auto;
    max-height: 80px!important;
    }

    #217010

    In reply to: enfold search results

    Thanks Peter. Great suggestion with SearchWP. Works nicely. The code for functions.php also worked like a charm.

    You guys always provide the best support!

    #216880

    In reply to: enfold search results

    Hi sbeauchesne!

    1) You can use this plugin to maximize the search power of your website: SearchWP

    Refer to this link in order to integrate the plugin on ajax search: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/

    2) You can hide the sidebar with following css code – insert it into the quick css field

    
    #top.search .sidebar {display: none !important;}
    #top.search .content.template-search {width: 100% !important;}
    

    3) Yes, insert this code at the very bottom of functions.php:

    
    add_filter('avf_ajax_search_label_names','avia_change_pt_label_name', 10, 1);
    function avia_change_pt_label_name($label)
    {
    if($label == 'Portfolio Items') $label = 'Partners';
    return $label;
    }
    

    Best regards,
    Peter

    Hey!

    Try to replace this line in functions-enfold.php

    
    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'></a></li>';
    

    with

    
    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'">&#9776;</a></li>';
    

    If the code doesn’t work try the hex values here: http://www.fileformat.info/info/unicode/char/2630/index.htm – you need to replace ☰ with the hex value

    Regards,
    Peter

    #216814

    Hi Ismael,

    I watched that video before I submitted the ticket. Did I miss something? I researched this fully and I see several people are having this issue. I read all the submitted trouble tickets. I’m fine with full width. It just doesn’t work. Right now I have these settings.

    Enfold Settings: Theme Options = Display blog set to nothing or “Select Page”
    General Settings: Blog Style = Grid Layout
    Page Settings: Content Element > Fullwidth Masonry > Layout = No sidebar

    If you notice, the sidebar does not go away even with the above settings. Can you tell me why?

    You can check it out now. I’ll post the link in a private message.

    Thanks, Jas

    #216796
    kcristella
    Participant

    Hi – I found a bug on your “black” skin of Enfold. The same problem is replicated on my page. Option lists with search are showing up in white with all the options hidden. Here’s a screenshot: http://hfadm.org/bug.png

    Please let me know how to fix. Thanks.

    – Kevin

    #216714

    In reply to: Map & Footer Questions

    Hi kcristella!

    1.) Go to Appearance > Widgets then create a custom widget area. Insert the Enfold Maps Google Widget. Edit the contact page then insert the Widget Area element using the Advance Layout Builder.

    2.) You can change the widgets on Appearance > Widgets. Add widgets on the Footer – columns widget areas.

    3.) Sorry but the forum doesn’t have that search feature. You can try to place something like “enfold + subject” on search field.

    Best regards,
    Ismael

    #216614

    Topic: Map & Footer Questions

    in forum Enfold
    kcristella
    Participant

    Reference URL: http://kriesi.at/themes/enfold/pages/contact/

    How do you add a map to the page?

    How do you change the content of the footer (i.e. Interesting Links, Business Hours, etc)?

    General forum question: I see that you can search for across all forums (themes). Is there a away to just search within the Enfold theme? I don’t want to post duplicate questions but also don’t want to manually search / scan.

    Thanks for the help!

    #216436

    Topic: enfold search results

    in forum Enfold
    sbeauchesne
    Participant

    Where can I make change to the search results page? Currently only the posts show a summary and regular pages and portfolio items do not. Also, how do I set the sidebar on the search results page? I actually would like the option to not display one. Finally, when you use the search in the top banner, there is a nice type-ahead feature that displays results as you type. Is there a way to change “Portfolio items” text to something else? I use “portfolio” to showcase partners in our initiatives, so it would be better to say “Partners” instead.

    Thanks

    #216421

    Hi,
    Can you help with that firefox 26 -font- face problem??? All font face symbols are broken! (search symbol etc…
    I tried the following .htacess solution (out of luck) :

    <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>

    Any ideas?
    My homepage: http://medientanz.de
    Thanks!
    Thomas

    • This reply was modified 12 years, 1 month ago by Schmenger.
    #216369
    Jasmer
    Participant

    Hello!

    I have searched every blog post to solve this issue. First I do not have bbpress activated. It is installed but not activated so that should not be a conflict.

    I when to layout builder and set the Fullwidth Masonry Blog, selected all categories. Also, I did this:

    Enfold Settings: Theme Options = Display blog set to nothing or “Select Page” > General Settings: Blog Style = Grid Layout
    Page Settings: Content Element > Fullwidth Masonry > Layout = No sidebar

    I cannot get this to work. I’ve spent two hours. Any ideas guys?

    I have a couple of posts for other issues outstanding. They are a bit urgent.

    Thank you for your time, Jas

    #216276

    Topic: Disable the whole menu

    in forum Enfold
    osorma
    Participant

    Hi,

    i´m building a site and using Enfold. I need to go live asap with the first page. The other pages will be added later on. Since i don´t have any other pages yet, i really need to get rid of the menu for now. I´ve searched the forum and have managed to loose the main menu, but the mobile menu still remains. It is´nt visible but it still takes up the space from the top of the page. Please give me a clue on how to do this right…

    Br. Okko

    wholestone
    Participant

    I’ve recently built a site using Enfold and it’s made life very easy with great results. It is mostly static pages as a website with only one page for posts. Building sites using the WordPress Framework is however new to me and after some time not finding an answer I thought I should get over here and hopefully you can help me out.

    I’ve finished the site and using the ‘All in One SEO Pack’ have edited my page titles and descriptions for each page to improve the text displayed for each page in Google search results. I noticed however that Google is still using the original page titles from WordPress rather than the specified titles in the SEO Plugin. Having checked the source code if I understand it correctly it seems that the description for each page is showing in the source code but the page title is nowhere to be found? I have run a search on a couple of pages for the page titles and it didn’t show up so I am sure I’m not missing it.

    In the plugin settings there are a couple of boxes to tick reference the Avia Framework for posts and pages which I ticked and tested but it made no difference with them ticked.

    The following code is what I find in the pages if it helps. The lower case is as it really is, upper case is my edit for this post.

    <!– All in One SEO Pack 2.1.2 by Michael Torbert of Semper Fi Web Design[131,192] –>
    <meta name=”description” content=”EDITED MY PAGE DESCRIPTION SHOWS HERE”>
    <meta name=”keywords” content=”EDITED MY KEYWORDS SHOW HERE FOR WHAT THEY’RE WORTH”>
    <link rel=”canonical” href=”http://THE_PAGE_ADDRESS_SHOWS_HERE”&gt;
    <!– /all in one seo pack –>

    Any help you can give would be much appreciated as I really like this theme and plan to make more use of it.

    Perhaps I’ve misunderstood how best to setup other theme options being a newbie to the WordPress structures.

    Thanks in advance for your help ;)

    #215881

    Hi!

    Where are you adding it in? I checked the main docs and its the same function: http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    Checking it now and not getting an error so it may just be the placement in your functions.php file. Try adding it at the very end of the file just after the last line.

    Regards,
    Devin

    #215842

    Windows 8 / Firefox 26.0

    Searchbutton and other elements are broken:

    I tried the two .htacces solution…. Fonts nit loadingon apache server…Server error 500

    http://medientanz.de

    Thomas

    #215818

    Hi,
    I´ve got the same problem with Windows 8 / Firefox 26.0

    Searchbutton and other elements are broken:
    avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont=”entypo-fontello”]:before {
    font-family: ‘entypo-fontello’;

    Everything OK with safari and chrome

    greetings from germany

    Thomas

    #215747

    Can not reproduce it my self no more. I’ve deleted a bunch of Plugins in search of page speed! and as it seems it was one of the plugins I killed this morning.
    The search Icon used to look like this

    #215711

    Hey NanaKuo!

    We did not remove this action. In fact our theme even uses it to add a div to the default product grid template. I.e. search for following code in wp-content/themes/enfold/config-woocommerce/config.php

    
    add_action( 'woocommerce_before_shop_loop_item_title', 'avia_shop_overview_extra_header_div', 20);
    function avia_shop_overview_extra_header_div()
    {
    	echo "<div class='inner_product_header'><div class='avia-arrow'></div>";
    }
    

    – as you can see the avia_shop_overview_extra_header_div() function also uses the same action. Please contact the plugin author and ask him to debug the code.

    Best regards,
    Peter

Viewing 30 results - 6,781 through 6,810 (of 7,495 total)