Viewing 30 results - 5,701 through 5,730 (of 7,495 total)
  • Author
    Search Results
  • #403870
    remodelit
    Participant

    Tried searching but can’t seem to find the hex code for the default theme colors in Enfold. For example, what is Hex Code for Splash Red? Is there a list?
    Thanks

    Hi Yigit,

    Thanks, the top border doesn’t shift anymore… but the bottom one does. You can see if you want, site has been updated. How do we prevent the shifting of the bottom? I tried searching for that class in Enfold’s files, but “border-width-bottom” is already set to 0px, so not sure what’s doing it.

    Thanks,

    Matt

    #403457
    deadpeasant
    Participant

    Hello, I am new to Enfold. I have set up some categories. I want to make the posts in the different categories look different from each other, but I have no idea where to start. I have searched the internet, but can’t find anything. Is there something in the Enfold demo files to get me started? Or is there a tutorial?

    For example, when I show the latest post in each category, there is a pale grey bar running across the screen between the header and content, with the word “Blog”. I don’t know why it’s there, how to get rid of it, or how to put something else there.

    All help gratefully received.

    #403436
    Remco Geelen
    Participant

    Hi guys.

    Using alt-tags and titles and all, many pictures used in Enfold sites nicely show up in Google Search Results. Yet, I used Google’s testing tool (developers.google.com/structured-data/testing-tool/) when I found out some images never got anywhere, and this is what it says:

    <a href="http://www.yvons-fotostudio.nl/wp-content/uploads/2015/01/920980_254483678009903_730441292_o.jpg" class='post-1046 attachment type-attachment status-inherit hentry av-masonry-entry isotope-item av-masonry-item-with-image' title="Bruidsfotografie - Yvon's Fotostudio, Papendrecht" itemprop="contentURL" ><div class='av-inner-masonry-sizer'></div><figure class='av-inner-masonry main_color'><div class="av-masonry-outerimage-container"><div class="av-masonry-image-container" style="background-image: url(https://www.yvons-fotostudio.nl/wp-content/uploads/2015/01/920980_254483678009903_730441292_o-470x705.jpg);"><img src="http://www.yvons-fotostudio.nl/wp-content/uploads/2015/01/920980_254483678009903_730441292_o-470x705.jpg" title="Bruidsfotografie – Yvon’s Fotostudio, Papendrecht" alt="Trouwreportage Papendrecht Dordrecht Alblasserdam" /></div></div></figure></a>

    And indeed, the error message (Google herkent de property contentUrl niet voor een object van het type WebPage.) corresponds with the fact that these images in the masonry gallery seem not at all to be recognized and indexed by Google. So… guys? Do I need to use another type of gallery? Or is this a bug or so that can be fixed? Because these images, on 6 pages, concerning about 40 photos in total, are key to my clients local existence and future success. Kind of crucial ;)

    Thanks in advance!
    Remco

    #403005
    erantdo
    Participant

    Hi,
    I’m currently testing the theme on: http://enfold.atera.com/ – I loaded it is a Child Theme, and I loaded as demo the business version.

    1. Can you please tell me why I have duplicates in the header?
    2. Why is the pricing table headline background is colored in black?
    3. Why in the “get in touch” strip not spreading through the whole width? (btw, sometimes the footer also does spread through the entire width, but now it’s ok)
    4. How do I remove the powered by Enfold Child WordPress Theme – I tried searching in footer.php but didn’t find it.
    5. How do I change the content font size..? I found how to change the font itself, but how can I change the size?

    Thanks !

    Eran

    strongboynyc
    Participant

    How can I disable the lightbox that pops up on top when clicking on product image? I’d like to keep the lightbox under the top one. I do believe the bottom lightbox is Enfold and the top one is Woocommerce. I’ve search everywhere for a fix. Thanks for your time.

    #402896
    elrey52
    Participant

    I recently updated my word press site to the latest version of Enfold. I have now noticed that the search Icon is not there but the word SEARCH is there. I have found where to edit the word to change it or take it away in functions-enfold.php from reading various other topics even though they basically dealt with wanting to put the word IN instead of my situation. If I remove the word the icon is still not there but clicking in that area still brings up a search box. What can i do to just get the search icon only?

    #402820

    Hey Mac_Gyver!

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

    .html_main_nav_header #top .main_menu .menu>li:last-child>a, .html_bottom_nav_header #top #menu-item-search>a {
    padding-right: 13px;
    }
    .html_header_searchicon_disabled #top .main_menu .menu>li:last-child>a .avia-menu-fx {
    padding-right: 0;
    }

    Best regards,
    Yigit

    #402709

    Hey scottrseeley!

    Please try using a more advanced search plugin such as – https://wordpress.org/plugins/relevanssi/ ( implementation here – http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/ ) or SearchWP ( implementation here – http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/ )

    Regards,
    Yigit

    Hi!

    1.) You can add html codes inside the Phone Number or small info text field. You can find it on Enfold > Header > Extra Elements panel.

    2.) Add this to the functions.php:

    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-5">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }

    Go to Enfold > General Styling > Quick CSS field. Add this:

    @media only screen and (max-width: 767px) {
    #top #searchform>div {
    display: block !important;
    opacity: 1 !important;	
    }
    }

    This will render the search box inside the mobile navigation.

    Cheers!
    Ismael

    Hi royaltask!

    Thank you for using Enfold.

    I’m sorry but this will require a custom script that is beyond the scope of support. Please hire a freelance developer or search for a script that accomplishes the task described above.

    Regards,
    Ismael

    Hi!

    Please refer to this link on how to properly integrate Relevanssi with the ajax search: http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    Cheers!
    Ismael

    Hi Walso!

    1- Please refer to this post – http://kriesi.at/documentation/enfold/adding-your-own-icon-fonts/
    2- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 989px)
    .responsive .av_mobile_menu_tablet .main_menu {
    display: block; }
    .av-main-nav > li {
    display: none;
    }
    li#menu-item-search {
    display: block!important;
    right: 60px;
    }}

    Regards,
    Yigit

    #401754

    Enfold is uptodate -> Version 3.0.8
    Sorry, but obviously I have not made myself clear enough:
    Of course Relevanssi is not enabled right now. IF Relevanssi is enabled, then the English blog page http://www.abol.ac.at/en/blog displays
    “Nothing Found Sorry, no *posts* matched your criteria”. Not the search is causing troubles, but the English blog page is NOT displaying any posts anymore. Disabling Relevanssi again brings back the posts on the English blog page.

    Hi Daniela!

    you are using an old version of Enfold. Please update via FTP to v3.0.8.
    However when I try to search for the word “Barcode” on your website /en/blog, I get the right search result.

    Regards,
    Andy

    #401362

    Hey marketug!

    Thank you for using Enfold.

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

    Best regards,
    Ismael

    #401246

    Topic: Blog style

    in forum Enfold
    Madame_z
    Participant

    Hi

    Did contact you yesterday with the same Problem, this was my Email:

    Madame_z

    —————————————————————————
    Hi,

    I would like to change the look of the Listing for the results of the search. I would like to list it like the recipes at the recipe page aswell:

    http://www.foodulution.com/rezepte-archiv/

    now it looks like that:

    http://www.foodulution.com/k%C3%BCche/paleosteinzeit-diaet/

    Thanks for help/advice

    Nicole
    ———————————————————————————————————
    You told me, that I should do this:

    http://kriesi.at/documentation/enfold/change-archive-categorytag-blog-style/

    And I did, I put the snippet into funchtions.php and first it seems to work. But nope, it didnt’ it is still like that:

    http://kriesi.at/documentation/enfold/change-archive-categorytag-blog-style/

    Instead of an grid-layout listing of the search results out of my recipes…

    Thanks for your help.

    Cheers, Nicole

    #401165

    Topic: Home page doesn't load

    in forum Enfold
    SusanLS
    Participant

    I recently finished a site redesign in Enfold at SusanLStewart.com and had it launched. Now the Home page will not load when you click on the Home link at the top of the left sidebar from another page. I get this message:

    Nothing Found
    Sorry, the post you are looking for is not available. Maybe you want to perform a search?

    I didn’t have a problem before it was launched. Everything else is working fine.

    Thank you for your help.
    Susan

    #400975
    Jason E
    Participant

    I have requested this in the past, but of late, it seems even more necessary. We need a single place within the support forums that details all of the compatibility with both current and previous versions of WP and Enfold. We want to upgrade to 4.1.1, but after doing searches on the forum for 4.1.1, we see lots of potential issues. Some are resolved, some are not, but all of them are in different places that have to be searched to be found. A member of your support staff suggested just looking at Themeforest to confirm compatibility, but that does not answer all of the questions.

    We need something better.

    We need a single, centralized place that detail what versions are compatible and if there are potential or confirmed issues, we can all know without digging through post after post. Other themes and theme developers have this and as important as Enfold is, we are asking you to seriously consider making it a priority.

    #400686

    Thank you for your response Ismael!

    I did try installing the relvannsi plugin, but unfortunately that didn’t help either.

    Here is a link to the website – nwpmg
    login – nwpmg

    If you go to the about us page and try to use the WP listings search you will see that a blank enfold search page is being brought up.

    Any ideas or help would be greatly appreciated!

    Thanks!

    #400556

    Topic: Overview

    in forum Enfold
    rs-art
    Participant

    Guys,

    guess by the looks of it.. my problem is less complicated as most of these post here;
    but here goes;
    From the Demo pages there’s a Portolio/Photography Setup for Enfold
    (http://kriesi.at/themedemo/?theme=enfold-overview)

    I simply can’t figure out how to get that extra line of text in the menu (remark on the menu item)
    And how do I get that intro with the 2 buttons and switching background?

    Can’t find anything in the documentation and by searching here i get lost is it amount of topics.

    regards
    Raju

    #400497

    Hi lowman42!

    Thank you for using Enfold.

    You can generate the button shortcode using the shortcode wand then place it inside the tab content editor. Please take some time to review all of the resources in the Theme Documentation. A lot of basic stuff like theme installation, element configuration, options overview, css snippets and whole lot of handy stuff regarding the theme are probably available in there. You can watch video tutorials or get hold of a few hooks and filter functions that may help you modify the theme as you like. You can also search the forum for any related questions or issues.

    If you don’t find what you’re looking for, don’t hesitate to let us know and we will be happy to assist you. For any complicated questions or add-on, please visit our Feature Requests page. Thanks!

    Regards,
    Ismael

    #400479

    Hey!

    What did you try and how? If you navigate via FTP the search path is wp-content–>themes–>enfold–>framework–>php, there you will find the file called function-set-avia-frontend.php, choose to edit it and replace http://kriesi.at with your own link and {$theme_string} with the text you want your link to display, all on line 1310.

    Cheers!
    Rikard

    #400473

    Hi savageman1234!

    Thank you for using Enfold.

    Can you please provide a link to the website? Maybe, adding a search optimization plugin will help. Try this:

    https://wordpress.org/plugins/relevanssi/
    http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    If possible, please contact the plugin author for more info.

    Best regards,
    Ismael

    #400333
    USEYOURHEAD
    Participant

    Not that you are the only Themeforest theme that has this issue … but I spend HOURS AND HOURS hunting through the provided Google fonts. There is no way you can tell what kind of fonts are listed – unless you memorize or check every font at Google fonts. It is clunky and frustrating. Does not make it easy or any other terms used in theme marketing on themeforest.

    Surely you can provide some kind of tool to see these fonts – Other Than searching through them one by one on Google Fonts.

    How hard would it be to provide a sample image of the fonts you include.

    ### EDIT ###
    I think we no longer have to edit the function file to use a new Google font. I added an @ import to my child css and it seem to work. But if you search google for “Enfold new font” – it returns a very complicated post. — https://kriesi.at/support/topic/new-custom-font/ Anyway, it took me a few hours to figure it out since I had backups of function and css files from two versions agol. LOL. )

    Evidently you still do not provide support for TYPEKIT. In other themes, we just plug in the TypeKit code in the Theme options interface. Oh well.

    • This topic was modified 11 years, 1 month ago by USEYOURHEAD.
    #400161

    Topic: Mailchimp Integration

    in forum Enfold
    web4smallbusiness
    Participant

    After searching for hours on how to make the mailchimp fields sit next to each other instead of below each other, I found your excellent tutorial for the Enfold theme and added the appropriate code.

    All seems to be ok now, except, I would like the “Submit” button to be this colour: #F6937A and the background of the whole form to be #FBC7B4.

    I would also like the “Submit” button to be smaller and to have a bit of space between the columns.

    Is there quick css code that I can add in to make this happen please.

    The form is for the following page:

    Thank you very much
    Ivana

    • This topic was modified 11 years, 1 month ago by Josue. Reason: added link to tutorial
    #400148
    savageman1234
    Participant

    Hello Enfold,

    Love the theme!

    1 question. I’m using the WP Listings plugin to display real estate listings for a client’s website. Everything is great except for the fact that I cannot get the widget search feature that comes with the plugin to play nice with enfold. When I do a search using their plugin, enfold displays a blank search page with only the sidebar on the page. The plugin uses the custom post type of “listing” but won’t display on the search results page. I have disabled enfold and used the default 2014 theme and the search works fine…… I realize that you don’t support 3rd party plugins, however, my cleint really wants this feature enabled and I have racked my brain and Google to find an answer…without luck. I would be willing to pay for a solution to this problem. Any help would be greatly appreciated.

    Thank you for the excellent theme!

    Chris

    Dear Elliott, you asked me the same thing in your message form February 16, 2015 at 6:32 pm, so I already tried that.
    But I did it again, just in case. Unfortunately it didn’t help. The only change is that the default front page is another one – but the sidebar is still broken. I left it like that now. That is “default” – as is – from the box setting that comes with Enfold.

    I think I should explain that I have give up all Enfold settings, my website content, and all plugins, in order to find a solution for this error.
    This mean that there are NO theme settings that I need to save (I will create new one later), there is no need for any sort of backup, there are NO plugins, and the current content is there purely for error-search and testing. In other words you can test, play with, delete, create, and do whatever is needed in order to find the problem.
    Thank you!

    #399500
    This reply has been marked as private.
Viewing 30 results - 5,701 through 5,730 (of 7,495 total)