Viewing 30 results - 13,951 through 13,980 (of 244,601 total)
  • Author
    Search Results
  • Hi Frank,

    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1417018

    Hi Monica,

    Thanks for contacting us!
    You will need to check if the API key or Envato private token is filled in, in Enfold > Theme Updates.
    If the theme is bought from Themeforest then it should allow the theme to update.

    Best regards,
    Nikko

    #1417017

    In reply to: Grid row height mobile

    Hi stephaniebLOS,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      #welcome .flex_cell {
        min-height: auto;
      }
    
      #welcome .flex_cell .hr {
        display: none;
      }
    
      #welcome .flex_cell .av-special-heading {
        margin: 30px 0;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    #1417016

    Hi stephaniebLOS,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      #top .avia-fullscreen-slider .avia-slideshow {
        max-height: 50vh;
      }
    }

    Just change the value, 50vh is 50% of the vertical height of the screen.
    Hope this helps.

    Best regards,
    Nikko

    #1417012

    Hi JeSchami,

    Is it possible to integrate a direct language in the automatic reply. such as Dear Ms. Mustermann.
    It’s possible using this filter: avf_form_custom_autoresponder
    Please try to check this thread: https://kriesi.at/support/topic/contact-form-changes-after-enfold-update/

    And the information is drawn from what he entered in the form?
    I think you may need an advanced form with some conditional logic built-in it.
    For free contact form plugin, you can try contact form 7 and add another plugin called conditional fields: https://developerrocket.com/how-to-add-conditional-fields-using-contact-form-7/
    But if you want a more convenient and user-friendly one, a paid one like gravityforms has this feature.

    Best regards,
    Nikko

    #1417010

    Hi blende64,

    Can you try to update the latest Enfold version and maybe temporarily disable any caching plugins?

    Best regards,
    Nikko

    #1417008

    Dear Enfold support team,

    I hope you’re doing well. I recently reached out regarding a “Fatal error” issue after upgrading our PHP version. We are now encountering another problem and would very much appreciate your guidance once again.

    We are currently working on a temporary domain https://csrf-southsudan-project.ch/ for development and testing purposes. The site is showing the following warning:
    Warning: Trying to access array offset on value of type bool in /home/httpd/vhosts/csrf-southsudan-project.ch/httpdocs/wp-content/themes/csrf-southsudan/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 834
    Warning: Trying to access array offset on value of type null in /home/httpd/vhosts/csrf-southsudan-project.ch/httpdocs/wp-content/themes/csrf-southsudan/config-templatebuilder/avia-template-builder/php/asset-manager.class.php on line 834
    This warning appears to be related to array offset access on variables of type bool and null. We have tried to identify the issue ourselves but haven’t had much success so far.

    Given that these issues have occurred after upgrading PHP and are related to the Enfold theme, we would be grateful for any assistance you could provide in resolving them. We are keen on maintaining our website’s performance and usability while ensuring that our theme customizations remain intact.

    Thank you for your time and help. We look forward to your prompt response.

    Warm regards,
    Tuncay Cicek

    #1417007

    OK, so, I should be able to test this with just the page.php file, if I’m only looking at “regular” pages (eg https://gatcomdev.wpengine.com/about/), right? If so, I added the closing divs to the page.php file and it doesn’t seem to do the trick. In my testing it seemed like I had to remove the echo, like this: https://capture.dropbox.com/RmIFvQzocT49oUt0 — does that look right?

    When looking at the source after adding those closing divs to the page.php file, I can’t find those new closing divs — I’m guessing maybe because I’m using Elementor to build the pages. If I add the closing divs to the header.php file and view the source, I can see them (https://capture.dropbox.com/hMUlWN8NYgc6dzpQ), but they still don’t seem to make a difference — when I turn on the Elementor footer the Enfold header still disappears — so I put them back in page.php, per your instructions, for now.

    Any other ideas for me? Thanks again.

    #1417003

    Hi, I don’t see this option and I am using the latest version of Enfold. I see these 2 options:
    General Styling
    Advanced Styling

    I prefer NOT to set it to custom colors as it may mess up other colors. I am comfortable with CSS if I just know what the CSS code is for this. It should be one of these classes:
    .av-special-heading hX
    .av-special-heading-tag hX

    wusatiuk
    Participant

    I am trying to exclude posts (woocommerce products) which have a specific category (id=340) from the ‘avia_ajax_search’ popup.
    have copied the function if(!function_exists(‘avia_ajax_search’))

    from /enfold/functions-enfold.php to /enfold-child/functions.php
    Is this correct, or do i need a seperate /enfold-child/functions-enfold.php

    
    if(!function_exists('avia_ajax_search'))
    {
    	//now hook into wordpress ajax function to catch any ajax requests
    	add_action( 'wp_ajax_avia_ajax_search', 'avia_ajax_search' );
    	add_action( 'wp_ajax_nopriv_avia_ajax_search', 'avia_ajax_search' );
    
    	function avia_ajax_search()
    	{
    	    global $avia_config;
    		
            $exclude_category_id = 340; // Replace with the actual category ID
    
    	    unset($_REQUEST['action']);
    	    if(empty($_REQUEST['s'])) $_REQUEST['s'] = array_shift(array_values($_REQUEST));
    		if(empty($_REQUEST['s'])) die();
    
    	    $defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false, 'results_hide_fields' => '');
    
    	    $_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
    
    	    $search_parameters 	= array_merge($defaults, $_REQUEST);
    
    	    if ( $search_parameters['results_hide_fields'] !== '' ) {
                $search_parameters['results_hide_fields'] = explode(',', $_REQUEST['results_hide_fields']);
            }
            else {
                $search_parameters['results_hide_fields'] = array();
            }
    
            $search_query 		= apply_filters('avf_ajax_search_query', http_build_query($search_parameters));
    	    $query_function     = apply_filters('avf_ajax_search_function', 'get_posts', $search_query, $search_parameters, $defaults);
    	    $posts		= (($query_function == 'get_posts') || !function_exists($query_function))  ? get_posts($search_query) : $query_function($search_query, $search_parameters, $defaults);
    	
    	    $search_messages = array(
    	            'no_criteria_matched' => __("Sorry, no posts matched your criteria", 'avia_framework'),
    	            'another_search_term' => __("Please try another search term", 'avia_framework'),
    	            'time_format'         => get_option('date_format'),
    	            'all_results_query'   => http_build_query($_REQUEST),
    	            'all_results_link'    => home_url('?' . http_build_query($_REQUEST)),
    	            'view_all_results'    => __('View all results','avia_framework')
                );
    		
    	    $search_messages = apply_filters('avf_ajax_search_messages', $search_messages, $search_query);
    		
    	    if(empty($posts))
    	    {
    	        $output  = "<span class='av_ajax_search_entry ajax_not_found'>";
    	        $output .= "<span class='av_ajax_search_image ".av_icon_string('info')."'>";
    	        $output .= "</span>";
    	        $output .= "<span class='av_ajax_search_content'>";
    	        $output .= "    <span class='av_ajax_search_title'>";
                	$output .= $search_messages['no_criteria_matched'];
    	        $output .= "    </span>";
    	        $output .= "    <span class='ajax_search_excerpt'>";
                	$output .= $search_messages['another_search_term'];
    	        $output .= "    </span>";
    	        $output .= "</span>";
    	        $output .= "</span>";
    	        echo $output;
    	        die();
    	    }
    
    	    //if we got posts resort them by post type
    	    $output = "";
    	    $sorted = array();
    	    $post_type_obj = array();
    	    foreach($posts as $post)
    	    {
    	        $sorted[$post->post_type][] = $post;
    	        if(empty($post_type_obj[$post->post_type]))
    	        {
    	            $post_type_obj[$post->post_type] = get_post_type_object($post->post_type);
    	        }
    	    }
    
    	    //now we got everything we need to preapre the output
    	    foreach($sorted as $key => $post_type)
    	    {
    
    	        // check if post titles are in the hidden fields list
    	        if ( ! in_array('post_titles', $search_parameters['results_hide_fields'] ) )
    	        {
                    if(isset($post_type_obj[$key]->labels->name))
                    {
                        $label = apply_filters('avf_ajax_search_label_names', $post_type_obj[$key]->labels->name);
                        $output .= "<h4>".$label."</h4>";
                    }
                    else
                    {
                        $output .= "<hr />";
                    }
                }
    
    	        foreach($post_type as $post) {
    
    	            $image = "";
                    $extra_class = "";
    
                    // Get the categories for the post
               		$post_categories = wp_get_post_categories($post->ID);
    
               		// Check if the excluded category is in the post categories
    	            if (!in_array($exclude_category_id, $post_categories)) {
    
    	                // check if image is in the hidden fields list
    	                if (!in_array('image', $search_parameters['results_hide_fields']))
    	                {
    	                    $image = get_the_post_thumbnail($post->ID, 'thumbnail');
    	                    $extra_class = $image ? "with_image" : "";
    	                    $post_type = $image ? "" : get_post_format($post->ID) != "" ? get_post_format($post->ID) : "standard";
    	                    $iconfont = $image ? "" : av_icon_string($post_type);
    
    	                }
    
    		            $excerpt     = "";
    
    	                // check if post meta fields are in the hidden fields list
    	                if ( ! in_array('meta', $search_parameters['results_hide_fields'] ) )
    	                {
    	                    if(!empty($post->post_excerpt))
    	                    {
    	                        $excerpt =  apply_filters( 'avf_ajax_search_excerpt', avia_backend_truncate($post->post_excerpt,70," ","...", true, '', true) );
    	                    }
    	                    else
    	                    {
    	                        $excerpt = apply_filters( 'avf_ajax_search_no_excerpt', get_the_time( $search_messages['time_format'], $post->ID ), $post );
    	                    }
    	                }
    
    		            $link = apply_filters('av_custom_url', get_permalink($post->ID), $post);
    
    		            $output .= "<a class ='av_ajax_search_entry {$extra_class}' href='".$link."'>";
    
    		            if ($image !== "" || $iconfont) {
    	                    $output .= "<span class='av_ajax_search_image' {$iconfont}>";
    	                    $output .= $image;
    	                    $output .= "</span>";
    	                }
    		            $output .= "<span class='av_ajax_search_content'>";
    		            $output .= "    <span class='av_ajax_search_title'>";
    		            $output .=      get_the_title($post->ID);
    		            $output .= "    </span>";
    		            if ($excerpt !== '') {
    	                    $output .= "    <span class='ajax_search_excerpt'>";
    	                    $output .=      $excerpt;
    	                    $output .= "    </span>";
    	                }
    	          	}
    	            $output .= "</span>";
    	            $output .= "</a>";
    	        }
    	    }
    
    	    $output .= "<a class='av_ajax_search_entry av_ajax_search_entry_view_all' href='".$search_messages['all_results_link']."'>".$search_messages['view_all_results']."</a>";
    
    	    echo $output;
    	    die();
    	}
    }
    
    Tia
    Participant

    Hi
    I am designing a website locally to replace an existing site – meaning I have changed the hosts file on my laptop to access new hosting while leaving the current website live.
    The problem I have is that I want to download an enfold demo site to get started and it just says that the download failed when I try.
    Would it have anything to do with the fact that there is no SSL cert yet (the SSL cert is with the current live site)?

    Any tips would be appreciated.

    Kind regards
    Tia

    #1416984

    In reply to: Header on mobile

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1416983

    In reply to: Align blog images

    Hey sarthakchoudhary,
    Thank you for the link to your site, as I understand you want all of the images to be the same height, the images are in the background and the amount shown is based on the caption length, so we need to make all of the captions the same height, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .av-masonry-entry figcaption {
    	min-height: 235px;
    }

    After applying the css, please clear your browser cache and check.
    In my test this worked well for your page, but feel free to adjust if you wish.

    Best regards,
    Mike

    Hi Rikard,

    I followed you advice and all is good now, WordPress and the Enfold Theme are up-to-date now.
    Thanks.

    Best regards,
    Frank

    • This reply was modified 2 years, 8 months ago by Frank.
    #1416977

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1416976

    Hi,
    Ok, thanks for the login, I added a custom class to your contact form hidden-field
    Enfold_Support_3041.jpeg
    and then I added an Empty Line element to your form:
    Enfold_Support_3045.jpeg
    then I added this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    .hidden-field .av-form-empty-line {
    	display: none;
    }

    and now the button is as you wish:
    Enfold_Support_3047.jpeg
    Please clear your browser cache and check.
    If you want so extra space between the form and the button, remove the css I added, I was not sure how close you wanted the button.

    Best regards,
    Mike

    #1416973
    Lunaspace
    Participant

    Hi.
    I see a few threads about this issue but no real solutions yet. My site is running PHP 8, latest update of Enfold. New issue has appeared with the contact form:
    “This contact form is deactivated because you refused to accept Google reCaptcha service which is necessary to validate any messages sent by the form.”
    The cookie bar appears each time as if a new visitor. Also in enfold when one goes to check reCAPTCHA the “I’m not a robot” box appears that it works, but “save all changes” stuck on spinning wheel. The fonts in my site appear to have changed also.
    Please help?

    #1416972

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1416971

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1416959
    rixi
    Participant

    Hi,
    i have a problem with loading the fonts by the import of enfold. I would like to have two different fonts, the Headlines should be in another font. But its not possible to load both. The second font overwrites always the first font.
    Can you help me with that?

    Many greetings rixi

    #1416949
    Aviatist
    Participant

    Hello dear Enfoldteam,
    I would like to have the submenu of the main menu in full width. Unfortunately I have problems with different resolutions…. Can you give me a tip?

    Basically all submenus of the main menu on the desktop should be in full width.

    Greetings,
    Flo

    #1416948

    In reply to: Header on mobile

    Hi, yes I forgot it, it’s been added t the private content.

    I found a way to make it works but it might be the less optimized option.

    Below the quick CSS I added :

    /*Logo size mobile*/
    @media only screen and (max-width: 767px) {
    .responsive .logo img {
    margin: 0 auto;
    max-width: 200px !important;
    margin-left: -3px!important;
    margin-top: 18px!important;
    }
    }

    /*Transparent header in Mobile*/
    @media only screen and (max-width: 767px) {
    #top #wrap_all .av_header_transparency, .av_header_transparency #advanced_menu_toggle {
    background: transparent!important;
    position: absolute!important;
    }}

    /*white logo in mobile header*/
    @media only screen and (max-width: 767px) {
    .responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img {
    opacity: 0 !important;
    }
    .responsive #top .av_header_transparency .logo img.alternate {
    display: block !important;
    }}

    /*white burger in mobile header*/
    @media only screen and (max-width: 767px) {
    span.gold-rate-symbol,#top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a {
    color: #fff !important;
    }
    .html_mobile_menu_tablet .header_color div .av-hamburger-inner, .html_mobile_menu_tablet .header_color div .av-hamburger-inner::before, .html_mobile_menu_tablet .header_color div .av-hamburger-inner::after {
    background-color: #fff !important;
    }
    }

    @media only screen and (max-width: 991px) {
    .home #masthead-mobile {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: transparent;
    }}

    Thanks for your help ! I use enfold for my site since 4 years.

    #1416937
    limesolutions
    Participant

    Hi, I’m working on a new site and the enfold.child features (style.css and functions.php) don’t seem to work anymore. I have emptied the cache many times and looking at the source code the css file is not embedded. How is it possible?

    #1416928
    blende64
    Participant

    Hi

    A customer of us has a problem that when editing an ALB table element in Firefox 116 on Windows 10, the old values are displayed instead of new ones after exiting the cell. The customer does the following:
    1. Click on the table element in the ALB editor.
    2. Click into an arbitrary cell and change the value e.g. from “profile” to “profile 1”
    3. Click into another cell. The previously changed cell now displays the original value “profile”.
    4. Click on “Save” to close the table modal.
    5. Open the table element again. The previously changed cell now shows the new value “profile 1”.

    We cannot reproduce the problem. Also, the problem does not occur when the customer starts Firefox in Troubleshoot Mode. No errors are displayed in the Console. Do you have any idea what this could be due to or what the customer can do to solve the problem?

    The affected website runs WordPress 6.2.2 and uses Enfold 5.6.2.

    Many thanks

    #1416923

    In reply to: enfold theme update

    Hey Leyendecker,

    Please try following this: https://kriesi.at/documentation/enfold/theme-registration/

    If the updates should not come through via the theme backend, then please try to install and configure this plugin: https://envato.com/market-plugin/

    Best regards,
    Rikard

    #1416920

    Hey Lene,

    Thank you for the inquiry.

    Are you referring to the following thread? Please make sure that the code from the previous thread is present in the functions.php file before using the [social-bookmarks] shortcode.

    // https://kriesi.at/support/topic/social-media-icons-in-footer-8/#post-1397572

    You can also display social icons in the footer by enabling the Social Icons option in the Enfold > Footer panel.

    Best regards,
    Ismael

    #1416918

    OK, thanks so much — but it sounded to me like they said Elementor would replace the footer.php — “Please note that Elementor doesn’t just hook to WordPress functions. It declares its own theme locations and replaces the theme header.php and footer.php files.” — doesn’t that mean, as long as I’m using the Elementor footer, I don’t need to worry about the Enfold footer.php?

    #1416917

    Hey Michael F,

    Thank you for the inquiry.

    We have noticed that the site is using a very outdated version (4.7.6.5) of the theme, which is probably why the mega menu is not displaying correctly. To fix the issue, please download the latest version (5.6.5) of the theme, then upload it to the site via FTP.

    For more info on how to update the theme via FTP, please check the documentation below.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    #1416916

    Hi,


    @NonSuch
    We may need to access the site in order to better understand the issue. Please open another thread and post the login details in the private field. In the meantime, try to disable the cache plugin and temporarily turn off the Enfold > Performance > File Compression settings to see if it has any positive effect.

    Best regards,
    Ismael

    #1416905
    Leyendecker
    Guest

    I bought enfold theme version 4.5.2 in 2018 and now I really need to update it. Because with the new php version 8.1 the website no longer works. What to do? I am a beginner.

Viewing 30 results - 13,951 through 13,980 (of 244,601 total)