Viewing 30 results - 2,491 through 2,520 (of 16,897 total)
  • Author
    Search Results
  • #1332970

    In reply to: PHP 8.1 critical error

    This reply has been marked as private.
    #1332967

    In reply to: PHP 8.1 critical error

    Hi,

    Thank you for the info.

    We enabled the debug mode and got a bunch of errors in the login page. One of the errors is related to the layer slider — it says here that the layer slider drafts does not exist in the database.

    Fatal error: Uncaught mysqli_sql_exception: Table ‘_vk7_layerslider_drafts’ doesn’t exist in wp-includes/wp-db.php:2056 Stack trace: #0 /home/l/i/ftp_linkbergdk/wp-includes/wp-db.php(2056): mysqli_query(Object(mysqli), ‘DESCRIBE …’) #1

    Did you remove the layer sliders? You may need to restore those entries from a backup if available.

    Best regards,
    Ismael

    #1332950

    Hi,

    Thank you for update.

    Have you tried editing the avia_blog.php file as instructed in this thread?

    // https://kriesi.at/support/topic/critical-error-9/#post-1327504

    Please check your child theme and make sure that the avia_blog.php file is not there. If it is, please remove it temporarily.

    Best regards,
    Ismael

    #1332930
    thinkjarvis
    Participant

    Hi Guys,

    I am working with a customer who is using the following code in functions.php to modify breadcrumb output:

    //advanced title + breadcrumb function
    if (!function_exists('avia_title')) {
    	function avia_title($args = false, $id = false)
    	{
    		global $avia_config;
    
    		if (!$id) $id = avia_get_the_id();
    
    		$header_settings = avia_header_setting();
    		if ($header_settings['header_title_bar'] == 'hidden_title_bar') return "";
    
    		$defaults 	 = array(
    
    			'title' 		=> get_the_title($id),
    			'subtitle' 		=> "", //avia_post_meta($id, 'subtitle'),
    			'link'			=> get_permalink($id),
    			'html'			=> "<div class='{class} title_container'><div class='container'>{heading_html}</div></div>{additions}",
    			'heading_html'	=> "<h1 class='main-title entry-title'>{title}</h1>",
    			'class'			=> 'stretch_full container_wrap alternate_color ' . avia_is_dark_bg('alternate_color', true),
    			'breadcrumb'	=> true,
    			'additions'		=> "",
    			'heading'		=> 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    		);
    
    		if (is_tax() || is_category() || is_tag()) {
    			global $wp_query;
    
    			$term = $wp_query->get_queried_object();
    			$defaults['link'] = get_term_link($term);
    		} else if (is_archive()) {
    			$defaults['link'] = "";
    		}
    
    		// Parse incomming $args into an array and merge it with $defaults
    		$args = wp_parse_args($args, $defaults);
    		$args = apply_filters('avf_title_args', $args, $id);
    
    		//disable breadcrumb if requested
    		if ($header_settings['header_title_bar'] == 'title_bar') $args['breadcrumb'] = false;
    
    		//disable title if requested
    		if ($header_settings['header_title_bar'] == 'breadcrumbs_only') $args['title'] = '';
    
    		// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
    		extract($args, EXTR_SKIP);
    
    		if (empty($title)) $class .= " empty_title ";
    		$markup = avia_markup_helper(array('context' => 'avia_title', 'echo' => false));
    		if (!empty($link) && !empty($title)) $title = $title;
    		if (!empty($subtitle)) $additions .= "<div class='title_meta meta-color'>" . wpautop($subtitle) . "</div>";
    		if ($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '>', 'richsnippet' => true));
    
    		if (!$title) $heading_html = "";
    		$html = str_replace('{heading_html}', $heading_html, $html);
    
    		$html = str_replace('{class}', $class, $html);
    		$html = str_replace('{title}', $title, $html);
    		$html = str_replace('{additions}', $additions, $html);
    		$html = str_replace('{heading}', $heading, $html);
    
    		if (!empty($avia_config['slide_output']) && !avia_is_dynamic_template($id) && !avia_is_overview()) {
    			$avia_config['small_title'] = $title;
    		} else {
    			return $html;
    		}
    	}
    }

    Since updating to Enfold 4.8.8 the following line is causing a fatal error.

    46 PHP Fatal error: Uncaught Error: Call to undefined function avia_breadcrumbs() in /nas/content/live/gagemathersstg/wp-content/themes/enfold-child/functions.php:85\nStac

    The line that is causing the problem is extracted below.

    if ($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '>', 'richsnippet' => true));

    If I remove the line the site is visible but breadcrumbs are no longer visible on any of the pages.

    Has avia_breadcrumbs been depreciated or changed in 4.8.8 or have there been any other changes to the breadcrumbs that we should know about to make them work again?

    I have rolled back the server to 4.7.1 for now just while I raise this issue so the client can still access the site.

    #1332921
    This reply has been marked as private.
    #1332850

    In reply to: PHP 7.3

    Hi,

    1- Could you please make sure you checked all required tokens that are listed here – https://kriesi.at/documentation/enfold/theme-registration/#toggle-id-5?

    2- Yes, you can upgrade PHP version to 7.3 :)

    Best regards,
    Yigit

    #1332844

    In reply to: PHP 7.3

    Also, now that the theme is updated to 4.8.8 is this now compatible with PHP 7.3? Just want to be sure before I change it over on SiteGround.

    #1332808

    Topic: PHP 7.3

    in forum Enfold
    moxisjc
    Participant

    Hi,
    I need to change my web hosting over to PHP 7.3 and want to be sure my version of the Enfold theme is compatible. It looks like I’m using Enfold 4.4 with a child theme that’s 0.1.0. Will it work or do I need to update Enfold? If so, can you walk me through how to do it?

    Thanks!
    Sandras

    #1332806

    Hi Yigit, sorry, but i don’t have time to put the website back to php 8 and give you access. I almost finished the new site and it has to go online this week. I only wanted you to now that there still is an error in wp-content/themes/enfold/includes/admin/option_tabs/avia_blog.php:311 with php 8.0. So you could check it. For me, it’s fine to work with php 7.4 for now. Best Regards, Corne

    #1332756
    kingsparadise
    Participant

    Dear Admin,
    I updated my website PHP version to 8.0 and my site break please see the attached email https://ibb.co/PcmDM2k. I could not do anything unless I switch back to PHP 7.4. my WordPress version is 5.8.2 and latest enfold version as at today is installed

    • This topic was modified 4 years, 4 months ago by kingsparadise.
    #1332731

    I also got the same error on PHP 8.0. (everything is woring on php 7.4) Everything is up-to-date. i found an earlyer blog item that this should be fixed in the new version. I have theme version 4.8.8 installed.

    WordPress versie 5.8.2
    Huidig thema: Enfold Child theme (versie 1.0.0) Huidige plugin: (versie ) PHP versie 8.0.13

    Foutdetails
    ===========
    Een fout van het type E_ERROR werd veroorzaakt op regelnummer 311 van het bestand /home/xxxxxxx/wp-content/themes/enfold/includes/admin/option_tabs/avia_blog.php. Foutmelding: Uncaught ValueError: Unknown format specifier “S” in /home/xxxxxx/wp-content/themes/enfold/includes/admin/option_tabs/avia_blog.php:311
    Stack trace:
    #0 /home/………/wp-content/themes/enfold/includes/admin/option_tabs/avia_blog.php(311): sprintf(‘Als u links naa…’, ‘

    • This reply was modified 4 years, 4 months ago by cvanberkel.

    Mystery solved… this a PHP 8 problem. I downgraded the site to PHP 7.4 and the RSS feed came back.
    Looks like there’s some code in my child functions.php which is causing problems.
    More info in private content.

    Thanks
    Rob

    goldengate415
    Participant

    Hi – I have long used the rss feed capability to trigger mailchimp to send an email to subscribers when a new blog post is published on my site. Sometime between Nov 17 and today that functionality broke. I am theorizing that it was either the switch to PHP 8 or the update to Enfold 4.8.8 which triggered this.
    If you go to http://www.thomashenthorne.com/rss or http://www.thomashenthorne.com/feed you see this error:

    This page contains the following errors:
    error on line 46 at column 60: Opening and ending tag mismatch: description line 44 and title
    Below is a rendering of the page up to the first error.
    Thomas Henthorne https://www.thomashenthorne.com Marin Real Estate: Find Marin homes for sale from your trusted Marin Realtor Sun, 12 Dec 2021 22:24:00 +0000 en-US hourly 1 https://wordpress.org/?v=5.8.2 https://i1.wp.com/www.thomashenthorne.com/wp-content/uploads/2016/02/cropped-Thomas-Henthorne-Top-Marin-Real-Estate-Agent.jpg?fit=32%2C32&ssl=1 Thomas Henthorne https://www.thomashenthorne.com 32 32 94920035 Marin County Real Estate Market Report December 2021 | Latest News https://www.thomashenthorne.com/marin-county-real-estate-market-news-december-2021/ https://www.thomashenthorne.com/marin-county-real-estate-market-news-december-2021/#respond Sun, 12 Dec 2021 22:21:42 +0000 https://www.thomashenthorne.com/?p=17325

    • This topic was modified 4 years, 4 months ago by goldengate415.
    #1332689

    Hey Kyle,

    Thank you for the inquiry.

    Looks like the read more button’s link doesn’t go through the same content filter function unlike the link used in the post image. Please try to modify the config-templatebuilder/avia-shortcodes/postslider/postslider.php file and look for this code around line 723.

    	$permalink = '<div class="read-more-link"><a href="' . get_permalink( $the_id ) . '" class="more-link">' . __( 'Read more', 'avia_framework' ) . '<span class="more-link-arrow"></span></a></div>';
    

    Replace the get_permalink( $the_id ) function with $link, then move it below this code.

    	if( $format == 'link' )
    					{
    						$current_post = array();
    						$current_post['content'] = $entry->post_content;
    						$current_post['title'] = avia_wp_get_the_title( $entry );
    
    						if( function_exists( 'avia_link_content_filter' ) )
    						{
    							$current_post = avia_link_content_filter( $current_post );
    						}
    
    						$link = $current_post['url'];
    					}
    

    Best regards,
    Ismael

    Hi Team,

    I have fixed this issue by own. Actually I have achieved this task by your provided documentation for Manual upload of Demo import.
    Here is the link – https://kriesi.at/documentation/enfold/import-demos/
    Process:
    1. Add this code in Function.php of enfold theme add_theme_support( ‘avia_demo_store_downloaded_files’ );
    2. Download the zip file of the demo you would like to import from https://github.com/KriesiMedia/enfold-library/tree/master/demos
    3. Extract it in wp-content \uploads\avia_demo_files\ folder. If you are importing Enfold 2017 demo, files should be extracted inside \enfold-2017\ so it should look as \uploads\avia_demo_files\enfold-2017\
    4. Go to Enfold theme options > Demo Import and import the demo.

    Very easy step but 1 thing I don’t like is if I purchased this theme still I have to dp this manual process I hope support will fix this issue for their future customers.

    Regards,
    Manav

    • This reply was modified 4 years, 4 months ago by Insyrge.
    #1332641

    Dear Guenni007, your help is very much appreciated
    I have a modest capability in PHP and in ordinary times I like this kind of challenges and going through something that is not exactly on the point of a mouse, but I was in the urge to modify the homepage with the banner for Christmas holiday that had to be done that very day without delay

    Thank also to Mike that made the thread readable and easily feasible also for not techs, and especially for the submission to the Dev Team

    Mauro

    #1332608

    I reverted back to PHP 7.4 and I have +/- 8 websites with the same issue

    #1332605
    Yannick77
    Participant

    I already had critical errors in some Enfold (only dutch) installs with version 4.8.7.1 and php 8.0 hosted on one.com
    When I downgraded to php 7.4 evrything was OK. (more or less because I had to go back to PHP 7.4)

    Now with the new 4.8.8 release I was hopefull the issues would e resolved.
    But again a critical error

    Een fout van het type E_ERROR werd veroorzaakt op regelnummer 311 van het bestand /customers/2/5/8/vahconsulting.be/httpd.www/wp-content/themes/enfold/includes/admin/option_tabs/avia_blog.php. Foutmelding: Uncaught ValueError: Unknown format specifier “S” in /customers/2/5/8/vahconsulting.be/httpd.www/wp-content/themes/enfold/includes/admin/option_tabs/avia_blog.php:311
    Stack trace:
    #0 /customers/2/5/8/vahconsulting.be/httpd.www/wp-content/themes/enfold/includes/admin/option_tabs/avia_blog.php(311): sprintf(‘Als u links naa…’, ‘

    • This topic was modified 4 years, 4 months ago by Yannick77.
    #1332592

    Hi Rikard,

    Hi,

    I made a new WordPress installation and installed the latest Enfold version (4.8.8) on it. Unfortunately, it still goes wrong i.c.w. the Dutch language and PHP 8. I had to change the account back to PHP 7.4 to keep the site working.

    I had to put this line (line 311) in /includes/admin/option_tabs/avia_blog.php to get the site on PHP 8.

    $prof_desc = sprintf( __( ‘If you added Social Profile Links at %sSocial Profiles Tab%s the theme allows you to display these profile links at the bottom of your blog posts.’, ‘avia_framework’ ), ‘‘, ‘‘ );
    $prof_desc .= __( ‘Be sure you added a link, otherwise your selection will be ignored.’, ‘avia_framework’ );

    I had hoped that an update would fix this bug, because there are quite a few Dutch sites that go down this way.

    Zou je dat alsnog kunnen doorgeven? Want ik moet nodig de verschillende sites van onze klant updaten.

    Regards,
    Frans

    #1332553

    In reply to: Uploads & Dynamic Avia

    Hello,

    I have similar issue :

    root@vps764961:/var/www/vhosts/philopsis.fr/httpdocs/wp-content/uploads/dynamic_avia# ls -l
    total 652528
    -rw-r–r– 1 webmaster psacln 222997 déc. 12 18:50 avia-footer-scripts-5293d1ecca0d9406b64c8d917a7bd7b6—61b6364ed112d.js
    -rw-r–r– 1 webmaster psacln 222997 déc. 12 18:51 avia-footer-scripts-5293d1ecca0d9406b64c8d917a7bd7b6—61b636b936caa.js
    -rw-r–r– 1 webmaster psacln 222997 déc. 12 18:52 avia-footer-scripts-5293d1ecca0d9406b64c8d917a7bd7b6—61b636cc6a6c7.js
    -rw-r–r– 1 webmaster psacln 222997 déc. 12 18:52 avia-footer-scripts-5293d1ecca0d9406b64c8d917a7bd7b6—61b636cd4611a.js
    -rw-r–r– 1 webmaster psacln 222997 déc. 12 18:52 avia-footer-scripts-5293d1ecca0d9406b64c8d917a7bd7b6—61b636e224295.js
    -rw-r–r– 1 webmaster psacln 222997 déc. 12 18:52 avia-footer-scripts-5293d1ecca0d9406b64c8d917a7bd7b6—61b636f725477.js
    -rw-r–r– 1 webmaster psacln 222997 déc. 12 18:53 avia-footer-scripts-5293d1ecca0d9406b64c8d917a7bd7b6—61b6371aa8f2f.js

    -rw-r–r– 1 webmaster psacln 515977 déc. 13 10:03 avia-merged-styles-979cc56f9fb3ca48fcbfe935d146ce89—61b70c70434c2.css
    -rw-r–r– 1 webmaster psacln 515977 déc. 13 10:04 avia-merged-styles-979cc56f9fb3ca48fcbfe935d146ce89—61b70c9aa0dee.css
    -rw-r–r– 1 webmaster psacln 515977 déc. 13 10:05 avia-merged-styles-979cc56f9fb3ca48fcbfe935d146ce89—61b70ce880778.css
    -rw-r–r– 1 webmaster psacln 515977 déc. 13 10:05 avia-merged-styles-979cc56f9fb3ca48fcbfe935d146ce89—61b70cefa4a7d.css
    -rw-r–r– 1 webmaster psacln 515977 déc. 13 10:07 avia-merged-styles-979cc56f9fb3ca48fcbfe935d146ce89—61b70d3f53b5c.css
    -rw-r–r– 1 webmaster psacln 515977 déc. 13 10:09 avia-merged-styles-979cc56f9fb3ca48fcbfe935d146ce89—61b70db71f6d2.css
    -rw-r–r– 1 webmaster psacln 515977 déc. 13 10:10 avia-merged-styles-979cc56f9fb3ca48fcbfe935d146ce89—61b70e0c4cc3a.css
    -rw-r–r– 1 webmaster psacln 228014 déc. 12 18:50 avia-merged-styles-dcbe46bc8b20f54aa571ea7bd75ad692—61b6366e391bf.css
    -rw-r–r– 1 webmaster psacln 228014 déc. 12 18:50 avia-merged-styles-dcbe46bc8b20f54aa571ea7bd75ad692—61b63672d1351.css
    -rw-r–r– 1 webmaster psacln 132970 déc. 12 18:49 enfold_child.css
    -rw-r–r– 1 webmaster psacln 130027 déc. 12 18:50 enfold.css
    -rw-r–r– 1 webmaster psacln 64 déc. 12 18:38 index.php

    My WP version is the latest 5.8.8.
    Waht can I do now as it fulfills my filesystem in few days ?

    Thanks for your help

    • This reply was modified 4 years, 4 months ago by kumharas.
    #1332538

    Hi Mike, thanks for your answer

    but it is not a WordPress Admin login so we can not see the backend of your site, please include.

    to login, you must click on “Il mio profilo” and put user and pass.
    See image.

    I see that you have moved your cart to outside of your nav.main_menu I assume you have done this with a script…

    to do this, I have simply use the Enfold option: Header Shopping Cart Icon = Always Display floating on the side.

    if this is true then you can ignore the error because /enfold/config-woocommerce/config.php line:2232 is a check that the cart is visible in the correct place, which your is not:

    Sorry but I do not understand :(
    I use a simple setting of the Enfold setting. And this same setting, creates an error warning ??
    I do not understand :(

    Best regards.
    Oriano

    Sujohn
    Participant

    After the latest enfold theme update my site would not display any pages apart from the home page

    The web hosts flagged up the error as in the private content below.

    I removed the following code (as per https://kriesi.at/documentation/enfold/breadcrumbs/)
    from my child theme functions PHP file
    ————————————-

    ——————————————-

    and my site is now back up but I am stuck with no breadcrumbs and the av_breadcrumbs shortcode displayed at the top of each page.

    I use the short code in a code block on each page to display the breadcrumbs
    [ av_breadcrumbs ]

    The error can be repeated. Put the code back into functions php the site is broken – take it out it is back up.

    I see one other person may have had this problem.

    • This topic was modified 4 years, 4 months ago by Yigit.
    • This topic was modified 4 months ago by Yigit.
    • This topic was modified 4 months ago by Yigit.
    #1332475
    jetztonline
    Participant

    Hi there,
    when migrating to the new PHP version 7.4, Enfold displays error messages. So I have to buy the theme again and upload it, right?

    But I’m worried that data (e.g. images) and, above all, all of the original settings will then be lost; So the theme settings and the individual page settings that were made with the Layout Builder.

    If I upload the newly purchased Enfold theme via FTP and delete the old one via FTP, will the settings be retained? Does this approach work as described or not?

    Thanks for your support.


    in german:

    Hallo,
    bei der Umstellung auf die neue PHP Version 7.4 zeigt Enfold Fehlermeldungen an. Ich muss das Theme daher neu kaufen und hochladen, richtig?

    Ich mache mir aber Sorgen, dass dann Daten (z.B. Bilder) und vor allem die ganzen ursprünglichen Einstellungen verloren gehen; also die Theme-Einstellungen und die individuellen seiteneinstellungen, die mit dem Layout Builder gemacht wurden.

    Wenn ich das neu gekaufte Enfold Theme über FTP hochlade und das alte über FTP rauslösche, bleiben dann die Einstellungen erhalten? Funktioniert diese Vorgehensweise so wie beschrieben oder nicht?

    Vielen Dank für Ihre Unterstützung.

    • This topic was modified 4 years, 4 months ago by jetztonline.
    profumopuntoit
    Participant

    Hello,
    I was testing in my staging environment Version 4.8.8, but I got the following Fatal Error in class-asset-manager.php
    Error goes away if I disable in the performance options JavaScript files merging and compression
    I tried to clear enfold CSS AN JS cache and re-enable file merging, but error return
    ########################################
    Fatal error: Uncaught Error: Attempt to assign property “src” on null in /www/sufiit_944/public/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-asset-manager.php:880 Stack trace: #0 /www/sufiit_944/public/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-asset-manager.php(289): aviaAssetManager->try_deregister_scripts(‘avia-footer-scr…’) #1 /www/sufiit_944/public/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-asset-manager.php(112): aviaAssetManager->merge(‘js’, ‘avia-footer-scr…’, Array) #2 /www/sufiit_944/public/wp-includes/class-wp-hook.php(303): aviaAssetManager->minimize_footer_scripts(”) #3 /www/sufiit_944/public/wp-includes/class-wp-hook.php(327): WP_Hook->apply_filters(NULL, Array) #4 /www/sufiit_944/public/wp-includes/plugin.php(470): WP_Hook->do_action(Array) #5 /www/sufiit_944/public/wp-includes/script-loader.php(2066): do_action(‘wp_print_footer…’) #6 /www/sufiit_944/public/wp-includes/class-wp-hook.php(303): wp_print_footer_scripts(”) #7 /www/sufiit_944/public/wp-includes/class-wp-hook.php(327): WP_Hook->apply_filters(NULL, Array) #8 /www/sufiit_944/public/wp-includes/plugin.php(470): WP_Hook->do_action(Array) #9 /www/sufiit_944/public/wp-includes/general-template.php(3031): do_action(‘wp_footer’) #10 /www/sufiit_944/public/wp-content/themes/enfold/footer.php(333): wp_footer() #11 /www/sufiit_944/public/wp-includes/template.php(770): require_once(‘/www/sufiit_944…’) #12 /www/sufiit_944/public/wp-includes/template.php(716): load_template(‘/www/sufiit_944…’, true, Array) #13 /www/sufiit_944/public/wp-includes/general-template.php(92): locate_template(Array, true, true, Array) #14 /www/sufiit_944/public/wp-content/themes/enfold/page.php(56): get_footer() #15 /www/sufiit_944/public/wp-includes/template-loader.php(106): include(‘/www/sufiit_944…’) #16 /www/sufiit_944/public/wp-blog-header.php(19): require_once(‘/www/sufiit_944…’) #17 /www/sufiit_944/public/index.php(17): require(‘/www/sufiit_944…’) #18 {main} thrown in /www/sufiit_944/public/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-asset-manager.php on line 880

    Thank you
    Mauro

    #1332437

    Hi,

    @profumopuntoit
    please take another look at @Guenni007’s “section-link” solution above as it does what you originally asked for:

    I thought that a Color section with just a background image could be the solution

    and it only has three steps:
    1: add the script to your functions.php file.
    2021-12-11_009.jpg
    2: and your background image and a custom class “section-link” to a color section.
    2021-12-11_010.jpg
    3: add a code block section to the color section with the link you wish to use.
    2021-12-11_012.jpg
    2021-12-11_011.jpg
    quite easy and works great, thank you for sharing @Guenni007
    2021-12-11_013.jpg
    So while we do not have a built-in option right now, this is a good solution you should try, I have submited a feature request to the Dev Team for a full width option in the image element, for their review.

    Best regards,
    Mike

    #1332404

    Sorry, no good news. I have activated the Captcha plugin and I got again the error:

    Ein Fehler vom Typ E_ERROR wurde in der Zeile 390 der Datei /home/.sites/148/site1392455/web/2021/wp-content/themes/enfold/includes/helper-privacy.php verursacht. Fehlermeldung: Uncaught ValueError: setcookie(): Argument #1 ($name) cannot contain “=”, “,”, “;”, ” “, “\t”, “\r”, “\n”, “\013”, or “\014″ in /home/.sites/148/site1392455/web/2021/wp-content/themes/enfold/includes/helper-privacy.php:390
    Stack trace:
    #0 /home/.sites/148/site1392455/web/2021/wp-content/themes/enfold/includes/helper-privacy.php(390): setcookie(‘,_wordpress_tes…’, ‘false’, Array)
    #1 /home/.sites/148/site1392455/web/2021/wp-includes/class-wp-hook.php(303): av_privacy_class->handler_manage_cookies(”)
    #2 /home/.sites/148/site1392455/web/2021/wp-includes/class-wp-hook.php(327): WP_Hook->apply_filters(1, Array)
    #3 /home/.sites/148/site1392455/web/2021/wp-includes/plugin.php(470): WP_Hook->do_action(Array)
    #4 /home/.sites/148/site1392455/web/2021/wp-settings.php(600): do_action(‘wp_loaded’)
    #5 /home/.sites/148/site1392455/web/2021/wp-config.php(129): require_once(‘/home/.sites/14…’)
    #6 /home/.sites/148/site1392455/web/2021/wp-load.php(50): require_once(‘/home/.sites/14…’)
    #7 /home/.sites/148/site1392455/web/2021/wp-login.php(12): require(‘/home/.sites/14…’)
    #8 {main}
    thrown

    It looks like it is an error from the theme.
    Maybe you have any ideas?
    Best regards
    Barbara

    #1332319

    In reply to: PHP8 issues

    Thanks Yigit!!


    @Guenni007
    if it was a bug that was triggered on every Enfold site out there no matter the server configuration it already would have been fixed of course.. Over the past years I probably build over 200 Enfold sites with my buddies and most of em are doing fine on php8..

    #1332301
    Leon
    Participant

    When using de_DE_formal in WPML then Enfold has some invalid translations.
    When looking into enfold/lang/de_DE_formal.po line 23094 it says:

    #: functions-enfold.php:328 includes/loop-author.php:197
    #: includes/loop-index.php:538
    msgid "Sorry, no posts matched your criteria"
    msgstr "Entschuldigung, aber kein Eintrag erfüllt Deine Suchkriterien"

    instead of “Entschuldigung, aber kein Eintrag erfüllt Deine Suchkriterien” it should be “Entschuldigung, aber kein Eintrag erfüllt Ihre Suchkriterien”. It seems like translations were copied from de_DE instead of de_DE_formal. It would be nice if this could be fixed globally.

    #1332300
    zsuzsamoricz
    Participant

    When I switch back to a basic theme everything works fine.

    Why can I use Gutenberg with Enfold?

    Editing a post sometimes also shows a blank page.

    WP, Enfold is the newest, php 7.3

    • This topic was modified 4 years, 4 months ago by zsuzsamoricz.
    #1332173
    orianos
    Participant

    Hello,
    On this site, clueb.it, in the Woocommerce logs I frequently have this error:
    = = = = =
    2021-12-09T06:08:58+00:00 CRITICAL Uncaught Error: Call to a member function get_cart() on null in /var/www/html/wp-content/themes/enfold/config-woocommerce/config.php:2232
    Stack trace:
    #0 /var/www/html/wp-includes/class-wp-hook.php(303): avia_woocommerce_cart_pos()
    #1 /var/www/html/wp-includes/plugin.php(189): WP_Hook->apply_filters()
    #2 /var/www/html/wp-content/themes/enfold/functions-enfold.php(1619): apply_filters()
    #3 /var/www/html/wp-content/themes/enfold/header.php(32): avia_header_class_string()
    #4 /var/www/html/wp-includes/template.php(770): require_once(‘/var/www/html/w…’)
    #5 /var/www/html/wp-includes/template.php(716): load_template()
    #6 /var/www/html/wp-includes/general-template.php(48): locate_template()
    #7 /var/www/html/wp-content/themes/enfold/404.php(9): get_header()
    #8 /var/www/html/wp-includes/template-loader.php(106): include(‘/var/www/html/w…’)
    #9 /var/www/html/wp-blog-header.php(19): require_once(‘/var/www/html/w…’)
    #10 /var/www/html/index.php(17): require(‘/var/www/html/w…’)
    #11 {main}
    thrown in /var/www/html/wp-content/themes/enfold/config-woocommerce/config.php alla riga 2232
    = = =

    Could this error be the cause of frequent “Pending Payment on WooCommerce”?
    What can I do to fix?

    Best regards
    Oriano

Viewing 30 results - 2,491 through 2,520 (of 16,897 total)