Viewing 30 results - 4,141 through 4,170 (of 7,495 total)
  • Author
    Search Results
  • #723845
    bigphoenix3d
    Participant

    So, first of all Enfold theme is super awesome.Thank you for providing such a wonderful theme.

    I’ve been working on my site for past 2 weeks and suddenly today lot of content on my home page gone missing.I can not delete it as there was lot of elements.I mean I can delete one or two but half of my page is missing.
    I searched for it on forums and it seems updating Enfold and WordPress to latest version have fixed problems for some people.So I’ve updated both Enfold and WordPress but it didn’t help.
    I use BackUpWordpress plugin to auto backup my website twice weekly.I’ve complete backups of 9th & 11th Dec. ’16.I’ve tried to overwrite all the files via ftp but the content (elements, text etc) didn’t come back.Although some of the old settings have been restored like heading and colors.
    I still haven’t tried the backup of 9th Dec.Is there a way to manually restore some of the data or a particular page ?

    Thanks in advance.

    Abhay.

    #723773
    sambo258
    Participant

    for example I want to change the Products to Properties, how would I do this.

    Many thanks,

    This is the last thing then I will have manage to of made a fully functioning Real Estate website out of Enfold with search filters ect, something not done before.

    Hope fully you guys can even include it on your demo list for people :)

    Warm regards, Sam.

    #723750

    Hey Enfolded,

    this is not by default available, however try this solution: https://kriesi.at/support/topic/secondary-menu-to-include-a-search-bar/#post-192490

    Best regards,
    Andy

    #723742

    Hey billysbuddies,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

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

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Best regards,
    Yigit

    #723495

    In reply to: Search widget problems

    I edited functions-Enfold.php for another issue. I added text at the bottom of the file and then removed it later. I was certain that I removed it correctily, but in any event I ended up with that parsing error. When I tried to fix it last night I didn’t have my phone with me for the 2-step verification, but I have fixed the parsing error now. You are free to investigate the Search issue. Sorry for the inconvenience.

    #723382

    Hi,

    Sorry for the late response.

    Issue #1 Seems to be already fixed, I’m not sure if you want to change the color of the menu item’s background and font color, but if you want to change it you can add this code in Quick CSS (located in Enfold > General Styling):

    
    /* Menu item background color set to blue */
    #top #header .main_menu #avia-menu li a {
        background: #0000ff;
    }
    
    /* Menu item background color when hovered */
    #top #header .main_menu #avia-menu li a:hover {
        background: #0000ff;
    }
    
    /* Menu item font color set to white */
    #top #header .main_menu #avia-menu li a span.avia-menu-text {
        color: #ffffff;
    }
    
    /* Menu item font color when hovered */
    #top #header .main_menu #avia-menu li a:hover span.avia-menu-text {
        color: #00ff00;
    }
    
    /* Search background color set to white */
    #top #header .main_menu #avia-menu li.menu-item-search-dropdown a {
        background: #fff !important;
    }

    I’ve added some comments, just replace the colors as you see fit.

    Issue #2 seems like this is fixed also since I can already see the yellow color on titles.

    We apologize for the delayed response and I hope this helps.

    Best regards,
    Nikko

    #722868

    Hi Danielrad78, I’m not from kriesi support team, but after read your message I would like to help you. I use Enfold with polylang and after apply few custom functions I translate 100% of content.

    To use custom header text/extra elements in enfold options need this code:

    /**
     * [polylang lang="en"]English[/polylang][polylang lang="es"]Spanish[/polylang]
     */
    function polylang_shortcode($atts, $content = null)
    {
    	if (empty($content))
    		return '';
    	extract( shortcode_atts( array('lang' => ''), $atts ) );
    	if (empty($lang))
    		return "<h3>You must specify 'lang' using shortcode: polylang</h3>";
    
    	return ($lang == pll_current_language()) ? $content : '';
    }
    add_shortcode('polylang', 'polylang_shortcode');

    Then you can use –> [polylang lang=”en”]English content[/polylang][polylang lang=”es”]Spanish content[/polylang]

    To create copy of title / content on translation need this:

    
    /**
     * Make sure Polylang copies the content when creating a translation
     */
    function jb_editor_content( $content ) {
        // Polylang sets the 'from_post' parameter
        if ( isset( $_GET['from_post'] ) ) {
            $my_post = get_post( $_GET['from_post'] );
            if ( $my_post )
                return $my_post->post_content;
        }
    
        return $content;
    }
    add_filter( 'default_content', 'jb_editor_content' );
    
    /**
     * Make sure Polylang copies the title when creating a translation
     */
    function jb_editor_title( $title ) {
        // Polylang sets the 'from_post' parameter
        if ( isset( $_GET['from_post'] ) ) {
            $my_post = get_post( $_GET['from_post'] );
            if ( $my_post )
                return $my_post->post_title;
        }
    
        return $title;
    }
    add_filter( 'default_title', 'jb_editor_title' );

    To delete language category on blog entries:

    
    function avia_exclude_tax($tax,$post_type,$id){
        $tax = array_merge($tax, array('language', 'term_language', 'post_translations', 'term_translations'));
        return $tax;
    }
    add_filter('avf_exclude_taxonomies', 'avia_exclude_tax', 10, 3);

    To use ajax search with current language only:

    
    
    /**
     * Ajax Search Query current language
     */
    function avf_modify_ajax_search_query($search_parameters)
    {
        $language = pll_current_language();
        parse_str($search_parameters, $params);
        $params['lang'] = $language; 
        $search_parameters = http_build_query($params);
        return $search_parameters;
    }
    add_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1);
    
    function avf_modify_ajax_search_messages($search_messages)
    {
    	    $search_messages[all_results_link] = pll_home_url().'?'.http_build_query($_REQUEST);
            $search_messages[no_criteria_matched] = '<a class=\'ajax_search_entry ajax_search_entry_view_all\' href=\'' .$search_messages['all_results_link'].'\'>'.$search_messages['view_all_results'].'</a>';
        return $search_messages;
    }
    add_filter('avf_ajax_search_messages', 'avf_modify_ajax_search_messages', 10, 1);

    Then, from Settings/Languages/Strings translations you can translate widgets.

    I hope this helps you…

    Gabri

    #722796

    Topic: Search widget problems

    in forum Enfold
    TCTM
    Participant

    I have two search widgets in my footer and want to get rid of one and can’t.

    At first I tried the plain search widget that came with the Enfold theme, but I didn’t care for the design of the output. I really didn’t want to use the search icon up in the header, so I investigated the widget options further and found the one for the Woocommerce Product Search. I don’t use a sidebar, so I put it in the 3rd column footer. It worked fine. Then I decided to put both search widgets in the footer so that I could do a comparison test easily. That turned out to be a bad move on my part. I removed the Enfold search widget, but it still stays in the footer of my site. The same is true regardless of the browser I use on my laptop as well as my smartphones. How do I get rid of the Enfold search widget?

    • This topic was modified 9 years, 3 months ago by TCTM. Reason: Updated Enfold Support login info for wp-admin
    #722769

    Hi,

    The seach field give result even if the word is inside text in product page. Isn’t it possible to ask him ONLY in product TITLE?

    You need install a third party plugin to improve the search index.

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

    ok you did it and thanks but it occure lots of bugs (ajax search result transparency on Layerslider, normal search field doesn’t work on subpages…)

    I’m not sure what you mean by this. Do you want the product search to display on a specific page? Please install a menu controller plugin.

    // https://wordpress.org/plugins/menu-items-visibility-control/

    Best regards,
    Ismael

    #722659
    erkuto
    Participant

    Hi there,

    I’m looking for an event calendar plugin (such as “the event calendar”) working with this amazing Enfold theme without problem. Do you have any suggestion to handle to announce and archive our events?

    Thanks,
    Orhan

    #722627
    pilarmolla
    Participant

    Hello,
    I’m using Enfold theme and I need to know how to delete the default search fields from woocommerce the ones that allow you to categorize by name, date, etc and number of articles per page. Also I would like to know if it is possible to customize the shop overview page, eg. add slider, images, add text…
    Thank you!
    Pilar

    #722321

    Topic: Replace Default Text

    in forum Enfold
    waterwalk
    Participant

    Hi, I have been searching for a quite awhile in the forum and have not found an answer to this yet.

    1) I just want to replace the “Leave a Reply” default text with something else. The normal ‘gettext’ function I’ve used before in wordpress does not seem to work with Enfold

    function replace_text($text) {
    $text = str_replace(‘Leave a Reply’, ‘New String Here’, $text);
    return $text;
    }
    add_filter(‘the_content’, ‘replace_text’);

    Currently, this is the only code I have on the child theme functions.php page and adding the code above to functions.php has no effect. How do I change the default text above? Thanks.

    • This topic was modified 9 years, 3 months ago by waterwalk. Reason: I solved part of the question myself but need help still with remaining question
    #721872

    Hey internetwarriors,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top #menu-item-search {
        float: left!important;
    }
    

    Best regards,
    Vinay

    #721627

    In reply to: MailChimp popup code

    Hi,

    this forum is all about Enfold and our other themes, so please stick to theme related questions only. We can’t help you with any 3rd party plugins or programs as mentioned in our support policy. So please search in Google about your question on Mailchimp signup form.

    Best regards,
    Andy

    #721415

    In reply to: Google maps API

    Hi,
    in the API console my API’s key is active.
    I put into the google services of enfold but when i create a google maps on my page it doesn’t work . This is the error that i see:
    “It seems that your Google API key is not configured correctly

    The key is probably either restricted to the wrong domain or the domain syntax you entered is wrong.

    Please check your API key qui

    The domain that should be allowed is:
    http://stoping.it/*

    I saw your link in the previous answer but i don’t find the way to solve it.
    My domain is verificated on google search console.

    Hi mate, have updated to v3.8

    Menu: my menu is called Donate and the display location is Enfold Main Menu. However, it does not appear.

    Search: in Enfold, Header, Extra Elements I have ticked the box ‘Append search icon to main menu’ but no search icon appears.

    Header and Footer: How can I remove the padding? The Header Title and Breadcrumbs section that sits

    a) at the bottom of the page
    b) beneath the header but above my content.

    Thanks,

    D

    #721279

    And here is a few examples of it showing up on a page (not a post)
    https://search.google.com/structured-data/testing-tool/u/0/#url=http%3A%2F%2Fkriesi.at%2Fthemes%2Fenfold%2Fpages%2Fabout-us%2F

    https://search.google.com/structured-data/testing-tool/u/0/#url=http%3A%2F%2Fkriesi.at%2Fthemes%2Fenfold%2Fshortcodes%2Fcolumns%2F

    To me it looks like it is completely random what pages it shows on on the demo site. And since it is not showing at all on my site, I cant help but wondering if there is something wrong.

    Ok, this was the last post from me this night ;)

    #721248

    Hello,

    For your information, self posting is not helping at all.

    Breadcrumbs show up on posts and you do not have posts on your website. You can see that breadcrumbs is missing here as well – https://search.google.com/structured-data/testing-tool#url=http%3A%2F%2Fkriesi.at%2Fthemes%2Fenfold%2Fpages%2F

    Regards,
    Yigit

    davidpreston
    Participant

    Hi,

    I can’t get my menu to appear, nor can I get the search icon to show top right.

    Also, I’d like to remove the section that sits beneath the header. The bit where in Enfold/Header/Header Title and Breadcrumbs you can select what goes in there. Do you have any CSS that will just take that whole section out?

    #720849

    Hey mandarkhamkar,

    Thank you for using Enfold.

    You can disallow those url and directory in the robot.txt file. Example.

    // https://kriesi.at/support/topic/gwt-problems-indexing-enfold-soft-404-with-search-activated-s/#post-707487
    // http://www.robotstxt.org/faq/prevent.html

    Best regards,
    Ismael

    #720731

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .html_main_nav_header.html_logo_left #top .main_menu .menu>li:last-child>a, .html_bottom_nav_header #top #menu-item-search>a {
        padding-right: 13px;
    }
    .header_color .cart_dropdown_first .cart_dropdown_link {
        color: #666666;
    }
    

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Best regards,
    Yigit

    Viktor Vincej
    Guest

    Hi,

    I’ve featured your “enfold theme” in our magazine / blog about WP theme… in ecommerce collection http://www.webcreate.me/best-business-wordpress-themes/ which is ranking on the first page of google search for “business wordpress themes” keyword and other related ones.

    I would like to offer you FREE push in between first positions in collection if you would let us submit testimonial on your website and earn backlink.

    We can also add more of your themes on our website and extend our cooperation, maybe guest post on your website.

    Let me know

    Thanks

    #720493

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .ajax_search_excerpt { display: none !important; }
    

    Best regards,
    Yigit

    #720400
    coastalboca
    Participant

    Sorry I checked for the answer prior to contacting but couldn’t find it. I was curious…in researching (looking at) the default demo under the Headers Tab you have a header labeled Glassy Header. Is this particular header option also available for the Homepage? In other words I would like to demo import the theme as is make some changes but one of the changes is to change out the default header to this Glassy header if that’s doable.

    Thanks in advance for your suggestions/answer.

    Mark

    #720215

    Hi Team,
    Actually my first issue is regarding the drop down menu, I want to have solid color background for drop down menu and
    my second issue is regarding the language flags, I want to remove them from the header section, I tried to get help from WPML support team and here is their reply:

    I will be helping you with this. Enfold includes their own language switcher and this needs to be removed by adding some code.

    I have found this older thread for you:
    https://kriesi.at/support/topic/remove-language-switcher-flags-in-header/
    https://kriesi.at/support/topic/how-to-disable-the-wpml-language-selector-in-the-menu-after-search-icon/

    Please contact your theme support to get the most recent method to remove the Enfold language switcher if you wish to use the WPML switcher instead.”

    • This reply was modified 9 years, 3 months ago by omidbahar. Reason: I didn't explain the issue properly
    #719824

    Try running your demo site through the Google validation tool:
    You can clearly see a “breadcrumb” markup….
    https://search.google.com/structured-data/testing-tool/u/0/#url=http%3A%2F%2Fkriesi.at%2Fthemes%2Fenfold%2F2014%2F04%2F28%2Fnew-electric-cars-are-getting-really-fast%2F

    #719776

    Hi,

    Thank you for using Enfold.

    I’m sorry but I don’t see any errors or warnings when I tested the site.

    // https://search.google.com/structured-data/testing-tool#url=http%3A%2F%2Fwww.360marketing.dk%2F

    What do you mean by “Breadcrumb markup”?

    Best regards,
    Ismael

    #719617

    Hi There

    The maps element of the enfold theme works fine because, as I said, the Key is installed.

    ALL other mapping third party plugins I have tried have an issue with Enfold and not other themes. These include:

    From Code Canyon:
    Map List Pro
    Sabai Directory Plugin

    From WordPress Respository:
    Business Directory Plugin
    Connections Business Directory
    Geo Directory

    All have an issue when performing a location search and we are unable to drop a pin. A vital part of the system we use.
    All these plugins work fine on our site using other themes but not with Enfold.

    This would suggest the issue lies with Enfold – not these 5 plugins listed.

    Does that help elaborate?

    #719609
Viewing 30 results - 4,141 through 4,170 (of 7,495 total)