Viewing 30 results - 6,481 through 6,510 (of 7,502 total)
  • Author
    Search Results
  • #265391

    Topic: CSS for Enfold Changes

    in forum Enfold
    mfinlayson
    Participant

    You probably already covered this in the forums but when searching I was not able to find an answer. I really enjoy using Enfold. I started with a different theme and want to pull that style into the enfold theme. For now here are the main things I would like to do.

    1) I would like to have a header image appear below the logo. (I tried using the thread where you explain what to add to the functions.php but the background is not behind the logo)

    2) I would like to change the nav bar so that it is a solid color when you hover

    3) I would like to add a style to each page/post (border with a radius of 20px) So each page of the site would have rounded corners along with a border. Hope that makes sense.

    Here are two URLs so hopefully you can see what I mean.
    URL of site with style but not enfold

    URL using the enfold theme but not correct style

    • This topic was modified 11 years, 11 months ago by mfinlayson.
    #265313

    Topic: remove featured image

    in forum Enfold
    thanp73
    Participant

    I typically put an image top left in my post and set same as ‘post image’

    unfortunately Enfold is handling this as two images and displaying both, which looks silly

    how do I set the single post option to not display the feature image at all? I’m surprised that is not an inbuilt theme option, but can someone point me to the right CSS? I searched forum did not fine it. I do want the theme to handle post images as per normal otherwise however.

    Also, how would I set a default post image for category/archive and related posts…i would like to set something to show by default instead of empty boxes with the zoom icon thx

    • This topic was modified 11 years, 11 months ago by thanp73.
    #265296

    Topic: Nofollow links

    in forum Enfold
    restlesscookie
    Participant

    Hi Guys, awesome theme,

    Although I did ask this question a few days ago, I can see all the other questions around mine have been answered, if its not relevant or obvious or ‘below you’ then please say so, so I can search for support else where, hopefully you just missed it so I’ll post it again.

    1.***To my original question below I would also like to ask, How to add a rel=’nofollow’ tag to the widget “enfold advertising area’, as I’m sure you are aware Google is very hot on this since recent updates, and now clearly states all paid advertising should be ‘nofollow.’ ***

    2. I want to nofollow the footer link, when I insert rel=’nofollow’ into the footer.php it crashes the entire footer.

    this link is the one

    Thank You.

    // you can filter and remove the backlink with an add_filter function
    // from your themes (or child themes) functions.php file if you dont want to edit this file
    // you can also just keep that link. I really do appreciate it ;)
    $kriesi_at_backlink = apply_filters(“kriesi_backlink”, ” – Enfold Theme by Kriesi“);

    #265170

    Hi Juan-Jose!

    We use the get_bloginfo() function to generate the home url. If you want to change it open up wp-content/themes/enfold/framework/php/class-breadcrumb.php and search for:

    
    $trail[] = '<a href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" class="trail-begin">' . $show_home . '</a>';
    

    Best regards,
    Peter

    #265158

    In reply to: French Version of site

    Hi!

    The “Load more” link, etc. is just a static text which is translatable with po/mo files. If you want to update/modify the po/mo translation files install this 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 on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain (i.e. search for “Load more” and translate it). At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Cheers!
    Peter

    #265148
    Marie
    Participant

    Hi !
    I have just uploaded Enfold last version. Before installing it, I was about to adapt the js. file as I always do for each update, with some special code I need to change for the responsive menu, around line 300. But this time the js. file is really different and I’m not skilled enough to know what I should do… Can you help me please ? I need to know what I should change now on the new js.file and where… :)
    Thank you so much.
    Best regards,

    Marie
    website : http://www.auxigene.net

    Here is the js.file code I always change (cf SwitchWidth / twice -> : 989 instead of 767)

    function avia_responsive_menu()
        {
        	var win = $(window), header = $('.responsive #header');
    
        	if(!header.length) return;
    
        	var menu 			  = header.find('.main_menu ul:eq(0)'),
    	    	first_level_items = menu.find('>li').length,
    	    	bottom_menu 	  = $('html').is('.bottom_nav_header'),
    	    	switchWidth 	  = 989;
    
        	if(first_level_items > 7 + header.find('#menu-item-search').length && !bottom_menu)
        	{
        		switchWidth = 989;
        		header.addClass('mobile_menu_tablet');
        	}
    

    Also, for info, code in my quick css regarding responsiveness also, in case I should also change something there…
    Thank you again !

    /* Smaller font size on slider iPad iPhone */
    @media only screen and (max-width: 767px) {
    .avia-caption .avia-caption-title {
    font-size: 10px; }
    }
    
    /* Responsive menu TABLET */
    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .mobile_menu_tablet .main_menu {
    display: block;
    }
    }
    
    /* Menu and logo not one into another */
    @media only screen and (min-width: 767px) and (max-width: 989px) {
    .main_menu ul:first-child > li > a { font-size: 11px; }
    .responsive .main_menu ul:first-child > li > a { padding: 0 5px; }}
    
    /*Hide the menu*/
    @media only screen and (max-width: 990px) {
     .responsive #header .main_menu ul {
       display: none;
     }
    }
    
    /*Title Container breadcrumb - Responsive*/
    @media only screen and (max-width: 767px) {
    .responsive .title_container .breadcrumb {
    top: 12px;
    }
    #top .title_container .container {
    padding: 0px 0px 6px 0px;
    min-height: 90px;
    }}
    
    /*Decrease the padding between menu items on screens smaller than 1140px to stop menu from overlapping the logo*/
    @media only screen and (max-width: 1140px) {
    .main_menu ul:first-child > li > a {
    padding: 0 7px!important; }}
    #265094

    Hey AscenderDesign!

    Please refer to this link: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/

    Find this line of code:

    // limit the results to 5
    	function avia_searchwp_search_num_results() {
    		return 5;
    	}

    Increase the default value of 5.

    Cheers!
    Ismael

    AscenderDesign
    Participant

    Hello,

    Is it possible to replace the standard Enfold search engine with the WooCommerce widget product search?

    Regards

    Christian

    #264774

    Hey bonsitemor!

    The “Home” link is just a static text which is translatable with po/mo files. If you want to update/modify the po/mo translation files install this 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 on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain (i.e. search for “Home” and translate it). At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Best regards,
    Peter

    #264615

    In reply to: Ajax Search Text Color

    Hi El-Watch!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .header_color .ajax_search_title {
    color: red;
    }

    Cheers!
    Yigit

    #264479
    oliviad
    Participant

    Hi,

    I would need the Enfold template builder in the ajax preview, I understand that is not the idea of the “preview”.

    However, I would just need the same content in both preview and portfolio page and it would make the editing much easier. The page itself is just meant for people who would search in the website and for Google index, that is why it is the same.

    I read there was a tweak here : https://kriesi.at/support/topic/use-advanced-layout-editor-in-portfolios-preview-section/#post-204136 but the code seems to have changed and it does not not work anymore.

    It would be great if you could help.

    Thanks!

    #264397

    i already have the latest version of the theme. and you can add code to enable it again, as per this forum. however, when no code is entered the plugin (Menu Item Visibility Control) cannot use the hooks it normally uses. This is the only theme wherein I have encountered this. Right now, the native conditionals are working okay, but I am not sure how they will work with S2Member. The levels for membership are not in the drop down menu. And I cannot get a plugin to work when the native code is deleted. I am a veteran user of Enfold, although I am not a coder by any means. Rest assured that I have the latest version, have searched the forum for answers, etc. I would like to restrict menu items by user level, which can be done in my other themes. Strange this theme is having trouble with it. By the way, I only use Enfold, Avada, The 7 and Salient. Please get back to me.

    #264357
    lflask
    Participant

    Hi! I noticed I was missing the magic wand on my default editor in Enfold. After researching I discovered there was a new version available to correct this. However, I have tried 3 times to upgrade via FTP to version 2.7.1. I am currently on version 2.6.2
    I am overwriting all files within the current theme. I have disabled all the my plugins and attempted a 3rd time to upload and overwrite and to no avail. The current plugins I am using are WordPress SEO, WP-Client, duplicate post, and a plugin from my hosting company.
    The website testing ground is
    http://www.sparktech.net/testing

    I would like to be able to access the shortcodes.

    Thanks

    tkcenter
    Participant

    Hi Team Kriesi,

    Enfold is a really great theme. The site is up and everyone is happy. I am just trying to figure out a few things that don’t seem to be working.

    One of them I need to resolve is the Facebook Preview Thumbnail.

    I searched for similar support threads, and your overall recommendation was to install SEO by Yoast to manage the preview images.

    We installed the plugin but it does not work. We also assigned the Facebook admin in the social settings. It might be something we did wrong on our end but we can’t figure out how to assign a featured thumbnail.

    When we post the Homepage on Facebook, its pulling the three images from the Easy Slider. Ideally we would like it to grab the image we assigned as the “Featured Image”.

    Please let us know if you can think of a solution. Again, your theme is awesome and the support has been tremendously great.

    #263667

    Hi Raleigh!

    You can try modifying the avia_append_search_nav function located in line 53, functions-enfold.php.

    You’d need to apply the filter to a specific submenu.

    Cheers!
    Josue

    abskevin
    Participant

    Hello,

    I’m on WordPress 3.9.1 and I just updated to Enfold 2.7.1 but I’m unable to edit or create any posts/pages.

    My website is http://www.allbarcodesystems.com. I can send whomever a private message with login information if that helps.

    Edit: My website was looked at and I followed the advice of disabling plugins but unfortunately it’s still not working. I disabled all my plugins and deleted all my cache but still no luck.

    For other’s references, these are my plugins:

    5sec Proper 404*
    Advanced Browser Check
    All in One WP Security*
    CloudFlare
    EWWW Image Optimizer
    Foobar Notification Bar
    Google Analytics for WordPress
    Hide my WP*
    Media Library Assitant
    QuForm*
    Quick Page/Post Redirect Plugin*
    Screets Live Chat*
    Search & Replace
    W3 Total Cache*
    Wordpress SEO*
    WP Editor
    WP to Twitter
    WP User Avatar

    * means plugins that I have left on just to make sure my website is still running properly. I’ve already disabled these and it still didn’t work.

    Thanks!

    • This topic was modified 11 years, 11 months ago by abskevin.
    #263091
    Raleigh
    Participant

    I found how to do this on another theme but no solution for this for enfold. I’d simply like to place the little search magnifying glass just like it is in the main_menu only on the right of the sub_menu.

    Thanks in advance.

    Raleigh

    #262809
    wintner
    Participant

    We found some issues in our implementation of Enfold as a one-page with color sections.
    Appreciate some advice on how to correct these issues:

    1. Desktop menu: current-menu-item is displayed wrong! The previous menu item is highlighted not the item selected.

    2. Links to sections display halfway between previous section and where it should navigate to. Should land at top of #section.

    3. Click on a page number in the blog section reloads the whole page and not just the section. It should land at the top of the blog section.

    4. Fixed background image in color section positioned bottom right not responsive.

    5. Where is search bar in responsive menu?

    • This topic was modified 11 years, 11 months ago by wintner.
    #262746
    gd0g
    Participant

    I am using a plugin form for a customised search which uses standard wp search and on the result page the enfold theme has a section at the top that says

    New Search
    If you are not happy with the results below please do another search

    I would like to remove this?

    Please help!

    Thanks in advance

    #262676
    bandulet
    Participant

    Hi,
    I have been searching and searching for help on this forum to learn how to install a theme and then access the design panel. With over 2000 subjects, I can’t seem to find any help.

    I have installed wp theme enfold (with tutorial install with ftp) in a folder named enfold right beside my html in construction page so that i can work in parallel. After installing the files, I wrote my websiteaddress.net/unfold and I get this message :
    Fatal error: Call to undefined function get_header() in E:\HostingSpaces\Festivaldesarts\festivaldesarts.net\wwwroot\enfold\index.php on line 9

    What should I do now? How can I make it work.
    Please explain in detail because I am new to WP.
    Thanks in advance.

    #262358

    Hi Signum!

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

    .title_container .main-title { display: none; }

    Then go to Enfold/framework/php folder and open class-breadcrumb.php and search/change “You are here” then find following line

    $separator = '<span class="sep">' . $separator . '</span>';

    and change it to

    $separator = '<span class="sep"> - </span>';

    Cheers!
    Yigit

    #261954
    dmudie
    Participant

    Hi, we really like the “Home v4: Small Slider” example on the demo page for Enfold. But we can’t seem to figure out how to enable that. Particularly the overlayed titles and captions. Is this type of slider available for posts or just static images/text? Thanks. I searched the forum but didn’t get anywhere with this. — David

    #261767

    Hi!

    @tkcenter: No worries. Please open another thread about the search form issue. :)


    @ContentedKerry
    : Did you update the theme to the latest version, Enfold 2.7.1? The text block should be fix on the latest patch of the theme.

    Best regards,
    Ismael

    #261710

    Hi Devin.

    We have done what you have suggested and there’s no change. A copy of the site was FTP’d to a dedicated test server and this issue still remains with the site up to date including plugins. We are now seeing a heavy drop in traffic due to not being able to edit any of the site content under the Enfold theme.

    Please see below communications from our dedicated server support team (inhouse)

    “Hi Jonathan – Callum has done a fair amount of testing and online research on this and it seems that the latests template we are using no longer works either due to a Java update or a WordPress update. The only options we have at the moment is to either copy over the site as it is where it will function exactly as it does on your old server (ie: backend not working) or change the template but this would mean rebuilding the site. If you want to rebuild it, now is probably the best time to do it.

    Callum is now trying to go through the code of the template to see if he can spot the problem but I think it’s better to assume it will not work until the developers themselves update it.

    Let me know how you want to proceed.”

    Please advise, this is now urgent.

    Jonathan O-C – Director

    #261653

    In reply to: Incorrect Breadcrumbs?

    Hi!

    Tbh I’m not sure why WordPress displays this “Blog Post” link. If the posts belong to such a category (you can check that on the admin page) then yes, this is the reason. Imo a third party plugin can affect the breadcrumb output too and maybe try to deactivate all plugins to check if a plugin is the culprit.

    However you can remove this link by modifying the theme files – just insert following code into 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) {
    if(is_single() && get_post_type() == "post")
    {
            foreach($trail as $key => $data)
            {
                    $search = 'Blog Post';
                    if(strpos($data, $search) !== false)
                    {
                                      unset($trail[$key]);
                    }
            }
    }
    return $trail;
    }
    

    Cheers!
    Peter

    #261270

    Super. Worked too! :)

    What happens when there is an update to the enfold theme? Will this overwrite/remove the code I have inserted in ‘functions.php’ and ‘loop-search.php’ so I need to paste it in each time the theme is updated?

    #261268
    spsocial
    Participant

    In my website (www.sparkline.com), my site search form’s Submit button shows the word “Array” instead of the actual Search icon. I haven’t changed the Enfold template, and my custom template doesn’t change any icon. I’ve verified this in Firefox on Mac, Chrome on Mac and Chrome on Windows 8.

    The social network icons (Facebook, LinkedIn, Pinterest, etc.) appear normally, though.

    How do I fix this?

    Hi Stela!

    1) In wp-content/themes/enfold/config-woocommerce/config.php search for:

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

    You can add your custom code to this function, below the echo code.

    2) In wp-content/themes/enfold/config-woocommerce/config.php replace:

    
    return sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s"  rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image);
    

    with

    
    return sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom noLightbox" title="%s">%s</a>', $image_link, $image_title, $image);
    

    3) The only solution I can think of is to use the “Default sorting (custom ordering + name)” option. Then go to Products > Sort Products and reorder the products with drag’n’drop.

    Best regards,
    Peter

    #261075

    Hey t3lgroup!

    Thank you for using the theme!

    Please add this on functions.php to change the label names.

    add_filter('avf_ajax_search_label_names','avf_ajax_search_assign_label_names', 10, 1);
    function avf_ajax_search_assign_label_names($label) {
    	if($label == 'Portfolio Items') {
    	$label = 'Products';
    	} 
    	else if($label == 'Posts') {
    	$label = 'News';
    	} else {
        $label = $label;
    	}
    	
    	return $label;
    }
    	

    You can add more conditions for different label names and you can find the hook on functions-enfold.php, line 152:

    $label = apply_filters('avf_ajax_search_label_names', $post_type_obj[$key]->labels->name);
    

    Best regards,
    Ismael

    Hey!

    Thank you for visiting the forum!

    Glad you figured that one out. In case you have questions, please try 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. :)

    Cheers!
    Ismael

Viewing 30 results - 6,481 through 6,510 (of 7,502 total)