Viewing 30 results - 1,771 through 1,800 (of 16,893 total)
  • Author
    Search Results
  • #1374028

    Guys I love you.. yes yes it’s love :) “joke”

    Go Down to php 7.2 and it’s work again.
    I go Upload new version of Theme.
    I thought the theme was updating automatically.

    when finished I give news but thank you 100000 times already

    #1374025

    Hi,
    Thanks for the feedback, I see that your version of Enfold is v4.5 from 2018 this is not compatible with PHP v8+
    So please try changing your server PHP to v7.4 and restore your backup and do not update the WordPress version if asked until you have updated the theme first.
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    Proleaks
    Participant

    Hallo,
    seit ich letzte Woche mein Theme auf Enfold umgestellt habe, bekomme ich seitens Google massive Fehlermeldungen in Bezug auf die Seitenindexierung, die mit dem alten Themen nicht vorhanden waren:

    Screenshot

    In diversen Foren fand ich den Hinweis, die robots.txt File entsprechen anzupassen, um bestimmte Zugriffe einzugrenzen. Leider finde ich in der config.php jedoch keinen Hinweis [dfine( ‘DISALLOW_FILE_EDIT’, true );] auf das robots.txt File und im root Verzeichnis sehe ich es ebenfalls nicht.

    Meine Fragen wären:
    – Wäre die Herangehensweise via robots.txt die korrekte?
    – Was müsste dann im File enthalten sein?
    – Ist das File nur “versteckt” aufgrund von Berechtigungen (HostEurope) oder besteht die Möglichkeit, dass es fehlt. Wenn ja, kann ich es einfach erstellen und via FTP in das root Verzeichnis laden?

    Für eure Unterstützung wäre ich dankbar.

    VG
    Alex

    • This topic was modified 3 years, 4 months ago by Proleaks.
    • This topic was modified 3 years, 4 months ago by Proleaks.
    • This topic was modified 3 years, 4 months ago by Proleaks.
    • This topic was modified 3 years, 4 months ago by Proleaks.
    #1373990

    Hey Ad-Min747,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    if ( ! function_exists( 'wpse_custom_wp_trim_excerpt' ) ) : 
    
    	function wpse_custom_wp_trim_excerpt( $wpse_excerpt ) {
    
    	$raw_excerpt = $wpse_excerpt;
    		if ( '' == $wpse_excerpt ) {
    
    			$wpse_excerpt = get_the_content( '' );
    			$wpse_excerpt = strip_shortcodes( $wpse_excerpt );
    			$wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt );
    			$wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt );
    
    			//Set the excerpt word count and only break after sentence is complete.
    			$excerpt_word_count = 75;
    			$excerpt_length = apply_filters( 'excerpt_length', $excerpt_word_count ); 
    			$tokens = array();
    			$excerptOutput = '';
    			$count = 0;
    
    			// Divide the string into tokens; HTML tags, or words, followed by any whitespace
    			preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens );
    
    			foreach ( $tokens[0] as $token ) { 
    
    				if ( $count >= $excerpt_length && preg_match( '/[\,\;\?\.\!]\s*$/uS', $token ) ) { 
    					// Limit reached, continue until , ; ? . or ! occur at the end
    					$excerptOutput .= trim( $token );
    					break;
    				}
    
    				// Add words to complete sentence
    				$count++;
    
    				// Append what's left of the token
    				$excerptOutput .= $token;
    			}
    
    			$wpse_excerpt = trim( force_balance_tags( $excerptOutput ) );
    
    				$excerpt_end = ' <a href="'. esc_url( get_permalink() ) . '">' . ' » ' . sprintf( __( 'Read more about: %s  »', 'wpse' ), get_the_title() ) . '</a>'; 
    				$excerpt_more = apply_filters( 'excerpt_more', ' ' . $excerpt_end ); 
    
    				$wpse_excerpt .= $excerpt_more; /* Add read more in new paragraph */
    
    			return $wpse_excerpt;   
    
    		}
    		return apply_filters( 'wpse_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt );
    	}
    
    endif; 
    
    remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' );
    add_filter( 'get_the_excerpt', 'wpse_custom_wp_trim_excerpt' ); 

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1373951

    Hi,
    Sorry to hear you are having this trouble, I’m not sure why you are having this trouble because Enfold typically works fine with WP 6.1.1 and PHP 7.4, I have tested this and WP 6.1.1 and PHP 8.0 with no errors.
    I tried to clone your site to my test server and pushing the database seemed to work well because the backend was the same but the front end would not load and it gave no errors, so it makes me think that there is an error in the database, but I don’t know. What was the last working versions for this site?
    I see that you have woocommerce pages created but there is no woocommerce plugin, were you going to have it in the future?
    I see you have no posts and only 9 pages if you don’t count the woocommerce pages, so it seems that it would be easy enough to copy these to a fresh WP install.
    If this is correct I could help you do this to get your site back up and running, if you would like to try this, please check the SFTP password, as it didn’t work for me.
    Then create a new WP install in a new sub-directory on your domain and post an admin login and ensure the SFTP will also connect to this sub-directory and I will copy your pages over to the new install. Then after you review that the new install is working you can delete the old WP install and direct the domain to the new sub-directory.
    If it’s only 9 pages it should only take an hour to do this.

    Best regards,
    Mike

    #1373915
    wpexperto
    Participant

    i have installed the latest theme version 5.2.1 with latest wp version 6.1.1 and php 8
    i get critical error on theme option page
    the debug mode is activated, tried deactivating plugins etc but no luck.
    here is the log

    Fatal error: Uncaught TypeError: aviaPostCssManagement::handler_wp_save_post(): Argument #2 ($post) must be of type WP_Post, null given, called in /home/desarrollomastalento/www/wp-includes/class-wp-hook.php on line 308 and defined in /home/desarrollomastalento/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-post-css-management.php:385 Stack trace: #0 /home/desarrollomastalento/www/wp-includes/class-wp-hook.php(308): aviaPostCssManagement->handler_wp_save_post(0, NULL, false) #1 /home/desarrollomastalento/www/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(0, Array) #2 /home/desarrollomastalento/www/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #3 /home/desarrollomastalento/www/wp-includes/post.php(4717): do_action(‘save_post’, 0, NULL, false) #4 /home/desarrollomastalento/www/wp-content/themes/enfold/framework/php/class-media.php(70): wp_insert_post(Array) #5 /home/desarrollomastalento/www/wp-content/themes/enfold/framework/php/class-htmlhelper.php(765): avia_media::get_custom_post(‘Logo’) #6 /home/desarrollomastalento/www/wp-content/themes/enfold/framework/php/class-htmlhelper.php(252): avia_htmlhelper->upload(Array) #7 /home/desarrollomastalento/www/wp-content/themes/enfold/framework/php/class-htmlhelper.php(137): avia_htmlhelper->render_single_element(Array) #8 /home/desarrollomastalento/www/wp-content/themes/enfold/framework/php/class-adminpages.php(291): avia_htmlhelper->create_container_based_on_slug(Array, ‘avia_active_con…’) #9 /home/desarrollomastalento/www/wp-includes/class-wp-hook.php(308): avia_adminpages->render_page(”) #10 /home/desarrollomastalento/www/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(”, Array) #11 /home/desarrollomastalento/www/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/desarrollomastalento/www/wp-admin/admin.php(259): do_action(‘toplevel_page_a…’) #13 {main} thrown in /home/desarrollomastalento/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-post-css-management.php on line 385

    Hey Michael,

    Thank you for the inquiry.

    This is possible but you have to edit themes\enfold\config-templatebuilder\avia-shortcodes\section\section.php file directly and adjust the video parameters in the following code around line 1575.

    'attr'		=> array(
    													'id'				=> '',
    													'video'				=> $video ,
    													'slide_type'		=> 'video',
    													'video_mute'		=> true,
    													'video_loop'		=> true,
    													'video_ratio'		=> $video_ratio,
    													'video_controls'	=> 'disabled',
    													'video_section_bg'	=> true,
    													'video_format'		=> '',
    													'video_mobile'		=> '',
    													'video_mobile_disabled'	=> $video_mobile_disabled
    												)
    								);
    
    

    Set video_mute to true to disable autoplay, then enable the video_controls.

    Best regards,
    Ismael

    #1373795

    Hey Guenter,

    Please have a look at https://enfold.inoplugs.com/a-lightbox-test/

    I used the following filter:

    https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Images%20and%20Lightbox/avf_alb_lightbox_image_size.php

    and return ‘original’.

    As far as I see depending on screen width the largest image is loaded.

    By default it is ‘large’.

    Am I missing something.

    Best regards,
    Günter

    werbeagenturlauf
    Participant

    Hi @enfold!

    I get this news from WordPress. What can I do=

    Um deine Website zu schützen, läuft dieser Link in 1 Tag ab. Aber keine Sorge: Ein neuer Link wird dir per E-Mail zugeschickt, wenn der Fehler nach Ablauf der Frist erneut auftritt.
    Wenn du Hilfe bei diesem Problem suchst, wirst du möglicherweise nach einigen der folgenden Informationen gefragt:
    WordPress-Version 6.1.1
    Aktives Theme: Enfold Child (Version 1.0) Aktuelles Plugin: (Version ) PHP-Version 7.4.33
    Fehler Details
    ==============
    Ein Fehler vom Typ E_ERROR wurde in der Zeile 289 der Datei /var/www/vhosts/carsten-sauerbier.de/httpdocs/wp-content/themes/enfold/css/dynamic-css.php verursacht. Fehlermeldung: Allowed memory size of 134217728 bytes exhausted (tried to allocate 94208 bytes)

    #1373728
    BenDo
    Participant

    This occurs when trying to edit an existing page, so I don’t have access to the editor:

    Fatal error: Uncaught TypeError: Argument 1 passed to aviaElementTemplates::set_locked_attributes() must be of the type array, string given, called in /homepages/19/d935812178/htdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.php on line 1031 and defined in /homepages/19/d935812178/htdocs/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-element-templates.php:3766 Stack trace: #0 /homepages/19/d935812178/htdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.php(1031): aviaElementTemplates->set_locked_attributes(”, Object(avia_sc_slider_fullscreen), ‘av_fullscreen_s…’, Array, Array, ”) #1 /homepages/19/d935812178/htdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.php(1075): avia_sc_slider_fullscreen->get_element_styles(Array) #2 /homepages/19/d935812178/htdocs/wp-content/themes/enfold/config-templatebuilder/a in /homepages/19/d935812178/htdocs/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-element-templates.php on line 3766

    Markus
    Participant

    Hallo zusammen,
    vielleicht kennt der eine oder andere das Problem. Seit einiger Zeit bekomme ich von meinem WordPress eine E-Mail mit folgender Nachricht.

    Hallo!

    Seit WordPress 5.2 gibt es eine eingebaute Funktion, die erkennt, wenn ein Plugin oder ein Theme einen fatalen Fehler auf deiner Website verursacht, und dich deswegen mit dieser automatisierten E-Mail benachrichtigt.

    In diesem Fall hat WordPress einen Fehler in deinem Theme „Theme“ abgefangen.

    Besuche zunächst deine Website (https://meine-domain.de/) und überprüfe sie auf sichtbare Probleme. Besuche als nächstes die Seite, auf der der Fehler aufgetreten ist (https://meine-domain.de/wp-login.php) und prüfe, ob es sichtbare Probleme gibt.

    Bitte kontaktiere dein Hosting-Unternehmen, um Unterstützung bei der weiteren Untersuchung dieses Problems zu erhalten.

    Wenn deine Website fehlerhaft zu sein scheint und du nicht mehr wie gewohnt auf dein Dashboard zugreifen kannst, hat WordPress jetzt einen speziellen „Wiederherstellungsmodus“. Auf diese Weise kannst du dich sicher in deinem Dashboard anmelden und weitere Untersuchungen durchführen.

    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

    Um deine Website zu schützen, läuft dieser Link in 1 Tag ab. Aber keine Sorge: Ein neuer Link wird dir per E-Mail zugeschickt, wenn der Fehler nach Ablauf der Frist erneut auftritt.

    Wenn du Hilfe bei diesem Problem suchst, wirst du möglicherweise nach einigen der folgenden Informationen gefragt:
    WordPress-Version 6.1.1
    Aktives Theme: Enfold (Version 5.2.1)
    Aktuelles Plugin: (Version )
    PHP-Version 7.4.33

    Fehler-Details
    ==============
    Ein Fehler vom Typ E_ERROR wurde in der Zeile 17 der Datei/meine-domain.de/wp-content/themes/enfold/searchform.php verursacht. Fehlermeldung: Uncaught Error: Call to undefined function av_icon_char() in /meine-domain.de/wp-content/themes/enfold/searchform.php:17
    Stack trace:
    #0 /meine-domain.de/wp-includes/general-template.php(308): require()
    #1 /meine-domain.de/wp-content/themes/enfold/functions-enfold.php(162): get_search_form()
    #2 /meine-domain.de/wp-includes/class-wp-hook.php(308): avia_append_search_nav(‘

    #########################################################################################################################

    Hallo!

    Seit WordPress 5.2 gibt es eine eingebaute Funktion, die erkennt, wenn ein Plugin oder ein Theme einen fatalen Fehler auf deiner Website verursacht, und dich deswegen mit dieser automatisierten E-Mail benachrichtigt.

    In diesem Fall hat WordPress einen Fehler in deinem Theme „Theme“ abgefangen.

    Besuche zunächst deine Website (https://meine-domain.de/) und überprüfe sie auf sichtbare Probleme. Besuche als nächstes die Seite, auf der der Fehler aufgetreten ist (https://meine-domain.de/wp-login.php) und prüfe, ob es sichtbare Probleme gibt.

    Bitte kontaktiere dein Hosting-Unternehmen, um Unterstützung bei der weiteren Untersuchung dieses Problems zu erhalten.

    Wenn deine Website fehlerhaft zu sein scheint und du nicht mehr wie gewohnt auf dein Dashboard zugreifen kannst, hat WordPress jetzt einen speziellen „Wiederherstellungsmodus“. Auf diese Weise kannst du dich sicher in deinem Dashboard anmelden und weitere Untersuchungen durchführen.

    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

    Um deine Website zu schützen, läuft dieser Link in 1 Tag ab. Aber keine Sorge: Ein neuer Link wird dir per E-Mail zugeschickt, wenn der Fehler nach Ablauf der Frist erneut auftritt.

    Wenn du Hilfe bei diesem Problem suchst, wirst du möglicherweise nach einigen der folgenden Informationen gefragt:
    WordPress-Version 6.1.1
    Aktives Theme: Enfold (Version 5.2.1)
    Aktuelles Plugin: (Version )
    PHP-Version 8.1.2-1ubuntu2.8

    Fehler-Details
    ==============
    Ein Fehler vom Typ E_ERROR wurde in der Zeile 17 der Datei /meine-domain.de/wp-content/themes/enfold/searchform.php verursacht. Fehlermeldung: Uncaught Error: Call to undefined function av_icon_char() in /meine-domain.de/wp-content/themes/enfold/searchform.php:17
    Stack trace:
    #0 /meine-domain.de/wp-includes/general-template.php(308): require()
    #1 /meine-domain.de/wp-content/themes/enfold/functions-enfold.php(162): get_search_form()
    #2 /meine-domain.de/wp-includes/class-wp-hook.php(308): avia_append_search_nav()
    #3 /meine-domain.de/wp-includes/plugin.php(205): WP_Hook->apply_filters()
    #4 /meine-domain.de/wp-content/themes/enfold/framework/php/class-megamenu.php(663): apply_filters()
    #5 /meine-domain.de/wp-includes/nav-menu-template.php(164): avia_fallback_menu()
    #6 /meine-domain.de/wp-content/themes/enfold/includes/helper-main-menu.php(213): wp_nav_menu()
    #7 /meine-domain.de/wp-includes/template.php(785): require(‘…’)
    #8 /meine-domain.de/wp-includes/template.php(718): load_template()
    #9 /meine-domain.de/wp-includes/general-template.php(204): locate_template()
    #10 /meine-domain.de/wp-content/themes/enfold/header.php(268): get_template_part()
    #11 /meine-domain.de/wp-includes/template.php(783): require_once(‘…’)
    #12 /meine-domain.de/wp-includes/template.php(718): load_template()
    #13 /meine-domain.de/wp-includes/general-template.php(48): locate_template()
    #14 /meine-domain.de/wp-content/themes/enfold/404.php(9): get_header()
    #15 /meine-domain.de/wp-content/plugins/wp-cerber/cerber-load.php(4662): include(‘…’)
    #16 /meine-domain.de/wp-content/plugins/wp-cerber/cerber-load.php(2453): cerber_404_page()
    #17 /meine-domain.de/wp-content/plugins/wp-cerber/cerber-load.php(2395): cerber_access_control()
    #18 /meine-domain.de/wp-includes/class-wp-hook.php(308): {closure}()
    #19 /meine-domain.de/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters()
    #20 /meine-domain.de/wp-includes/plugin.php(517): WP_Hook->do_action()
    #21 /meine-domain.de/wp-settings.php(617): do_action()
    #22 /meine-domain.de/wp-config.php(116): require_once(‘…’)
    #23 /meine-domain.de/wp-load.php(50): require_once(‘…’)
    #24 /meine-domain.de/wp-login.php(12): require(‘…’)
    #25 {main}
    thrown

    WordPress wurde neu aufgesetzt und das Enfold mit der Version 5.2.1 installiert ohne es zu konfigurieren, also eine Grundinstallation mit dem Enfold Theme. Trotz dem sogenannten Fehler läuft die Seite einwandfrei.
    Ich würde gerne wissen wollen mit welchen Auswirkungen man rechnen muss.
    Wäre toll wenn jemand eine Lösung hätte.
    Gruß,
    Markus

    #1373569
    tremblayly
    Participant

    Hi
    I get several errors generated by the Enfold theme on my website diyjewellery.com
    This is causing very slow loading of the home page.

    Here’s the error found on the server the log:
    “PHP Fatal error: Uncaught Error: Call to undefined function is_product_category() in /nas/content/live/diyjewellery1/wp-content/themes/enfold-child/functions.php:9\nStack trace:\n#0 /nas/content/live/diyjewellery1/wp-includes/class-wp-hook.php(308): {closure}(Object(WP))\n#1 /nas/content/live/diyjewellery1/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array)\n#2 /nas/content/live/diyjewellery1/wp-includes/plugin.php(565): WP_Hook->do_action(Array)\n#3 /nas/content/live/diyjewellery1/wp-includes/class-wp.php(797): do_action_ref_array(‘wp’, Array)\n#4 /nas/content/live/diyjewellery1/wp-includes/functions.php(1332): WP->main(”)\n#5 /nas/content/live/diyjewellery1/wp-blog-header.php(16): wp()\n#6 /nas/content/live/diyjewellery1/index.php(17): require(‘/nas/content/li…’)\n#7 {main}\n thrown in /nas/content/live/diyjewellery1/wp-content/themes/enfold-child/functions.php on line 9″

    Can someone help figure out what’s happening please.

    Thank you
    Lyse

    #1373566

    Hey Hurricane,
    Thank you for the link to your site, Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function hide_title_attribute_on_hover() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
    	$('a').hover(function(e){
          $(this).attr('data-title', $(this).attr('title'));
          $(this).removeAttr('title');
      },
      function(e){
          $(this).attr('title', $(this).attr('data-title'));
      }); 
      $('img').hover(function(e){
          $(this).attr('data-title', $(this).attr('title'));
          $(this).removeAttr('title');
      },
      function(e){
          $(this).attr('title', $(this).attr('data-title'));
      }); 
       $('a.av-masonry-entry').hover(function(e){
          $(this).attr('data-title', $(this).attr('title'));
          $(this).removeAttr('title');
      },
      function(e){
          $(this).attr('title', $(this).attr('data-title'));
      }); 
      $('.av-masonry-image-container').hover(function(e){
          $(this).attr('data-title', $(this).attr('title'));
          $(this).removeAttr('title');
      },
      function(e){
          $(this).attr('title', $(this).attr('data-title'));
      }); 
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'hide_title_attribute_on_hover');

    This code it based on some shared by Guenni007 thanks 🙂.

    Best regards,
    Mike

    #1373409
    dimarok1
    Participant

    Hello,
    I cannot edit my old pages (created with older version of enfold theme), the avia layout builder section is permanently loading.
    However it works pretty well with new pages.
    I am using the Classic Editor plugin, PHP version: 7.4.33, Enfold 5.2.1 and latest version of WordPress.
    Many thanks

    #1373397
    Sarah Wo
    Guest

    Hi! A site we’d built years ago is using a child theme of Enfold version 3.0.8 and running php 5.6.4. We’d like to upgrade the php for security reasons but obviously the jump to php 7 is huge for the theme. What version would we need to maintain our child theme customizations and be able to utilize php 7?

    #1373379
    dimrat
    Participant

    I am using a plugin called Icegram but am running into this error when trying to use it.
    Notice: Trying to access array offset on value of type null in /home3/brighth7/public_html/dialhope/wp-content/plugins/auto-featured-image-from-title-pro/auto-featured-image-from-title-pro.php on line 182

    I have turned off all other plugins but the issue persists. I reached out to the plugin developer and they confirmed that this is an issue with the Enfold theme.

    Can you please help me debug this issue? Thank you!

    • This topic was modified 3 years, 5 months ago by dimrat.
    • This topic was modified 3 years, 5 months ago by dimrat.

    Hi Rickard, 
    I’m not really making much progress here….. (I’m not clear on why ID’s would be changed in Core Files? doesn’t that make having a child theme pointless?)
    Either way, I’ve followed the steps you suggested and it looks like there are significant differences in the elements (But I cannot find any of the below in the styles.css or footer/header.php files)

    An example of the OLD site element which is working correctly;

    <div class=”flex_column_table av-equal-height-column-flextable -flextable”><div class=”flex_column av_one_third  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding avia-link-column av-column-link first  avia-builder-el-8  el_after_av_one_full  el_before_av_one_third  row_courses column-top-margin” style=”border-radius:0px; ” data-link-column-url=”/what-we-do/#training–development”>

    And the UPDATED page element which is broken…… note the jumbled code in bold;

    <div class=”flex_column_table av-kcaecnmk-94c2af9e98a62e33180765e9ae58c909 sc-av_one_third av-equal-height-column-flextable”><div class=”flex_column av-kcaecnmk-94c2af9e98a62e33180765e9ae58c909 av_one_third  avia-builder-el-8  el_after_av_one_full  el_before_av_one_third  row_courses first flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding avia-link-column av-column-link column-top-margin” data-link-column-url=”/what-we-do/#training–development”>

    What I have found in the element inspector is that the issues with the updated site relate to;

    1. The “.flex_column.av-bg5p2-8b8a6aaa113dfa980309a10de497638b css in each column – This style DOES NOT show at all in the old site? When I remove the PADDING from this element in the Updated site…… the columns look 99% the same as in the old site &

    2. I removed “Position – inherit” from the “Find Out More” links row course css and that fixed that, so those 2 changes made the new site look 100% like the old.

    Can you help with the two points above?

    Your suggestion to test updates on a Staging site doesn’t really get us any closer to fixing the problem? I guess I could always just restore the live site from a backup and go back to the start, which I’m willing to do.

    OR we could use the staging site as the example of what IS working and update the Live site accordingly. Either way we’re still dealing with the same issues, which is what I’m trying to fix.

    Thanks in advance

    #1373288

    Topic: Can't access dashboard

    in forum Enfold
    trustedone
    Participant

    all of a sudden getting this error on login and can’t access anything to turn off

    Strict Standards: Static function aviaBuilder\base\aviaSubItemQueryBase::default_args() should not be abstract in /home/trusteda/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-sub-item-query-base.php on line 117

    Warning: Illegal string offset ‘default’ in /home/trusteda/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 220

    #1373207

    Hey Kathleen,
    Thanks for the login, try to disable your Must-use & Drop-ins plugins, this will need to be done from the server settings, you may need to ask the webhost to help:
    2022-11-19_073723.png
    these plugins are related to your server cache system, and since the pages don’t load with no errors, in fact they don’t stop trying to load, there seems to be a conflict in the srever cache.
    Also check your server logs.
    My test site uses WP 6.1.1 and PHP 7.4 with no errors, and also WP 6.1.1 and PHP 8.0 with no errors so I don’t think this is related to the theme solely, I think if you could clear the server cache and temporarily disable those plugins it would help.

    Best regards,
    Mike

    tlchase
    Participant

    Hi Enfold Support,

    I have updated to the latest version of WordPress and PHP and have updated the valid Envato private token on our site. We’ve been a long time customer and advocate for Enfold Theme and have several websites using Enfold each with a separate license of course at our institution.

    Please see below since the latest version of Enfold listed that we have is:
    Theme Updates
    No Updates available. You are running the latest version! (4.7.5)

    Is there any reason why the latest version 5.0+ isn’t available? It appears 4.7.5 is from 2 years ago.

    Thank you!

    #1373135

    Aloha Rikard,

    Message in WordPress re Theme Update:
    No Updates available. You are running the latest version! (4.6.3.1)
    Manual Update shows the same, no update available.

    PHP Your PHP version: 7.4.33
    When I update PHP the whole site crashes, and I need to go into recovery mode, and revert back, see the error messages in my initial post.

    This is my problem, I cannot update PHP and therefore the iThemes Security Pro plugin reports the theme to be a vulnerable software at every site scan since PHP 8 was released.

    Known Vulnerabilities
    Enfold Theme < 4.8.4 – Reflected Cross-Site Scripting (XSS)

    Any recommendations?
    Marion

    #1373133
    Wildwood
    Participant

    My Client’s Enfold Site does not load on the front end once WP and PHP were updated to
    6.1.1 and 7.4

    The site works with any other theme but Enfold.

    A fresh Enfold and child theme was brought in, but the issue still remains.
    Plugins deactivated.
    Sent to my developers … they concur that it is something with the theme.

    Please check.

    #1373108
    Anja Endlichhofer
    Guest

    Hallo zusammen,

    wenn ich es richtig gesehen habe, wurde von Host Europe diese Woche php 7.4 abgeschaltet.

    Ein Kunde von mir hatte über einen anderen Dienstleister das enfold Theme Version 4.5 auf deren Website installieren und einrichten lassen. Leider funktioniert es jetzt nicht mehr.

    Nach meinen Recherche liegt es an der inkompatiblen Version.

    Ist es möglich die bestehende Version zu aktualisieren? Und was würde dies Kosten?

    Beste Grüße
    Anja Endlichhofer

    #1373022
    FOTOstheimer
    Participant

    Hello,

    for a few days now my published Portfolio entries give me the error 404 “not found”. When changing their status to draft, no error occurs.

    I’m using enfold version 5.2.1.

    Could it be that the occurance of this issue has to do with my recent Update from php 7.4 to 8.0?

    May I ask for help?

    Thank you very much!

    #1372905
    conanv
    Participant

    Hello,
    I desesperatly try to upload a demo on Enfold theme, but there is a issue with all demo.
    First, I try with Enfold Parallax Demo, but, I have a issue : cURL error 28: Connection timed out.

    I would like to do manually import, but I didn’t find the Parallax Demo zip.

    Then I tried to import Démo Enfold 2017: same issue.
    So, I tried to import manually, by putting the folder enfold-2017, downloaded here : https://github.com/KriesiMedia/enfold-library/blob/master/demos/enfold-2017/enfold-2017.zip. I added “add_theme_support( ‘avia_demo_store_downloaded_files’ );” in file “functions.php” from the apparence theme editor.
    I try to import clicking (Enfold –> demo Import –> demo). Issue : “Demo Impor doesn’t work”

    My provider support said to me that Curl is ok on provider.

    Can I have some help, please.

    Sorry for this new topic, but I didn’t found solution in others topics.

    Have a good day

    #1372887

    Hi,

    Thank you for the update.

    It seems to be working correctly on our end. When we checked the page above, the document lands or scrolls exactly where the #grey section is. Please check the screenshot below.

    Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvy2bXWZ9Yc0B2A7F2?e=uneOst

    Do you want to adjust the landing position or increase the scroll offset? Adding this code in the functions.php file should help.

    function avf_header_setting_filter_mod($header) {
    	$header['header_scroll_offset'] = $header['header_scroll_offset'] + 100;
    	return $header;
    }
    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    

    Best regards,
    Ismael

    #1372843
    mhmhdev
    Participant

    Hi there
    out Hoster changed their php version to 8.1..8.0 is also been supported. But after the switch our site crashed and the typical critical WordPress error showed up. It seems that our enfold theme version 4.2.6 is not compatibel anymore with the new php version. For our site we also used an enfold child theme from it.

    I needed to change the theme in the database in order to simply get back to the WordPress Backend. So enfold theme is not activated at the moment, just a standard theme.

    Can you help?

    Ist seems like the same problem mentioned in this thread tims ago, that the update function did not work properly and so the theme ran out of updates -> https://kriesi.at/support/topic/php-7-4-enfold-new-version/

    Kind regards,
    Marius

    #1372838

    In reply to: Disable Emojis

    Hey ralfakerkhoff,
    Thanks for your question, when I test the disable emojis option in the Enfold Theme Options ▸ Performance settings the wp-emoji-release.min.js file is not loaded, perhaps you have a caching plugin that is still serving it, or perhaps you are also using caching on your webhost that you need to clear, or perhaps you are also using a CDN like cloudflare that you need to clear?
    Perahps there is a plugin that is conflicting with the theme setting, if none of these suggestions help try adding this function in your child theme functions.php:

    //Disable WordPress Emojis 
    add_action( 'init', 'smartwp_disable_emojis' );
    
    function smartwp_disable_emojis() {
     remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
     remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
     remove_action( 'wp_print_styles', 'print_emoji_styles' );
     remove_filter( 'the_content_feed', 'wp_staticize_emoji' );
     remove_action( 'admin_print_styles', 'print_emoji_styles' );
     remove_filter( 'comment_text_rss', 'wp_staticize_emoji' );
     remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' );
     add_filter( 'tiny_mce_plugins', 'disable_emojis_tinymce' );
    }
    
    function disable_emojis_tinymce( $plugins ) {
     if ( is_array( $plugins ) ) {
     return array_diff( $plugins, array( 'wpemoji' ) );
     } else {
     return array();
     }
    }

    If this doesn’t solve then include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    #1372833

    Hello,

    I’m having the same issue, using version 5.2.1. My published Portfolio entries give me the error 404 “not found”. When changing their status to draft, no error occurs.
    Could it be that the occurance of the issue has to do with my recent Update from php 7.4 to 8.0?

    Could you please help me?

    Thanks!

    • This reply was modified 3 years, 5 months ago by FOTOstheimer.
    #1372753

    Hi,
    You should use the PHP Snippet and ensure that you have it set to Active
    2022-11-16_001.png
    Then make sure to purge the cache and do a hard refresh after adding the filter.

    Best regards,
    Mike

Viewing 30 results - 1,771 through 1,800 (of 16,893 total)