Viewing 30 results - 3,001 through 3,030 (of 7,502 total)
  • Author
    Search Results
  • #949243

    thanks Ismael – i will give it a try.
    PS that filter was not in the list i have from https://kriesi.at/documentation/enfold/hooks-and-filters/
    Maybe a global search in enfold folder for “apply_filters” should be necessary. ;)

    #949216
    manteli
    Participant

    Hi!

    First, thanks for the greatest theme ever! Been using Enfold for many years and until now I’ve found every solution by myself. However, now I’m having a big problem with the multisite installation. I just keep missing something:

    – General Styling and Advanced Styling do not work for subsites, tried to create many subsites while searching for the answer.

    – Everything else seems to work but styling.

    – I’ve tried with and without a child theme – styling not working properly.

    – I’ve tried importing the theme options, it brings the styling options but they do not apply on the front end.

    – It’s not a browser or server cache issue, I’ve checked & I’m aware of the server cache while editing the main site CSS.

    – Tried ”Multisite Clone Duplicator” plugin as advised in this thread, that caused an internal server error and many other problems, so it’s not an option.

    – Main site works perfectly, theme styling for the subsites seems to be the only problem.

    Please advise how should I proceed, I’ve searched everything I could find on this issue.

    Thanks so much!

    #949049
    kaproadmin
    Participant

    Hello,

    I have 2 main problems with my website which uses Enfold and I have to say that I never had problems this bad.
    1. The search engine is not working properly, it keeps offering the same answer, no matter what is searched.
    2. The thumbnail pictures, which used to be one size are now in different sizes
    3 Every time that WordPress does an update, it creates problems and changes in the website (they generally end up being temporary) but it is extremely annoying!

    PLEASE HELP!!!

    Or I might have to go to Sola Solew, where they don’t have problems or at least very few.

    #948913

    Hi,

    Please remove the header widget style.

    Add the below CSS
    The Background color is used only for reference please remove it to suit your design.

    
    .container.av-logo-container .inner-container {
        display: flex!important;
        background: #eee;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap:wrap;
    }
    
    #top #header .logo,
    #top #header .main_menu,
    #top #header #search-3 {
       position: relative;
    }
    
    
    /* Logo */
    #top #header .logo {
        background: #ffdd00;
        order:2;
        /*flex-grow: 1;*/
    }
    
    
    /* Menu */
    #top #header .main_menu {
        background: #0099e5;
        order:3;
        /*flex-grow: 2;*/
    }
    
    
    /* Header widget*/
    #top #header #search-3 {
        background: #34bf49;
        padding: 0;
        order:1;
        z-index: 999;
        /*flex-grow: 1;*/
    }
    
    /* Header widget Breakpoint */
    @media only screen and (max-width: 850px) {
    
       .container.av-logo-container .inner-container {
            display: block !important;
        }
        #top #header .logo {
            display: inline-block;
        }
        /* Menu */
        #top #header .main_menu {
            display: inline-block;
            float: right;
        }
        #top #header .av-main-nav-wrap {
            float: right;
        }
        #top #header #search-3 {
            margin-top: -40px;
        }
    }

    The result will be:

    For more information please feel free to check out the header layouts.

    Best regards,
    Vinay

    • This reply was modified 8 years ago by Vinay.
    #948769

    Topic: search page / widget

    in forum Enfold
    rammandco
    Participant

    Can a custom widget be used on the search page.
    I don’t like the default – as it was showing all the pages that were included in the theme.

    EnfoldVersion: 4.2.6

    Sophie
    Participant

    Hi,

    due to the current privacy policy issue I am forced to disable Google Fonts and loading them from my own server instead. I searched the Enfold forum and found out to use this code in functions.php:

    add_action( 'init', 'enfold_customization_switch_fonts' );
    function enfold_customization_switch_fonts() {
        global $avia;
        $avia->style->print_extra_output = false;
    }
    

    In addition to that I added the following code for fonts (among others) to the style.css in my Child theme:

    /* chelsea-market-regular - latin */
    @font-face {
      font-family: 'Chelsea Market';
      font-style: normal;
      font-weight: 400;
      src: url('../fonts/chelsea-market-v5-latin-regular.eot'); /* IE9 Compat Modes */
      src: local('Chelsea Market'), local('ChelseaMarket-Regular'),
           url('../fonts/chelsea-market-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
           url('../fonts/chelsea-market-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
           url('../fonts/chelsea-market-v5-latin-regular.woff') format('woff'), /* Modern Browsers */
           url('../fonts/chelsea-market-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
           url('../fonts/chelsea-market-v5-latin-regular.svg#ChelseaMarket') format('svg'); /* Legacy iOS */
    }
    

    and created a new folder named „fonts“ in Child theme and put the corresponding fonts in it.

    In Settings > General Settings > Fonts I chose my favored font for heading and body text; in advanced settings > Slideshow titles I chose my favored font as well.

    Until now I added the following code in functions to use the Google Fonts, but now I removed this code:

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Chelsea Market'] = 'Chelsea Market';
    $fonts['Amatic SC'] = 'Amatic SC:400,700';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Chelsea Market'] = 'Chelsea Market';
    $fonts['Amatic SC'] = 'Amatic SC:400,700';
    return $fonts;
    }
    

    But it is not working somehow. Any idea how to prevent my website loading Google fonts from Google server and loading Google fonts from my own server instead?

    Thank you for your kind help in advance.

    Kind regards,
    Sophie

    #948561

    In reply to: Mobile header issues

    Hey Rupert,

    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: 479px) {
      li#menu-item-search a {
          top: 0px;
      }
      .responsive #top #wrap_all .main_menu {
          top: 60px;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #948237

    If that is true, then why are you opening a support ticket with Enfold and why not make your staging site live? You’re kind of contradicting yourself.

    Also, search the forum for “4.3”. Not good.

    #948158
    Basti
    Guest

    I’m interested in the Enfold Theme and have a few questions:

    1. I want to create post with very little clutter (no sidebar etc.) similar to this post: http://www.spiegel.de/wirtschaft/kenia-givedirectly-grundeinkommen-als-entwicklungshilfe-a-1179744.html. Is this possible with Enfold?

    2. Is it possible for a developer to ‘really’ customize certain aspects like eg show a picture of the author of a post in a certain way ( eg like it’s done here https://stripe.com/blog/stripe-home), add a custom search/categories drop-down (eg like it’s done here https://80000hours.org/blog/) or is this theme not made for such level of customization (I’m not talking about out of the box functionality)?

    Answers in German are also ok.

    Thanks in advance.

    #947608

    Hey gvjekoslav,

    Thank you for using Enfold.

    I tried to key in “post” in the search field but I couldn’t reproduced the issue. How can we reproduce the issue? What search keyword should we use?

    Best regards,
    Ismael

    #947471
    MSchrauf
    Participant

    Since the update to Enfold 4.3, the background image is no longer found, as soon as I activate the option “CSS file merging and compression”.

    The image is always searched in the following path. I think that’s a bug?

    • This topic was modified 8 years ago by MSchrauf.
    #947310
    MarcusEls
    Participant

    In the demo template ‘Enfold Medical’ the box with ‘Departments’ – ‘Medical Services’ and ‘Research’ are over the slider. I have downloaded the demo but can not see how you have done that. I want the same effect but not start Enfold Medical template each time.

    see: https://kriesi.at/themes/enfold-medical/

    Greetings

    #947253
    agentursaelzer
    Participant

    Hi There,
    i have a question. My costumer wants an individual background like this one http://www.yellowstoneaussies.de (wood background and video backgorund). So i started a new project with enfold ( no comments about designs, it was her wish..). Okay this worked pretty well. Now I ´m searching for an option to insert the Video with the dogs as a background with a bit transparency (cause the main background is the picture “woods”).

    I just found how to insert a video in a color selection, this worked just in the boxed content. :(

    Hope you can understand me :D

    Greets Julia

    …..—-..

    Hallo,
    ich hab eine Frage :-) Und zwar möchte meine Kundin einen individuellen Hintergrund haben, wie auf der Webseite http://www.yellowstoneaussies.de. Hier ist ein Waldbild als Haupthintegrund gelegt, darüber mit einer transparenz ein Video. Sie möchte unbedingt dieses boxed Layout haben.
    Ich habe zwar herausgefunden, wie ich in einer Farbselektion ein Video hinterlegen kann, aber dieses wird dann im Main Content dargestellt und dann ist natürlich der Text nicht mehr lesbar. Gibt es eine Möglichkeit, diesen sehr individuellen Kundenwunsch umzusetzen?

    Danke euch! :)
    Grüße Julia

    #946465
    gvjekoslav
    Participant

    Hi, since the last update, search box on the page does not work (does not give any results, just searches endlessly). I tried to disable all plugins and reinstall wordpress, but nothing helps. It gives PHP Warning: Attempt to assign property of non-object in /home/koktelih/public_html/rentalcarshub.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/av-helper-masonry.php on line 201.
    Can I get help how to fix this issue?

    projectnexus
    Participant

    I have created a webshop using Enfold and WooCommerce. If you look at this page: http://www.alliancedack.se/product/work-t-shirt-j-a-k-cotton/

    Screenshots:
    http://www.alliancedack.se/wp-content/uploads/2018/04/Enfold_01.png
    http://www.alliancedack.se/wp-content/uploads/2018/04/Enfold_02.png

    I have added a “Back to webshop” button at the bottom by using the following in the functions.php file (which I found in a Google search):

    //add back to store button after cart
    add_action(‘woocommerce_single_product_summary’, ‘themeprefix_back_to_store’, 45);
    function themeprefix_back_to_store() { ?>
    “><?php _e( ‘Gå tillbaka till butiken’, ‘woocommerce’ ) ?>
    <?php
    }

    That works really well, but I would like if it was possible to add some space between the text and the button on both the top and bottom (the space in the bottom is because when viewing the page on a mobile device the button is right above the black footer without any padding. I was hoping someone with a lot more skills than me could help out with this.

    Thanks in advance!

    Best regards
    Thomas

    Hi Yigit, I got everything working well on staging, then copied to production site and began getting 404 errors on pages (even after refreshing permalinks) and saw that some pages (search for homes) went to 404 page instead of to search results. Also saw lots of PHP fatal errors in server logs. Spent 2 hours with WP Engine support and finally reverted back to 4.2.6 enfold. (Yes, I am running php 7.0 and latest wordpress version, and WP Engine copied the staging site to a new directory on production server to try to get this to work).

    Here is sequence of events:

    Here’s sequence of events:

    1. Updated staging site to 4.3
    2. Made necessary changes to pages with Youtube videos to get them working.
    3. Staging site appeared to be working fine.
    4. Pushed staging to produciton
    5. All hell broke loose. HTTP500, site down., WP Engine (host) copied over files manually to new directory from staging and site came back up.
    6. First, I noticed Layer Slider on production site home page stopped working (text only, no video) and then same thing happened on staging site when it had been working fine before.
    7. Went into optimizations tab on Enfold theme settings and unchecked everything.
    8. LayerSlider video did not return.
    9. Then I noticed that property search functionality (optima express plugin) began throwing 404 error pages instead of going to results (so open houses on main menu, then blue button that says see all open houses in Marin County) http://www.thomashenthorne.com/marin-open-houses/

    10. WP Engine tried to refresh permalinks, copy over fresh copy from staging etc but couldn’t fix. Lots of errors (examples below)
    11. We had to revert to 4.2.6 backup
    12. Now layer slider on staging site running 4.3 is again showing background video on home page… and I made no changes…. strange….

    Sample errors:
    PHP Fatal error: Cannot redeclare av_countdown_events_fallback() (previously declared in /nas/content/live/myinstall/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/events_countdown/events_countdown.php:14) in /nas/content/live/myinstall/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/events_countdown.php on line 12

    PHP Warning: file_put_contents(/nas/content/live/myinstall/wp-content/cache/nextend/notweb/n2-ss-7/variations.manifest): failed to open stream: Permission denied in /opt/nas/www/common/production/php_prevent_flock.php on line 33, referer: http://www.thomashenthorne.com/marin-real-estate-blog/

    I would love to run 4.3 and hope you can help me.

    Thanks,
    Rob

    • This reply was modified 8 years ago by goldengate415. Reason: Clarity to reflect HTTP 500 error after first push of staging to production
    #946362

    Hey StartSmallDigital,

    Thank you for using Enfold.

    This is the updated script. It will append a placeholder for the search form and then the script will append the search field once the mobile menu is clicked.

    // https://kriesi.at/support/topic/search-in-mobile-hamburger-menu/#post-943960

    Best regards,
    Ismael

    #946072

    Topic: Product Slider Changes

    in forum Enfold
    sdsitetechdotcom
    Participant

    Hello there,

    Hope you are well. If you check the Private Content area, you can login to the website in question and get a better idea of what I am trying to accomplish. I need to move the pricing information on the Product List over to the left, so that things that are on sale can be seen (the sale price). Take a look at the screenshot, and notice how sale pricing gets cut off. This may have to do with a piece of code that is causing it to do so, which was generously provided in the past by an Enfold supporter. I’ve gone ahead and included the quick CSS code that I have in case you guys can identify the problem straight away.

    Product Slider

    Also is there any way to ghetto rig pagination without page reloading in Enfold? IIRC, Enfold does not support this directly, but there has got to be a way. On the What’s New page, if you click on page 2, 3, etc. the page reloads and then goes back up to the top of the big list which frustrated customers who lose their place on the page. Is there any way to have the pagination work without the page reloading?

    #avia-menu .avia-menu-text { font-family: "microgramma_dbold_extended" !important; }
    
    .av-catalogue-content {
    display: none;
    }
    
    /*fix pricing overlap problem on whats new page*/
    .av-catalogue-title {
        padding-right: 80px;
        font-size:16px;
    }
    .av-catalogue-price.av-cart-update-price>span.woocommerce-Price-amount.amount {
      font-size: 16px;
    }
    #top #wrap_all ins:before {
        padding: 0px 4px 0 3px;
    }
    .av-catalogue-price {
        width: 75px;
    }
    
    /*Shrink logo on mobile so search icon is visible*/
    @media only screen and (max-width: 450px) {
    
    .responsive .logo img {
    
    width: 75%;
    
    }
    
    }
    
    .page-id-5978 .av-catalogue-title {
    color: black;
    }
    #946060
    serhanikinci
    Participant

    Yiğit header alanındaki search iconu kayboldu. Enfold Main Menu ayarlarından search icon seçeneği işaretli ama sitede görünmemektedir.

    #946053
    goldengate415
    Participant

    One of the features I’m excited about in Enfold 4.3 is the custom 404 page. I would like to have a “search” box on my custom 404 page just as on the standard 404 page. I do not see this as an element in ALB. How do we add a search box to the custom 404 page?

    Thanks,
    Rob

    #945875
    rosi67
    Participant

    I choose enfold contruction demo but on my site I can’t see the horizontal menu on the left (Home – project – services – company – contact – news) near the icon search neither I see the background image of the section “Why us”.
    I need absolutely the horizontal menu.

    Can we help me
    Thanks in advance
    rosi

    #945716

    & also I am now getting the error below when I try to edit the Home page

    Fatal error: Uncaught Error: Call to undefined function epl_shortcode_listing_search_callback() in /home/gccrecom/public_html/wp-content/plugins/easy-property-listings/lib/widgets/widget-listing-search.php:41 Stack trace: #0 /home/gccrecom/public_html/wp-includes/class-wp-widget.php(372): EPL_Widget_Property_Search->widget(Array, Array) #1 /home/gccrecom/public_html/wp-includes/widgets.php(742): WP_Widget->display_callback(Array, Array) #2 /home/gccrecom/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/widgetarea.php(83): dynamic_sidebar(‘homepage-top’) #3 /home/gccrecom/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/shortcode-template.class.php(349): avia_sc_widgetarea->shortcode_handler(Array, ”, ‘av_sidebar’, Array) #4 /home/gccrecom/public_html/wp-includes/shortcodes.php(319): aviaShortcodeTemplate->shortcode_handler_prepare(Array, ”, ‘av_sidebar’) #5 [internal function]: do_shortcode_tag(Array) #6 /home/gccrecom/public_html/wp-includes/shortcodes.php in /home/gccrecom/public_html/wp-content/plugins/easy-property-listings/lib/widgets/widget-listing-search.php on line 41

    #945594
    Denise Tjon
    Guest

    A faculty member is interested in purchasing the Enfold Theme for his research site. He just want to confirm the max number of slides he can add tot the slider.

    #945252

    Hi,

    Thank you for using Enfold.

    Use this code in the Quick CSS field to override the theme’s default styling.

    #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 {
        background-color: #d5d5d5;
    }

    Best regards,
    Ismael

    #945229
    laptophobo
    Participant

    I’m trying out the Google Data Highlighter tool (see: https://support.google.com/webmasters/answer/2692911) and though I am sure I’m set up properly in Google Search Console and have arrived at the point where I can begin marking up my title, images, etc. (a version of my page is displayed on the left of the highlighter interface screen) I’m finding that the ability to highlight (for example) the “title” does not work. I’m supposed to simply left-click my mouse and highlight the title, which then should appear in the Google title field. It does not. It’s as if I’m being blocked in doing so by, perhaps, the theme?

    Any information on how to work with Data Highlighter would be great.

    #945162
    endaemon
    Participant

    I have just updated the Enfold Theme and now the Design is broken, it seems that there is a part before the header which
    shouldn’t be there …

    Lightning fast help is very appreciate because it is a shop-site which is now loosing money :(

    i found this topic:

    and also tried the solution there (#mobile-advanced, #menu-item-search, .av-burger-menu-main {display:none !important; })
    the design looks normal after that but the biggest problem there is that the mobile-menu is then gone (no menu anymore) so it didn’t work for me.

    Thank you very much
    Daniel

    • This topic was modified 8 years ago by endaemon.
    #944989

    Hallo,
    nach vielem Suchen und verschiedenen Maßnahmen habe ich den Fehler nun gefunden. Sie können das Ticket schließen.
    Der Fehler wurde durch eine zweite und modifizierte Datei functions-enfold.php erzeugt, die von einem schlauen Mitarbeiter noch dazu in einem ungeeigneten Ordner außerhalb des Themes abgelegt war. Ein Child Theme ist nicht im Einsatz. Ja, so dumm kann es laufen.

    After much searching and various measures, I have now found the error. You can close the ticket.
    The error was generated by a second and modified file functions-enfold.php, which was also stored by a clever employee in an inappropriate folder outside the theme. A child theme is not in use. Yes, it can be so stupid.
    Best regards,
    Iris

    #944761

    Hi Enfold Team,

    just wanted to let you know that I solved the problem. As did not stop searching in the forum here and found a solution which worked out. So Problem is solved ;-)

    for all who want to know how:
    As mentioned I had already a Z-Index for the pop-up of 999
    I added on the layer slider under “appearance” the CSS
    z-index:1!important;

    Therefor the Layer Slider has a lower Z-Index per definition and the pop-up a higher one. The Z-index on the layer slider was the important part which was missing.

    So this threat can be closed.

    To the Enfold Team: you do an excellent job and provide tons of solutions here in the forum which helps us the users to solve specific needs as mine!

    #944650
    davidm290
    Participant

    I haven’t been able to resolve this and I’m hoping someone can help out here.

    Using the forms in the Enfold theme, there’s a SUBJECT field you can fill out which comes through when a visitor fills out a form.
    I’m looking to dynamically add a bit of information to this for customer support purposes. We have a field within the form labeled “League Name”

    I’d like the subject of the email we receive to follow this format:
    SUBJECT – League Name
    where League Name is whatever the user types in.

    After some research with a programmer, it appears the file that needs to be adjusted may be:
    enfold > framework > php > class-form-generator-.php

    Can anyone lend a hand helping me accomplish this?

    #944636
    G
    Participant

    I have the following code in my functions.php file to add a widget area below the secondary menu and it has worked beautifully for a while now. Out of the blue (today), I see that the widget area is no longer there on the front end of the site. I never changed anything on the site.

    I checked Appearance>Widgets within the admin and the widget area “Below Menu” exists along with a basic text widget, but nothing displays on the site. I ran a search for “orange_bar” (custom class for my widget –see below) within the source of the site and nothing is found. It’s like the ‘ava_after_main_container’ hook no longer works.

    Does anyone know what went wrong and how do I fix it?

    /* Add widget area below main menu */
    add_action( 'ava_after_main_container', 'enfold_customization_below_menu_widget_area' );
    function enfold_customization_below_menu_widget_area() {
    	dynamic_sidebar( 'Below Menu' );
    }
    if ( function_exists('register_sidebar') )
      register_sidebar(array(
        'name' => 'Below Menu',
        'before_widget' => '<div class = "widget clearfix widget_text orange_bar"><div class="container">',
        'after_widget' => '</div></div><div class="container"><div class="arrow-down"></div></div>',
        'before_title' => '<h3>',
        'after_title' => '</h3>',
      )
    );
    • This topic was modified 8 years ago by G.
Viewing 30 results - 3,001 through 3,030 (of 7,502 total)