Viewing 30 results - 1,891 through 1,920 (of 7,495 total)
  • Author
    Search Results
  • #1134851

    Hey diefleischerei,

    Thank you for using Enfold.

    You can use this css code to adjust the font color of the input fields.

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
        border-color: #f8f8f8;
        background-color: #ffffff;
        color: #000000;
    }
    

    Or try to reconfigure the styles in the General Styling > Main Content panel.

    Best regards,
    Ismael

    #1134822

    Hi,

    Thank you for contacting us.

    You can enable the top bar in the header options and add the search bar shortcode to the extra info area.

    Best regards,
    Vinay

    #1134727

    In reply to: Theme doesn't install

    Hi,
    I tried to research this some more but only found one explanation that the Umlaute may contain some formating if it was copied from another document, so I cut the line in question and pasted into a plain text editor and then copied back to your Elementor builder. But I’m unable to check if it worked because it seems my Mac has been updating for the last half hour and is stuck at 50% :( I may have to check your site tomorrow.
    I was also going to try some other fonts in an Enfold Advanced Layout Builder text element to see if there is a difference to your Elementor builder, can you please give this a try?

    Best regards,
    Mike

    #1134655

    Hi Jordan,
    just checked it. Isn’t there any language file? I need to change it in german language?
    Should i change the text in all of them:
    functions.php
    enfold/search.php
    loop-search.php

    ?

    I thought there should be a language file, ins’t it?

    kind regards jak

    #1134292
    rolfjackson
    Participant

    In the Enfold church theme: https://kriesi.at/themes/enfold-church/about/
    The text field creates a “paper” like effect where the text field overlaps the background image set in the color section.

    I have created a new page and cannot figure out how to enable this effect. I have spent a long time searching for either page-level, section-level or other places that will allow me to set this property. What happens instead is that there is a section image and below it a full width page with text and other elements (such as widget areas etc). But no way to make them overlap.

    Can you help me with that?

    Regards, Rolf Jackson

    #1134110
    lisetyrrell
    Participant

    We have a problem with orders going through. You can add a product to the cart but when you go to checkout it shows up empty.

    I’ve done a lot of research and tried many things but when I finally switched from Enfold to the Storefront theme, everything works. That tells me that Enfold is the issue.

    See further details in the private content.

    Thank you,
    Lise

    #1133850

    Hello Ikyo,
    Where did you find the last version of Enfold to downgrade?
    I am still searching :-)

    Regards
    Oliver

    #1133785
    dorianadabei
    Participant

    Hallo an das Enfold Team.
    Leider zeigt die Google suche nicht auf meine Homepage, sondern auf ein Bild. Es wurde bereits versucht das yoast plugin zu deinstallieren, jedoch ohne erfolg. Es wird immer nur auf das bild gezeigt.
    In der Google Search console wird der fehler “Nicht gefunden (404)” angezeigt.

    Finde leider keine Lösung zu meinem Problem

    VIelen dank & lg

    Hello to the Enfold team.
    Unfortunately, the Google search does not show to my homepage, only to a picture. I have already tried to uninstall the yoast plugin, but without success. It is always shown only on the picture.
    The Google Search console displays a “Not Found (404)” error.

    Unfortunately, find no solution to my problem

    Thanks a lot & lg

    • This topic was modified 6 years, 6 months ago by dorianadabei.
    #1133599
    watsonint
    Participant

    I am using Enfold by importing the “Consulting Demo”. You can see my website here. Is there a way that I can add a search box above or under my menu on the left without adding an extra sidebar?

    #1133438
    ahanauer
    Participant

    Hi there,

    I really like a lot the possibilty to enter a different font sizes for wide screen, tablet in mobile in the enfold theme.

    Is there a possibility to change font size via CSS for wide screen, tablet in mobile too?

    Here an example: With the following CSS I could adjust the heading of the search result page. On wide screen its fine, but on mobile is to big.

    .template-search .entry-content-wrapper .post-title {
    font-size: 24px !important;
    margin-top: 6px;
    color: #491550 !important;
    }

    I`m really excited, if there is a solution for responsive design via CSS!

    Best wishes and thanx for your support!

    Alex

    #1133044

    As Promised, the solution below changes the default search form to make it:
    -Show products in a grid
    -Add SKUs to the standard search
    -Fixes the Ajax search so it all matches

    Replace the search form
    Edit the searchform.php (use your child theme to make a copy) Replace the default form with the following:

     <form role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
    			<div>
    				<input type="text" id="s" name="s" value="<?php if(!empty($_GET['s'])) echo get_search_query(); ?>"  placeholder='<?php echo $search_params['placeholder']; ?>'>
    				<input type="submit" value="<?php echo $icon; ?>" id="searchsubmit" class="button <?php echo $class; ?>" />
    				<input type="hidden" name="post_type" value="product">
    			</div>
    		</form>

    Add SKUs to the default search
    The guy who put this together is brilliant thank you! Add the following to your child theme’s functions.php file:

    /**  __________________________________   ENHANCE THE STANDARD SEARCH 
     * Join posts and postmeta tables
     * 					 This one hels to include the SKU in tzhe standard search
     * http://codex.wordpress.org/Plugin_API/Filter_Reference/posts_join
     */
    function cf_search_join( $join ) {
        global $wpdb;
        if ( is_search()  || !empty($_REQUEST['s'] )) {    
            $join .=' LEFT JOIN '.$wpdb->postmeta. ' ON '. $wpdb->posts . '.ID = ' . $wpdb->postmeta . '.post_id ';
        }
        return $join;
    }
    add_filter('posts_join', 'cf_search_join' );
    
    /**
     * Modify the search query with posts_where
     *
     * http://codex.wordpress.org/Plugin_API/Filter_Reference/posts_where
     */
    function cf_search_where( $where ) {
        global $pagenow, $wpdb;
        if ( is_search() || !empty($_REQUEST['s'] ) ) {
            $where = preg_replace(
                "/\(\s*".$wpdb->posts.".post_title\s+LIKE\s*(\'[^\']+\')\s*\)/",
                "(".$wpdb->posts.".post_title LIKE $1) OR (".$wpdb->postmeta.".meta_value LIKE $1)", $where );
        }
        return $where;
    }
    add_filter( 'posts_where', 'cf_search_where' );
    
    /**
     * Prevent duplicates
     *
     * http://codex.wordpress.org/Plugin_API/Filter_Reference/posts_distinct
     */
    function cf_search_distinct( $where ) {
        global $wpdb;
        if ( is_search() || !empty($_REQUEST['s'] ) ) {
            return "DISTINCT";
        }
        return $where;
    }
    add_filter( 'posts_distinct', 'cf_search_distinct' );
    /* END   Search includes SKU  */

    Hope this helps other people. It makes the Search in Enfold do what it should when Woocommerce is installed.

    #1132043
    thinkjarvis
    Participant

    Hi Guys,
    The built in search function in Enfold isn’t sophisticated enough for Woocommerce Search Results.

    Question 1:
    Is there a way within enfold to restore the default Woo Commerce Search Function? This would search products only like on the https://themes.woocommerce.com/storefront/ demo.

    Question 2:
    The Ajax search works excellently with the shop. Is there a way to disable the search results page. So users only see the Ajax search results? Pressing enter should do nothing and the clicking the magnifying glass next to the search box should do nothing.

    Hope you can help!

    isreynolds_137
    Participant

    Hi all,

    I’m a newbie, i have listed my website with google, sitemaps etc and have redirected the home page to show my main information in the enfold theme but the listing just shows the basic wordpress title.

    just another wordpress site with the date and my username for wordpress and first blank post. I have deleted those posts and pages ages ago.

    ive gone in and changed the username to display another name and omit the username in the theme.

    the site has been up for about 2 weeks and was retrawled yesterday.

    i am using the yoast sitemap and it sees it.

    anything i am doing wrong please or is it a waiting game or is there a way of blocking that url in google search console please.

    cheers en.

    Hi,

    We don’t really see anything unusual in the search results. What should we be looking for?

    Screenshot: https://imgur.com/a/HYWXTvD

    Thank you for using Enfold.

    Best regards,
    Ismael

    #1131677
    coumoliv
    Participant

    Hi,

    The website https://lovesvg.com/ is using enfold theme for their portfolio.
    Could you please let me know what kind of elements or plugins they are using to make their images appear in the search result?
    i.e. If you type Dog in the search bar, only designs with dogs will appear.
    Thanks

    Olivier

    #1131618

    In reply to: Support Questions

    Hi,

    Sorry for the delay.

    First thing you need to do is set the Enfold > Blog Layout > Blog Layout to “Use the advance layout builder..”. After that, you need to set the builder to debug mode so that you can copy the shortcodes that we’ll provide below.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Once the debug mode is activated, you’ll be able to see the actual shortcode below the advance layout builder. Just copy and paste this code in the debug mode field.

    // https://pastebin.com/yhhvau2A

    That is the shortcode of the demo.

    If you need assistance, please let us know. But we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    #1131518
    frode-inter-sun
    Participant

    Hi

    When I bought Enfold LayerSlider was a part of the Enfold.

    When in menu and inside LayerSlider It say that I need to update and activate the plugin, but when I go to updates in wordpress there is no update.

    In the wordpress plugin page I do not have LayerSlider.

    When i go to wordpress menu and LayerSlider I need to activate the plugin with a lisens?

    How do I update, deactivate and delete this plugin?

    Please give me detail on the 3 last questions as I have search the internett and can not find a solution.

    #1131487
    coumoliv
    Participant

    Hi,

    I’m using the Enfold theme demo Enfold.
    I plan to giveaway Images (designs) on my website and to sell a few as well.
    When doing a search, the result appear as text.
    I would like the result to appear with a list of images that matches the search.
    what Can I do?
    Thanks for your help.

    Olivier

    #1131351

    Hi Basilis

    Thank you for your answer.

    As mentioned in my first message, this was not intended to be an on-page SEO question. Also as mentioned, we are well aware of SEO shortcomings on the site. However, missing meta´s and missing H1´s (only in the blog) would not result in search results as catastrophic as with the site in question.

    Request:
    Please take a look at the originally attached screenshot of the aHrefs comparison of the two sites. The massive differences are strange to say the least.

    We would still like your input on the question about Yoast and Enfold not working well together!

    I noticed a support thread on the subject in your own forum, where you are participating personally as recent as june of this year. So, I would imagine that you might have a thought or two about potential Yoast/Enfold issues?

    Question:
    Is there a risk that Enfold or the Avia builder produce shortcode that yoast can´t read and perhaps even result in Google not crawling the pages where the Avia builder is being used? And if so, do you have any fixes or updates in the pipeline which could fix this issue for us?

    Regards
    Michael Glans

    #1131235

    i’m terribly sorry Ismael & others, but i’m just not “getting it” – & i really want to “get it”. i beg for more patience…

    so, the Enfold > Maintenance Mode options:
    A) Enabled – Use Selected page content without redirect = no matter what is entered into the address bar after the domain, the user is shown the “coming-soon” page (this is what i want & am happy with).
    B) Enabled – Redirect to selected page = going to any page changes the url to “http://domain.com/coming-soon/?avia_forced_reroute=1&#8221;
    …(and in the following dropdown menu, i’ve selected the “coming-soon” page i made for this purpose).

    regarding these above two options, whether either is “Enabled” or not, these do not have anything to do with search engine bots ability to crawl & index the pages in this site – but instead, that function is in the Settings > Reading > Search Engine Visibility option – right/wrong?

    then as a second issue – i’m not sure where this 404 filter thing came from. i totally don’t understand that, but i’m wondering if it has anything to do with my issues or was put in here by mistake or what.

    my curiosity question was in regards to the “/?avia_forced_reroute=1” part that results from having “B” from the above options selected. i just don’t understand what that accomplishes & why anybody would need it. your answer to that was in giving me the 404 filter code. is that related? if so, how?

    i do see the option in Enfold > Theme Options > “Custom Error 404 Page”, but i’ve not planned on creating a special page for “page not found” issues.

    thanks again,
    -jason.

    Thanks for making me aware of the possibility to display blog posts from a certain tag. But since we have 1200 questions, we can not only display posts from the tag “Under 15”, We must also be able to let the user select a category (and possibly a subcategory). In case, maybe I should use a plugin like Search & Filter? Do you know if it works well with Enfold?

    #1130900

    no – as you can see i have found the posting of mike . but if you see the permalink on the board here – you obviously see that there is the title of the topic included. If i do a search here on board only with post ID : #1067907 there are no results except your posting here.
    So best is if you post the links to the postings your refer to.

    As i wrote above – the delay time is no enfold input options field – it belongs to the 3rd Party Plugin.

    isreynolds_137
    Participant

    Hi all,

    after moving to a managed service as i kept getting hacked ive moved back to enfold and self hosting.I have had alot of help from a friend who uses enfold alot to make sense and now ive got my two license to do two sites.

    Ive finished what i will be doing with one for now and done seo and trying to get it trawled, ive done yoast, submitted site maps etc and verified.

    when i checked in securi site checker it will just not scan the site and says page 404 missing. ive no idea how to set this i think i have.I took the caching plug in off.

    ive tested in https://httpstatus.io
    on https://sitecheck.sucuri.net
    and on https://search.google.com/test/mobile-friendly

    i did have an issue with :’?avia_forced_reroute=1′. but i think thats gone.
    any ideas im a bit of a newbie and novice i would say compared to others here.

    any ideas please cheers to get rid of this cheers

    sorry if this makes little sense, the written language is not my strong point.

    #1130354

    Hi bauchope,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .header_color .av_ajax_search_title {
        color: #fff;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1130253

    Hi,

    Thank for you the update.

    I disagree with the idea that these tools are useless for those who understand SEO.

    No one said that the tool is useless and we explicitly stated that the builder is not fully compatible with the plugin. And we also admitted earlier that as of this moment, there are no plans on making the builder fully compatible with the analysis tool.
    // https://kriesi.at/support/topic/problem-with-seo-yoast-and-enfold-theme/#post-1119454

    Thank you for the info. As we’ve said earlier, there are certain limitations to how the analysis detects content in the builder. Unfortunately, there is no plan on making the builder fully compatible with the analysis tool, at least not as of this moment.

    However, this doesn’t mean that by using the Advance Layout Builder you won’t be able to structure pages that are fully readable by or optimized for search engines. You can, but unfortunately, without the help of the analysis tool.

    Best regards,
    Ismael

    Hey HeeHA,

    Thank you for using Enfold.

    How can I not move the search icon

    Your inquiry is a bit confusing. Do you want to move the menu between the logo and the search icon? That is the default header layout, so you don’t need to do anything.

    Best regards,
    Ismael

    #1129350

    In reply to: Screen breakpoint

    Hey Anita,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 1430px) {
      nav.main_menu, #menu-item-search {
        display: block !important;
      }
      .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    abparenteau
    Participant

    Something is wonky with the events calendar when I use it with the enfold magazine. The events will only draw from furthest away to closest. I have raised this issue with Tribe Events, but am not getting anywhere. I combed through this support section, but am not seeing this issue covered (at least the way I searched).

    You can see this on the homepage (westminstermpls.org).

    I’ll note the website with credentials below, but this is an urgent issue as we are promoting events in earnest starting at the end of this week. Thank you for all of your support!

    #1129038
    entrepreneurgirl
    Participant

    Hi Guys!
    I recently purchased the Enfold theme and I am just beginning the customization, However, I am having a few problems:
    1. On my homepage, I played around with the LayerSlider , but when I deleted my practice slides, there’s now an error stuck at the top of my homepage that I can’t get rid of. I tried reloading a fresh demo and switching between the child theme and the regular, but the error is still there.
    2. I will customize the theme with my own design, but I won’t do any modifications to files etc. Just my own pics and personal design. For example: I may make links different colors. I don’t want any updates on the theme to override this. So, should I use the child theme or the regular?
    3.Which plugin is best for hiding my ENTIRE SITE away from PEOPLE… NOT SEARCH ENGINES while under construction? I currently have WP Maintenance Mode.
    4. I like the Pre-loader, but I don’t like the way that everytime you click on an item, that page shows again. How do I make it so that the Pre-loading page only loads ONCE when you are first visiting the site?

    Thank you so much in advance.

    #1128975

    Hey soniamit,

    That would be too complicated as there are almost endless possibilities to integrate custom fields using ACF. However following would be helpful:

    1- Please refer to ACF docs to find code examples – https://www.advancedcustomfields.com/resources/
    2- Since you are going to need to apply the changes directly on theme files, we recommend you to use a child theme – https://kriesi.at/documentation/enfold/using-a-child-theme/ so those changes would not be overwritten in updates.
    3- For example, if you would like to display your custom field above “You might also like” in related posts section, you can simply right click and inspect elements on it and fine it’s class, in this case “related_title” – https://i.imgur.com/rkXbR7X.png
    4- Then you can search that class in Enfold files to find the correct file and line – https://i.imgur.com/0LzqewP.png

    I hope that helps! :)

    Best regards,
    Jordan Shannon

Viewing 30 results - 1,891 through 1,920 (of 7,495 total)