Viewing 30 results - 1 through 30 (of 107 total)
  • Author
    Search Results
  • #1464228

    Topic: bug

    in forum Enfold
    AlexW22
    Participant

    Hello,
    i had problems editing my page.
    I got someone to fix it with a patch. however the patch will not work when updated next.
    Please check the info and try to fix it for future updates.
    Looking forward to your reply!

    here is the problem:

    Regarding the issue, the currently installed Enfold theme (Version: 5.6.10 ) Child (Version: 1.0.0 ) isn’t prepared when a table’s row doesn’t have a “row_style” attribute. So when the “row_style” is empty, it’s causing the critical error. For now, I’ve patched the Enfold theme so it will work, even when the “row_style” is empty. Below is the path to the file I patched:

    wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.php

    I replaced these lines:
    if( strpos( $ul[‘attr’][ $key ][‘row_style’], ‘avia-pricing-row’ ) !== false )
    {
    $content = preg_replace( ‘!(\$|€|¥|£|¢|¤|%|‰|¢|¤|£|¥|€)!’ , ‘<span class=”currency-symbol”>$1</span>’, $content );
    }

    $output .= “<li class='{$ul[‘attr’][$key][‘row_style’]}’>”;

    ==========

    With these lines:
    if ( empty($ul[‘attr’][ $key ][‘row_style’]) ) {
    $output .= “

  • “;
    } else {
    if( strpos( $ul[‘attr’][ $key ][‘row_style’], ‘avia-pricing-row’ ) !== false )
    {
    $content = preg_replace( ‘!(\$|€|¥|£|¢|¤|%|‰|¢|¤|£|¥|€)!’ , ‘<span class=”currency-symbol”>$1</span>’, $content );
    }

    $output .= “<li class='{$ul[‘attr’][$key][‘row_style’]}’>”;
    }

    Might be worth raising this issue to the Enfold theme, so they’ll fix this in future versions. Because as of now, if you update the Enfold theme, this patch will be overwritten.

#1462755

Hi,

I think the childtheme table.php is not needed as we can trigger this by giving the data table the custom class: sortable

Yes, editing or overriding the table.php file in the child theme is not necessary. Thank you for the info.

Best regards,
Ismael

#1462741

I think the childtheme table.php is not needed as we can trigger this by giving the data table the custom class: sortable
I have tested this and there should be no problems for standard tables.
______________

Unfortunately, it looks different for tables that are to be sorted by date. As long as you use standard english date formats you are probably on the safe side. Unfortunately, in Germany we like to use the dot as a separator and the month names are of course different.
So e.g. 16. Mai 1962 etc. is then not sorted correctly.

here is my snippet to give to each td under a “Datum” ( my trigger heading word )

see solution on the next posting

However, this does not have the desired result either, because here too, for example, local date format entries are not taken into account. The result is that a NaN is returned for e.g. Mai / Dez etc or 16.05.2001.

Or in other words – how do we get a date field to have a sorttable_customkey attribute in the form yyyymmdd ?
and that with a given local date formate like 16. Mai 2001

#1370389
dimrat
Participant

After updating this site: https://www.dialhope.org/, we are now seeing this error on our Icegram plugin:

Argument 1 passed to Avia_Gutenberg::handler_display_post_states() must be of the type array, bool given, called in /home3/brighth7/public_html/dialhope/wp-includes/class-wp-hook.php on line 307 and defined in /home3/brighth7/public_html/dialhope/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:693 Stack trace: #0 /home3/brighth7/public_html/dialhope/wp-includes/class-wp-hook.php(307): Avia_Gutenberg->handler_display_post_states(false, Object(WP_Post)) #1 /home3/brighth7/public_html/dialhope/wp-includes/plugin.php(191): WP_Hook->apply_filters(false, Array) #2 /home3/brighth7/public_html/dialhope/wp-admin/includes/template.php(2249): apply_filters(‘display_post_st…’, Array, Object(WP_Post)) #3 /home3/brighth7/public_html/dialhope/wp-admin/includes/template.php(2150): get_post_states(Object(WP_Post)) #4 /home3/brighth7/public_html/dialhope/wp-admin/includes/class-wp-posts-list-table.php(1107): _post_states(Object(WP_Post)) #5 /home3/brighth7/public_html/dialhope/wp-admin/ in /home3/brighth7/public_html/dialhope/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php on line 693

I have looked at several threads in this forum and it appears to be a known issue. i have tried to turn off all plugins, tried classic and block editor modes, cleared cache.

I went into to Enfold theme’s config-gutenberg -> class-avia-gutenberg.php file and changed the 99 to 5 on this line of code as seen in on of your threads (https://kriesi.at/support/topic/error-enfold-with-plugin-salon-booking-wordpress-plugin/).

LINE 210: add_filter( ‘display_post_states’, array( $this, ‘handler_display_post_states’), 99, 2 );

I even see that with your latest update, you have a snippet of code (LINES: 695 – 718) in this file to address this specific issue. But the error persists on my site.

This site is running on the following versions:
php 7.4.30
WP 6.0
Enfold Theme 5.2.1.

Can you please let me know if there is anything else I can try?

  • This topic was modified 2 years, 5 months ago by dimrat.
#1356236

Hi bonsaimedia,

Yes, it’s possible however, you’ll need to use a child theme first, if you have already have a child theme, skip this step:
You can download and find instructions for it here: https://kriesi.at/documentation/enfold/child-theme/
Make sure to follow the 4 steps under Install a child theme from your WordPress dashboard.

Once you have installed and activated the child theme, do the following steps:
1. Add this code in your child theme’s functions.php file (if you already have a child theme, and already had this code do not add it):

/**
 *	Add filter to add or replace Enfold ALB shortcodes with new folder contents
 *	
 *	Note that the shortcodes must be in the same format as those in 
 *	enfold/config-templatebuilder/avia-shortcodes
 *
 *	@link http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
 * 
 * @param array $paths
 * @return array
 */
function avia_include_shortcode_template( $paths )
{
	if( ! is_array( $paths ) )
	{
		$paths = array();
	}
	
	$template_url = get_stylesheet_directory();
	array_unshift( $paths, $template_url . '/shortcodes/' );

	return $paths;
}

add_filter( 'avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1 );

2. Go to wp-content/enfold/config-templatebuilder/avia-shortcodes/ and copy the table folder, then go to the child theme and create a new folder and name it shortcodes and paste the table folder inside it. Inside the table folder, edit table.php and go to line 486 (this is the code on that line):

'avia-data-table',

below it, add this code:

'sortable',

3. Download this file https://www.kryogenix.org/code/browser/sorttable/sorttable.js and in your child theme, create another folder called js, inside it upload the file you just downloaded.

4. Then in your child theme’s functions.php, add this code:

function add_sorttablejs() {
    wp_enqueue_script( 'kryogenix-sorttable', get_stylesheet_directory_uri().'/js/sorttable.js', array('jquery'), 2, true );
}
add_action( 'wp_enqueue_scripts', 'add_sorttablejs', 100 );

Hope this helps.
If you need assistance, just let us know.

Best regards,
Nikko

Ali Darwich
Guest

Hello Christian!

My name is Ali and I work in the support team for The Events Calendar plugin:

The Events Calendar

We recently received reports of the following issue appearing when updating their plugins to the latest version:

An error of type E_ERROR was caused in line 558 of the file /home1/avondam6/public_html/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php. Error message: Uncaught Error: Call to undefined function gutenberg_can_edit_post() in /home1/avondam6/public_html/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:558

Stack trace:

#0 /home1/avondam6/public_html/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php(721): Avia_Gutenberg->can_use_block_editor(Object(WP_Post))

#1 /home1/avondam6/public_html/wp-includes/class-wp-hook.php(303): Avia_Gutenberg->handler_add_edit_link(Array, Object(WP_Post))

#2 /home1/avondam6/public_html/wp-includes/plugin.php(189): WP_Hook->apply_filters(Array, Array)

#3 /home1/avondam6/public_html/wp-admin/includes/class-wp-posts-list-table.php(1526): apply_filters(‘post_row_action…’, Array, Object(WP_Post))

#4 /home1/avondam6/public_html/wp-content/plugins/events-calendar-pro/src/Tribe/Admin/Manager/Events_Table.php(61): WP_Posts_List_Table->handle_row_actions(Object(WP_Post), ‘title’, ‘title’)

#5 /home1/avondam6/public_html/wp-content/plugins/events-calendar-pro/src/Tribe/Admin/Manager/Shortcode.php(316): Tribe

So I was wondering if there’s a chance you could provide us with a developer’s license or something similar to look into this and hopefully improve our integration with your theme?

I’ll be looking forward to your reply.

Thanks!
-Ali

Annegretadmin
Participant

hallo everyone!
We are using Enfold Version: 4.8.6 (child theme) under WP 5.8. On the server, php 7.3.6 is running (the occuring error as written below comes also under php 7.4) . Since this update to Enfold Version 4.8.6 the Redakteur after login just can see one (of all 14) sites and the following error will displayed:
“Fatal error: Uncaught TypeError: Argument 1 passed to Avia_Gutenberg::handler_add_edit_link() must be of the type array, null given, called in /homepages/32/d629071579/htdocs/naturheilpraxis-huxol.de/wp-includes/class-wp-hook.php on line 303 and defined in /homepages/32/d629071579/htdocs/naturheilpraxis-huxol.de/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:761 Stack trace: #0 /homepages/32/d629071579/htdocs/naturheilpraxis-huxol.de/wp-includes/class-wp-hook.php(303): Avia_Gutenberg->handler_add_edit_link(NULL, Object(WP_Post)) #1 /homepages/32/d629071579/htdocs/naturheilpraxis-huxol.de/wp-includes/plugin.php(189): WP_Hook->apply_filters(NULL, Array) #2 /homepages/32/d629071579/htdocs/naturheilpraxis-huxol.de/wp-admin/includes/class-wp-posts-list-table.php(1511): apply_filters(‘page_row_action…’, Array, Object(WP_Post)) #3 /homepages/32/d629071579/htdocs/naturheilpraxis-huxol.de/wp-admin/includes/class-wp-posts-list-table.php(1026): WP_Posts_List_Table->handle_row_actions(Object(WP_Post), ‘title’, ‘ in /homepages/32/d629071579/htdocs/naturheilpraxis-huxol.de/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php on line 761
Es gab einen kritischen Fehler auf deiner Website. Bitte überprüfe den Posteingang deiner Website-Administrator-E-Mail-Adresse für weitere Anweisungen.”
———————————————
Also a warning from WordPress about a failure in the theme Enfold will be deliverred by mail to the Redakteur. We have delete this redakteur and create a new one: but the failure happens again. Any suggestions please?

Hi Yigit,

I installed the envato market plugin. After doing that, it recognized that an update is available. I have tried 4 times to run the update with a different message each time. Once it said the update was successful, but then still showed the update was available and I’m using the previous version. Another time it said the update failed because it was the most current version. Another it failed and offered me this:

An error occurred while updating Enfold: The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions. archive.php, functions.php, config-wordpress-seo/config.php, config-wordpress-seo/wpseo-mod.js, config-include.php, style.css, config-relevanssi/class-avia-relevanssi.php, header.php, config-gravityforms/gravity-mod.css, config-gravityforms/config.php, config-instagram-feed/class-avia-instagram-feed.php, config-instagram-feed/class-avia-instagram-feed-widget.php, config-woocommerce/config-356.php, config-woocommerce/woocommerce-mod-css-dynamic.php, config-woocommerce/config-woocommerce-bookings/woocommerce-booking-mod.css, config-woocommerce/config-woocommerce-bookings/config.php, config-woocommerce/admin/woo-admin-blocks.css, config-woocommerce/config.php, config-woocommerce/woocommerce-mod.css, config-woocommerce/woocommerce-mod-v26.js, config-woocommerce/woo-loader.php, config-woocommerce/admin-options.php, config-woocommerce/admin-import.php, config-woocommerce/woocommerce-mod.js, config-woocommerce/class-avia-wc-block-editor.php, config-woocommerce/images/arrow_up_down_dark.png, config-woocommerce/images/slideshow-arrow-left.png, config-woocommerce/images/remove.png, config-woocommerce/images/icons-shop-cart.png, config-woocommerce/images/star.png, config-woocommerce/images/arrow_down.png, config-woocommerce/images/slideshow-arrow-right-dark.png, config-woocommerce/images/slideshow-arrow-left-dark.png, config-woocommerce/images/slideshow-arrow-down.png, config-woocommerce/images/bullet_grey.png, config-woocommerce/images/slideshow-arrow-right.png, config-woocommerce/images/arrows.png, config-woocommerce/images/icons-shop-added.png, config-woocommerce/images/loading-light.gif, config-woocommerce/images/arrow_up_down.png, config-woocommerce/images/icons-shop-options.png, config-woocommerce/images/bg-style-wrap.png, config-woocommerce/images/rtl-bullet_grey.png, config-woocommerce/images/icons-shop-details.png, config-woocommerce/images/icon-cart.png, config-woocommerce/images/cross_white.png, config-woocommerce/images/slideshow-arrow-up.png, config-woocommerce/images/trans_dark.png, config-woocommerce/images/icons-shop-loading.gif, config-woocommerce/images/select.png, searchform.php, single.php, config-events-calendar/config.php, config-events-calendar/event-mod.css, config-events-calendar/event-mod-css-dynamic.php, config-events-calendar/views/v2/default-template.php, config-events-calendar/views/pro/map.php, config-events-calendar/views/single-event.php, config-events-calendar/views/single-event-no-mobile.php, config-events-calendar/views/default-template.php, config-bbpress/bbpress-mod.css, config-bbpress/config.php, config-bbpress/images/sticky.png, config-bbpress/images/closed.png, config-bbpress/images/super-sticky.png, search.php, js/avia-snippet-cookieconsent.js, js/avia-snippet-lightbox.js, js/html5shiv.js, js/avia-compat.js, js/avia-snippet-widget.js, js/avia-snippet-hamburger-menu.js, js/aviapopup/jquery.magnific-popup.min.js, js/aviapopup/magnific-popup.css, js/aviapopup/changelog.txt, js/aviapopup/jquery.magnific-popup.js, js/avia.js, js/avia-admin-preview.js, js/avia-snippet-sticky-header.js, js/avia-snippet-sidebarmenu.js, js/avia-snippet-site-preloader.js, js/waypoints/waypoints.js, js/waypoints/changelog.txt, js/waypoints/waypoints.min.js, js/avia-snippet-megamenu.js, js/shortcodes.js, config-templatebuilder/avia-shortcodes/events_countdown/events_countdown.php, config-templatebuilder/avia-shortcodes/postslider/postslider.css, config-templatebuilder/avia-shortcodes/postslider/postslider.php, config-templatebuilder/avia-shortcodes/buttons/buttons.css, config-templatebuilder/avia-shortcodes/buttons/buttons.php, config-templatebuilder/avia-shortcodes/tabs/tabs.css, config-templatebuilder/avia-shortcodes/tabs/tabs.js, config-templatebuilder/avia-shortcodes/tabs/tabs.php, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.php, config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css, config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.php, config-templatebuilder/avia-shortcodes/widgetarea/widgetarea.php, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.php, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.js, config-templatebuilder/avia-shortcodes/comments/comments.css, config-templatebuilder/avia-shortcodes/comments/comments.php, config-templatebuilder/avia-shortcodes/av-helper-slideshow.php, config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php, config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.php, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.php, config-templatebuilder/avia-shortcodes/tab_section/tab_section.php, config-templatebuilder/avia-shortcodes/tab_section/tab_sub_section.php, config-templatebuilder/avia-shortcodes/tab_section/tab_section.css, config-templatebuilder/avia-shortcodes/tab_section/tab_section.js, config-templatebuilder/avia-shortcodes/blog/blog.php, config-templatebuilder/avia-shortcodes/blog/blog.css, config-templatebuilder/avia-shortcodes/product_grid.php, config-templatebuilder/avia-shortcodes/countdown/countdown.php, config-templatebuilder/avia-shortcodes/countdown/countdown.js, config-templatebuilder/avia-shortcodes/countdown/countdown.css, config-templatebuilder/avia-shortcodes/team/team.php, config-templatebuilder/avia-shortcodes/team/team.css, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.php, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css, config-templatebuilder/avia-shortcodes/google_maps/google_maps.css, config-templatebuilder/avia-shortcodes/google_maps/google_maps.php, config-templatebuilder/avia-shortcodes/grid_row/grid_row.php, config-templatebuilder/avia-shortcodes/grid_row/grid_row.css, config-templatebuilder/avia-shortcodes/grid_row/cell.php, config-templatebuilder/avia-shortcodes/contentslider/contentslider.php, config-templatebuilder/avia-shortcodes/contentslider/contentslider.css, config-templatebuilder/avia-shortcodes/slideshow_revolution/slideshow_revolution.php, config-templatebuilder/avia-shortcodes/table/table.php, config-templatebuilder/avia-shortcodes/table/table.css, config-templatebuilder/avia-shortcodes/catalogue/catalogue.php, config-templatebuilder/avia-shortcodes/catalogue/catalogue.css, config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.php, config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.css, config-templatebuilder/avia-shortcodes/menu/menu.js, config-templatebuilder/avia-shortcodes/menu/menu.css, config-templatebuilder/avia-shortcodes/menu/menu.php, config-templatebuilder/avia-shortcodes/gallery/gallery.css, config-templatebuilder/avia-shortcodes/gallery/gallery.js, config-templatebuilder/avia-shortcodes/gallery/gallery.php, config-templatebuilder/avia-shortcodes/contact/contact.js, config-templatebuilder/avia-shortcodes/contact/contact.php, config-templatebuilder/avia-shortcodes/contact/contact.css, config-templatebuilder/avia-shortcodes/productslider/productslider.php, config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css, config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php, config-templatebuilder/avia-shortcodes/testimonials/testimonials.js, config-templatebuilder/avia-shortcodes/testimonials/testimonials.css, config-templatebuilder/avia-shortcodes/testimonials/testimonials.php, config-templatebuilder/avia-shortcodes/av-helper-mailchimp.php, config-templatebuilder/avia-shortcodes/codeblock/codeblock.php, config-templatebuilder/avia-shortcodes/icongrid/icongrid.css, config-templatebuilder/avia-shortcodes/icongrid/icongrid.php, config-templatebuilder/avia-shortcodes/icongrid/icongrid.js, config-templatebuilder/avia-shortcodes/notification/notification.js, config-templatebuilder/avia-shortcodes/notification/notification.css, config-templatebuilder/avia-shortcodes/notification/notification.php, config-templatebuilder/avia-shortcodes/magazine/magazine.php, config-templatebuilder/avia-shortcodes/magazine/magazine.css, config-templatebuilder/avia-shortcodes/magazine/magazine.js, config-templatebuilder/avia-shortcodes/heading/heading.css, config-templatebuilder/avia-shortcodes/heading/heading.php, config-templatebuilder/avia-shortcodes/iconlist/iconlist.js, config-templatebuilder/avia-shortcodes/iconlist/iconlist.css, config-templatebuilder/avia-shortcodes/iconlist/iconlist.php, config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.php, config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css, config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.css, config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.php, config-templatebuilder/avia-shortcodes/masonry_gallery/masonry_gallery.php, config-templatebuilder/avia-shortcodes/timeline/timeline.js, config-templatebuilder/avia-shortcodes/timeline/timeline.php, config-templatebuilder/avia-shortcodes/timeline/timeline.css, config-templatebuilder/avia-shortcodes/page_split.php, config-templatebuilder/avia-shortcodes/portfolio/isotope.js, config-templatebuilder/avia-shortcodes/portfolio/portfolio.css, config-templatebuilder/avia-shortcodes/portfolio/portfolio.js, config-templatebuilder/avia-shortcodes/portfolio/portfolio.php, config-templatebuilder/avia-shortcodes/social_share/social_share.css, config-templatebuilder/avia-shortcodes/social_share/social_share.php, config-templatebuilder/avia-shortcodes/video/video.css, config-templatebuilder/avia-shortcodes/video/video.js, config-templatebuilder/avia-shortcodes/video/video.php, config-templatebuilder/avia-shortcodes/section/section.php, config-templatebuilder/avia-shortcodes/slideshow/slideshow.css, config-templatebuilder/avia-shortcodes/slideshow/slideshow.php, config-templatebuilder/avia-shortcodes/slideshow/slideshow.js, config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js, config-templatebuilder/avia-shortcodes/image/image.css, config-templatebuilder/avia-shortcodes/image/image.php, config-templatebuilder/avia-shortcodes/textblock/textblock.php, config-templatebuilder/avia-shortcodes/dropcaps.php, config-templatebuilder/avia-shortcodes/product_list.php, config-templatebuilder/avia-shortcodes/postcontent/postcontent.php, config-templatebuilder/avia-shortcodes/av-helper-masonry.php, config-templatebuilder/avia-shortcodes/progressbar/progressbar.php, config-templatebuilder/avia-shortcodes/progressbar/progressbar.css, config-templatebuilder/avia-shortcodes/progressbar/progressbar.js, config-templatebuilder/avia-shortcodes/leaflet_maps/leaflet_maps.php, config-templatebuilder/avia-shortcodes/leaflet_maps/leaflet_maps.css, config-templatebuilder/avia-shortcodes/icon/icon.css, config-templatebuilder/avia-shortcodes/icon/icon.php, config-templatebuilder/avia-shortcodes/search/search.php, config-templatebuilder/avia-shortcodes/search/search.css, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css, config-templatebuilder/avia-shortcodes/hr/hr.php, config-templatebuilder/avia-shortcodes/hr/hr.css, config-templatebuilder/avia-shortcodes/iconbox/iconbox.php, config-templatebuilder/avia-shortcodes/iconbox/iconbox.css, config-templatebuilder/avia-shortcodes/logoslider/logoslider.php, config-templatebuilder/avia-shortcodes/mailchimp/mailchimp.php, config-templatebuilder/avia-shortcodes/columns/columns.php, config-templatebuilder/avia-shortcodes/instagram_feed/instagram_feed.php, config-templatebuilder/avia-shortcodes/toggles/toggles.css, config-templatebuilder/avia-shortcodes/toggles/toggles.js, config-templatebuilder/avia-shortcodes/toggles/toggles.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_meta.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_review.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_button.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippets.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_upsells.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_tabs.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_price.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_info.php, config-templatebuilder/avia-shortcodes/numbers/numbers.css, config-templatebuilder/avia-shortcodes/numbers/numbers.php, config-templatebuilder/avia-shortcodes/numbers/numbers.js, config-templatebuilder/avia-shortcodes/audio-player/audio-player.css, config-templatebuilder/avia-shortcodes/audio-player/audio-player.php, config-templatebuilder/avia-shortcodes/audio-player/audio-player.js, config-templatebuilder/avia-shortcodes/promobox/promobox.php, config-templatebuilder/avia-shortcodes/promobox/promobox.css, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.php, config-templatebuilder/avia-template-builder/config/meta.php, config-templatebuilder/avia-template-builder/config/javascript_strings.php, config-templatebuilder/avia-template-builder/config/pointers.php, config-templatebuilder/avia-template-builder/template-builder.php, config-templatebuilder/avia-template-builder/assets/js/avia-history.js, config-templatebuilder/avia-template-builder/assets/js/avia-element-behavior.js, config-templatebuilder/avia-template-builder/assets/js/avia-tinymce-buttons.js, config-templatebuilder/avia-template-builder/assets/js/avia-table.js, config-templatebuilder/avia-template-builder/assets/js/avia-custom-elements.js, config-templatebuilder/avia-template-builder/assets/js/avia-modal.js, config-templatebuilder/avia-template-builder/assets/js/avia-tooltip.js, config-templatebuilder/avia-template-builder/assets/js/avia-tab-section.js, config-templatebuilder/avia-template-builder/assets/js/avia-media.js, config-templatebuilder/avia-template-builder/assets/js/avia-tinymce-linebreak.js, config-templatebuilder/avia-template-builder/assets/js/avia-tinymce-buttons-4.js, config-templatebuilder/avia-template-builder/assets/js/avia-tab-toggle.js, config-templatebuilder/avia-template-builder/assets/js/avia-template-saving.js, config-templatebuilder/avia-template-builder/assets/js/avia-builder.js, config-templatebuilder/avia-template-builder/assets/css/avia-modal.css, config-templatebuilder/avia-template-builder/assets/css/avia-builder.css, config-templatebuilder/avia-template-builder/assets/css/avia-builder-rtl.css, config-templatebuilder/avia-template-builder/assets/css/avia-custom-elements.css, config-templatebuilder/avia-template-builder/assets/css/avia-media.css, config-templatebuilder/avia-template-builder/assets/fonts/config.json, config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff2, config-templatebuilder/avia-template-builder/assets/fonts/charmap-compat.php, config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg, config-templatebuilder/avia-template-builder/assets/fonts/charmap.php, config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot, config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf, config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff, config-templatebuilder/avia-template-builder/assets/dividers/pyramids-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/clouds.svg, config-templatebuilder/avia-template-builder/assets/dividers/arrow-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/curve-asymmetrical.svg, config-templatebuilder/avia-template-builder/assets/dividers/triangle-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/drops.svg, config-templatebuilder/avia-template-builder/assets/dividers/split.svg, config-templatebuilder/avia-template-builder/assets/dividers/split-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/waves.svg, config-templatebuilder/avia-template-builder/assets/dividers/opacity-tilt.svg, config-templatebuilder/avia-template-builder/assets/dividers/curve-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/triangle.svg, config-templatebuilder/avia-template-builder/assets/dividers/book.svg, config-templatebuilder/avia-template-builder/assets/dividers/book-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/arrow.svg, config-templatebuilder/avia-template-builder/assets/dividers/mountains.svg, config-templatebuilder/avia-template-builder/assets/dividers/waves-pattern.svg, config-templatebuilder/avia-template-builder/assets/dividers/waves-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/curve.svg, config-templatebuilder/avia-template-builder/assets/dividers/triangle-asymmetrical-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/opacity-fan.svg, config-templatebuilder/avia-template-builder/assets/dividers/zigzag.svg, config-templatebuilder/avia-template-builder/assets/dividers/wave-brush.svg, config-templatebuilder/avia-template-builder/assets/dividers/tilt.svg, config-templatebuilder/avia-template-builder/assets/dividers/triangle-asymmetrical.svg, config-templatebuilder/avia-template-builder/assets/dividers/pyramids.svg, config-templatebuilder/avia-template-builder/assets/dividers/drops-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/curve-asymmetrical-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/clouds-negative.svg, config-templatebuilder/avia-template-builder/php/class-html-helper.php, config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php, config-templatebuilder/avia-template-builder/php/class-svg-shapes.php, config-templatebuilder/avia-template-builder/php/class-asset-manager.php, config-templatebuilder/avia-template-builder/php/class-media.php, config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-callback.php, config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-base.php, config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-base.php, config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-rules.php, config-templatebuilder/avia-template-builder/php/class-storage-post.php, config-templatebuilder/avia-template-builder/php/class-post-css-management.php, config-templatebuilder/avia-template-builder/php/class-tiny-button.php, config-templatebuilder/avia-template-builder/php/external/JSqueeze.php, config-templatebuilder/avia-template-builder/php/class-front-templates.php, config-templatebuilder/avia-template-builder/php/class-save-buildertemplate.php, config-templatebuilder/avia-template-builder/php/class-popup-templates.php, config-templatebuilder/avia-template-builder/php/class-element-styling.php, config-templatebuilder/avia-template-builder/php/class-element-templates.php, config-templatebuilder/avia-template-builder/php/class-shortcode-template.php, config-templatebuilder/avia-template-builder/php/traits/trait-sc-button-styles.php, config-templatebuilder/avia-template-builder/php/traits/trait-sc-named-colors.php, config-templatebuilder/avia-template-builder/php/class-meta-box.php, config-templatebuilder/avia-template-builder/php/class-shortcode-parser.php, config-templatebuilder/avia-template-builder/php/class-font-manager.php, config-templatebuilder/avia-template-builder/php/class-generic-helper.php, config-templatebuilder/avia-template-builder/php/class-pointer.php, config-templatebuilder/avia-template-builder/php/class-template-builder.php, config-templatebuilder/avia-template-builder/php/class-element-manager.php, config-templatebuilder/avia-template-builder/images/sc-submenu.png, config-templatebuilder/avia-template-builder/images/icon-store.png, config-templatebuilder/avia-template-builder/images/sc-testimonials.png, config-templatebuilder/avia-template-builder/images/tiny_line_break.png, config-templatebuilder/avia-template-builder/images/sc-promobox.png, config-templatebuilder/avia-template-builder/images/sc-button.png, config-templatebuilder/avia-template-builder/images/sc-partner.png, config-templatebuilder/avia-template-builder/images/placeholder-audio.png, config-templatebuilder/avia-template-builder/images/sc-audio-player.png, config-templatebuilder/avia-template-builder/images/icon-edit.png, config-templatebuilder/avia-template-builder/images/sc-heading.png, config-templatebuilder/avia-template-builder/images/sc-progressbar.png, config-templatebuilder/avia-template-builder/images/sc-fifth.png, config-templatebuilder/avia-template-builder/images/sc-slideshow-layer.png, config-templatebuilder/avia-template-builder/images/iconswitcher/phablet.png, config-templatebuilder/avia-template-builder/images/iconswitcher/desktop.png, config-templatebuilder/avia-template-builder/images/iconswitcher/tablet-landscape.png, config-templatebuilder/avia-template-builder/images/iconswitcher/tablet-portrait.png, config-templatebuilder/avia-template-builder/images/iconswitcher/mobile.png, config-templatebuilder/avia-template-builder/images/sc-tabsection.png, config-templatebuilder/avia-template-builder/images/sc-masonry-gallery.png, config-templatebuilder/avia-template-builder/images/layout-fullwidth.png, config-templatebuilder/avia-template-builder/images/layout-slideshow.png, config-templatebuilder/avia-template-builder/images/sc-image-hotspot.png, config-templatebuilder/avia-template-builder/images/sc-gallery.png, config-templatebuilder/avia-template-builder/images/sc-fullscreen.png, config-templatebuilder/avia-template-builder/images/sc-codeblock.png, config-templatebuilder/avia-template-builder/images/sc-postcontent.png, config-templatebuilder/avia-template-builder/images/placeholder-full.jpg, config-templatebuilder/avia-template-builder/images/sc-masonry.png, config-templatebuilder/avia-template-builder/images/placeholder.jpg, config-templatebuilder/avia-template-builder/images/sc-contentslider.png, config-templatebuilder/avia-template-builder/images/sc-post-metadata.png, config-templatebuilder/avia-template-builder/images/icon-template.png, config-templatebuilder/avia-template-builder/images/sc-accordion-slider.png, config-templatebuilder/avia-template-builder/images/sc-half.png, config-templatebuilder/avia-template-builder/images/sc-timeline.png, config-templatebuilder/avia-template-builder/images/sc-video.png, config-templatebuilder/avia-template-builder/images/sc-two_fifth.png, config-templatebuilder/avia-template-builder/images/sc-layout_row.png, config-templatebuilder/avia-template-builder/images/sc-full.png, config-templatebuilder/avia-template-builder/images/icon-leftright.png, config-templatebuilder/avia-template-builder/images/sc-accordion.png, config-templatebuilder/avia-template-builder/images/sc-third.png, config-templatebuilder/avia-template-builder/images/sc-price.png, config-templatebuilder/avia-template-builder/images/icon-trash-side.png, config-templatebuilder/avia-template-builder/images/sc-icon_box.png, config-templatebuilder/avia-template-builder/images/icon-add.png, config-templatebuilder/avia-template-builder/images/icon-table-ud.png, config-templatebuilder/avia-template-builder/images/sc-slideshow.png, config-templatebuilder/avia-template-builder/images/sc-slideshow-full.png, config-templatebuilder/avia-template-builder/images/icon-trash.png, config-templatebuilder/avia-template-builder/images/placeholder-image.png, config-templatebuilder/avia-template-builder/images/sc-four_fifth.png, config-templatebuilder/avia-template-builder/images/sc-comments.png, config-templatebuilder/avia-template-builder/images/icon-shrink.png, config-templatebuilder/avia-template-builder/images/icon-expand.png, config-templatebuilder/avia-template-builder/images/layout-right.png, config-templatebuilder/avia-template-builder/images/sc-search.png, config-templatebuilder/avia-template-builder/images/sc-fourth.png, config-templatebuilder/avia-template-builder/images/sc-portfolio.png, config-templatebuilder/avia-template-builder/images/icon-undo.png, config-templatebuilder/avia-template-builder/images/sc-tabs.png, config-templatebuilder/avia-template-builder/images/loading.gif, config-templatebuilder/avia-template-builder/images/sc-icongrid.png, config-templatebuilder/avia-template-builder/images/icon-clone.png, config-templatebuilder/avia-template-builder/images/sc-iconlist.png, config-templatebuilder/avia-template-builder/images/sc-social.png, config-templatebuilder/avia-template-builder/images/icon-move.png, config-templatebuilder/avia-template-builder/images/sc-three_fifth.png, config-templatebuilder/avia-template-builder/images/icon-cut.png, config-templatebuilder/avia-template-builder/images/icon-add-nohover.png, config-templatebuilder/avia-template-builder/images/sc-sixth.png, config-templatebuilder/avia-template-builder/images/sc-notification.png, config-templatebuilder/avia-template-builder/images/sc-magazine.png, config-templatebuilder/avia-template-builder/images/sc-text_block.png, config-templatebuilder/avia-template-builder/images/sc-team.png, config-templatebuilder/avia-template-builder/images/sc-hr.png, config-templatebuilder/avia-template-builder/images/sc-numbers.png, config-templatebuilder/avia-template-builder/images/bg-button.png, config-templatebuilder/avia-template-builder/images/icon-table-lr.png, config-templatebuilder/avia-template-builder/images/icon-hotkey.png, config-templatebuilder/avia-template-builder/images/icon-redo.png, config-templatebuilder/avia-template-builder/images/sc-blog.png, config-templatebuilder/avia-template-builder/images/sc-countdown.png, config-templatebuilder/avia-template-builder/images/sc-sidebar.png, config-templatebuilder/avia-template-builder/images/loading_mini.gif, config-templatebuilder/avia-template-builder/images/sc-instagram-feed.png, config-templatebuilder/avia-template-builder/images/icon-grow.png, config-templatebuilder/avia-template-builder/images/sc-section.png, config-templatebuilder/avia-template-builder/images/sc-three_fourth.png, config-templatebuilder/avia-template-builder/images/sc-two_third.png, config-templatebuilder/avia-template-builder/images/sc-maps.png, config-templatebuilder/avia-template-builder/images/sc-table.png, config-templatebuilder/avia-template-builder/images/icon-info.png, config-templatebuilder/avia-template-builder/images/layout-left.png, config-templatebuilder/avia-template-builder/images/sc-catalogue.png, config-templatebuilder/avia-template-builder/images/sc-icon.png, config-templatebuilder/avia-template-builder/images/sc-leaflet-maps.png, config-templatebuilder/avia-template-builder/images/tiny-button.png, config-templatebuilder/avia-template-builder/images/sc-contact.png, config-templatebuilder/avia-template-builder/images/sc-image.png, config-templatebuilder/avia-template-builder/images/sc-postslider.png, config-templatebuilder/avia-template-builder/images/sc-buttonrow.png, config-templatebuilder/avia-template-builder/images/placeholder-video.png, config-templatebuilder/avia-template-builder/images/select.png, config-templatebuilder/config.php, screenshot.png, index.php, 404.php, css/shortcodes.css, css/avia-snippet-site-preloader.css, css/rtl.css, css/base.css, css/admin-preview.css, css/dynamic-css.php, css/grid.css, css/layout.css, css/avia-snippet-cookieconsent.css, css/avia-snippet-widget.css, css/custom.css, css/avia-snippet-lightbox.css, includes/class-avia-custom-pages.php, includes/loop-comments.php, includes/loop-author.php, includes/loop-page.php, includes/helper-assets.php, includes/helper-template-logic.php, includes/loop-about-author.php, includes/helper-privacy.php, includes/helper-post-format.php, includes/admin/register-backend-advanced-styles.php, includes/admin/register-demo-import.php, includes/admin/register-admin-options.php, includes/admin/register-dynamic-styles.php, includes/admin/option_tabs/avia_blog.php, includes/admin/option_tabs/avia_layout.php, includes/admin/option_tabs/avia_avia.php, includes/admin/option_tabs/avia_social.php, includes/admin/option_tabs/avia_seo.php, includes/admin/option_tabs/avia_google.php, includes/admin/option_tabs/avia_element_templates.php, includes/admin/option_tabs/avia_upload.php, includes/admin/option_tabs/avia_styling.php, includes/admin/option_tabs/avia_performance.php, includes/admin/option_tabs/avia_menu.php, includes/admin/option_tabs/avia_footer.php, includes/admin/option_tabs/avia_shop.php, includes/admin/option_tabs/avia_customizer.php, includes/admin/option_tabs/avia_ext_leaflet_maps.php, includes/admin/option_tabs/avia_builder.php, includes/admin/option_tabs/avia_ext_avia_ext.php, includes/admin/option_tabs/avia_header.php, includes/admin/option_tabs/avia_cookie.php, includes/admin/option_tabs/avia_newsletter.php, includes/admin/option_tabs/avia_sidebars.php, includes/admin/option_tabs/avia_demo.php, includes/admin/register-admin-metabox.php, includes/admin/helper-compat-update.php, includes/admin/register-backend-styles.php, includes/admin/register-widget-area.php, includes/admin/register-portfolio.php, includes/admin/demo_files/default.php, includes/admin/demo_files/default.xml, includes/admin/demo_files/demo_images/default.jpg, includes/helper-conditional-megamenu.php, includes/related-posts.php, includes/helper-markup.php, includes/loop-search.php, includes/helper-social-media.php, includes/loop-portfolio-single.php, includes/loop-index.php, includes/error404.php, includes/helper-responsive-megamenu.php, includes/helper-main-menu.php, config-gutenberg/class-avia-gutenberg-theme-integration.php, config-gutenberg/class-avia-gutenberg.php, config-gutenberg/js/avia_blocks_front.js, config-gutenberg/js/avia_gutenberg.js, config-gutenberg/css/avia-gutenberg-editor.css, config-gutenberg/css/avia_gutenberg.css, config-gutenberg/class-avia-gutenberg-dynamic-styles.php, config-layerslider/config.php, template-builder.php, author.php, comments.php, template-blank.php, config-menu-exchange/config.php, single-portfolio.php, sidebar.php, tag.php, taxonomy-portfolio_entries.php, wpml-config.xml, forum.php, template-archives.php, page.php, functions-enfold.php, framework/avia_framework.php, framework/js/avia_mega_menu.js, framework/js/deprecated/avia_edit_dynamic_templtes.js, framework/js/deprecated/avia_dynamic_templates.js, framework/js/avia_media_wp35.js, framework/js/avia_advanced_form_elements.js, framework/js/avia_option_pages.js, framework/js/conditional_load/avia_google_recaptcha_front.js, framework/js/conditional_load/avia_conditional_mega_menu.js, framework/js/conditional_load/avia_facebook_front.js, framework/js/conditional_load/avia_google_maps_api.js, framework/js/conditional_load/avia_google_maps_front.js, framework/js/conditional_load/avia_google_recaptcha_api.js, framework/js/conditional_load/avia_google_maps_widget_admin.js, framework/js/avia_media.js, framework/js/avia_media_advanced.js, framework/js/avia_sidebar.js, framework/js/avia_colorpicker.js, framework/css/avia_colorpicker.css, framework/css/avia_sidebar.css, framework/css/avia_admin.css, framework/css/conditional_load/avia_global_admin.css, framework/css/conditional_load/avia_admin_modern.css, framework/css/conditional_load/avia_gallery_mode.css, framework/php/class-breadcrumb-trail.php, framework/php/class-gmaps.php, framework/php/function-set-avia-frontend.php, framework/php/class-metabox.php, framework/php/legacy/class-tgm-plugin-activation.php, framework/php/inc-autoconfig.php, framework/php/function-set-avia-backend.php, framework/php/class-media.php, framework/php/class-form-generator.php, framework/php/class-htmlhelper.php, framework/php/class-update-notifier.php, framework/php/class-adminpages.php, framework/php/auto-updates/class-envato-protected-api.php, framework/php/auto-updates/class-avia-theme-updater.php, framework/php/auto-updates/class-avia-envato-base-api.php, framework/php/auto-updates/class-pixelentity-theme-update.php, framework/php/auto-updates/auto-updates.php, framework/php/class-responsive-images.php, framework/php/class-database-option-sets.php, framework/php/class-sidebar-generator.php, framework/php/class-breadcrumb-legacy.php, framework/php/class-style-generator.php, framework/php/class-framework-widgets.php, framework/php/wordpress-importer/avia-export-class.php, framework/php/wordpress-importer/avia-import-class.php, framework/php/wordpress-importer/wordpress-importer.php, framework/php/wordpress-importer/parsers.php, framework/php/class-megamenu.php, framework/php/class-grecaptcha.php, framework/php/class-queryfilter.php, framework/php/font-management/class-avia-icon-fonts.php, framework/php/font-management/class-avia-type-fonts.php, framework/php/font-management/class-avia-font-management-base.php, framework/php/class-superobject.php, framework/php/avia_shortcodes/av-prev.php, framework/php/avia_shortcodes/tinymce/editor_plugin_3.js, framework/php/avia_shortcodes/tinymce/img/icon.png, framework/php/avia_shortcodes/tinymce/js/tab-control.js, framework/php/avia_shortcodes/tinymce/js/dialog.js, framework/php/avia_shortcodes/tinymce/js/column-control.js, framework/php/avia_shortcodes/tinymce/js/sidebar-tab-control.js, framework/php/avia_shortcodes/tinymce/js/table-control.js, framework/php/avia_shortcodes/tinymce/editor_plugin.js, framework/php/avia_shortcodes/tinymce/dialog.php, framework/php/avia_shortcodes/img/checkmark.gif, framework/php/avia_shortcodes/img/preloader.gif, framework/php/avia_shortcodes/img/x.gif, framework/php/avia_shortcodes/img/globe-preloader.gif, framework/php/avia_shortcodes/css/styles.css, framework/php/avia_shortcodes/shortcodes.php, framework/php/avia_shortcodes/sc/latest_portfolio.js, framework/php/avia_shortcodes/sc/tab.js, framework/php/avia_shortcodes/sc/iconbox_top.js, framework/php/avia_shortcodes/sc/latest_posts.js, framework/php/avia_shortcodes/sc/box.js, framework/php/avia_shortcodes/sc/column.js, framework/php/avia_shortcodes/sc/big_box.js, framework/php/avia_shortcodes/sc/digg.js, framework/php/avia_shortcodes/sc/table.js, framework/php/avia_shortcodes/sc/related.js, framework/php/avia_shortcodes/sc/sidebar_tabs.js, framework/php/avia_shortcodes/sc/twitter.js, framework/php/avia_shortcodes/sc/button.js, framework/php/avia_shortcodes/sc/toggle.js, framework/php/avia_shortcodes/sc/fblike.js, framework/php/avia_shortcodes/sc/iconbox.js, framework/php/avia_shortcodes/sc/latest_tweets.js, framework/php/avia_shortcodes/sc/tweetmeme.js, framework/php/avia_shortcodes/sc/slider.js, framework/php/avia_shortcodes/sc/quote.js, framework/php/avia_shortcodes/sc/ilink.js, framework/php/inc-avia-importer.php, framework/php/function-set-avia-ajax.php, framework/php/inc-avia-download-demo.php, framework/images/misc/grecaptcha-check-light-compact.png, framework/images/misc/placeholder.jpg, framework/images/misc/grecaptcha-check-light-normal.png, framework/images/misc/grecaptcha-check-dark-compact.png, framework/images/misc/grecaptcha-check-dark-normal.png, framework/images/icons/social_facebook.png, framework/images/icons/wand.png, framework/images/icons/video.png, framework/images/icons/video_insert_image.png, framework/images/icons/alert.png, framework/images/icons/social_flickr.png, framework/images/icons/images.png, framework/images/icons/social_twitter.png, framework/images/icons/doc_text_image.png, framework/images/icons/blog.png, framework/images/icons/layout_select.png, framework/images/icons/book_addresses.png, framework/images/icons/error.png, framework/images/icons/brick.png, framework/images/icons/update.png, framework/images/icons/paintbrush.png, framework/images/icons/paintcan.png, framework/images/icons/icon-trash.png, framework/images/icons/layout_select_footer.png, framework/images/icons/application_side_expand.png, framework/images/icons/loading.gif, framework/images/icons/cog.png, framework/images/icons/layout_select_sidebar.png, framework/images/icons/close.png, framework/images/icons/photo_album.png, framework/images/icons/cart.png,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) , framework/images/icons/map.png, framework/images/icons/loading_mini.gif, framework/images/icons/bin_closed.png, framework/images/icons/user.png, framework/images/icons/hammer_screwdriver.png, framework/images/icons/search.png, framework/images/icons/success.png, framework/images/icons/blueprint_horizontal.png, framework/images/icons/readme.txt, framework/images/icons/page_white_wrench.png, framework/images/icons/import_export.png, framework/images/icons/palette.png, framework/images/icons/layout_header_footer_3_mix.png, framework/images/icons/accept.png, framework/images/icons/add.png, framework/images/colorpicker/custom_submit.png, framework/images/colorpicker/colorpicker_hsb_h.png, framework/images/colorpicker/custom_indic.gif, framework/images/colorpicker/custom_hsb_b.png, framework/images/colorpicker/custom_hsb_s.png, framework/images/colorpicker/colorpicker_select.gif, framework/images/colorpicker/custom_rgb_r.png, framework/images/colorpicker/colorpicker_indic.gif, framework/images/colorpicker/colorpicker_hsb_b.png, framework/images/colorpicker/custom_background.png, framework/images/colorpicker/colorpicker_rgb_r.png, framework/images/colorpicker/select2.png, framework/images/colorpicker/custom_rgb_b.png, framework/images/colorpicker/slider.png, framework/images/colorpicker/colorpicker_hsb_s.png, framework/images/colorpicker/custom_hex.png, framework/images/colorpicker/custom_hsb_h.png, framework/images/colorpicker/colorpicker_background.png, framework/images/colorpicker/colorpicker_hex.png, framework/images/colorpicker/colorpicker_overlay.png, framework/images/colorpicker/colorpicker_rgb_g.png, framework/images/colorpicker/blank.gif, framework/images/colorpicker/colorpicker_submit.png, framework/images/colorpicker/colorpicker_rgb_b.png, framework/images/colorpicker/custom_rgb_g.png, framework/images/colorpicker/select.png, framework/images/layout/bg.png, framework/images/layout/select_colorpicker.png, framework/images/layout/FIND_API.jpg, framework/images/layout/sort_arrow_down.png, framework/images/layout/menu-bits.gif, framework/images/layout/bg-style-wrap.png, framework/images/layout/gray-grad.png, framework/images/layout/bg-button.png, framework/images/layout/bg-bottom-shadow.png, framework/images/layout/diagonal-bold-light.png, framework/images/layout/arrow.png, framework/images/layout/transparency.png, framework/images/layout/select.png, lang/tr_TR.po, lang/es_ES.mo, lang/de_AT.po, lang/sk_SK.po, lang/sv_SE.po, lang/sv_SE.mo, lang/ru_RU.mo, lang/zh_CN.po, lang/de_DE_formal.po, lang/pt_BR.po, lang/ar.mo, lang/hu_HU.mo, lang/cs_CZ.mo, lang/sk_SK.mo, lang/es_ES.po, lang/ko_KR.po, lang/de_DE.po, lang/hu_HU.po, lang/zh_CN.mo, lang/ja.po, lang/nb_NO.po, lang/nb_NO.mo, lang/zh_TW.po, lang/fr_FR.po, lang/enfold.pot, lang/ar.po, lang/ko_KR.mo, lang/pt_BR.mo, lang/ja.mo, lang/de_CH.mo, lang/de_DE_formal.mo, lang/ru_RU.po, lang/he_IL.mo, lang/it_IT.mo, lang/da_DK.po, lang/it_IT.po, lang/ro_RO.mo, lang/zh_TW.mo, lang/da_DK.mo, lang/pl_PL.po, lang/de_DE.mo, lang/fa_IR.po, lang/de_AT.mo, lang/nl_NL.po, lang/fr_FR.mo, lang/fa_IR.mo, lang/ro_RO.po, lang/cs_CZ.po, lang/nl_NL.mo, lang/ca.mo, lang/tr_TR.mo, lang/pl_PL.mo, lang/el_GR.mo, lang/el_GR.po, lang/de_CH.po, lang/ca.po, lang/he_IL.po, footer.php, images/background-images/grid-big-light.png, images/background-images/gradient-bottom-light.png, images/background-images/wool-for-light-background.png, images/background-images/wood-dark.png, images/background-images/grunge-dark.png, images/background-images/grunge-big-light.png, images/background-images/gradient-top-dark.png, images/background-images/grunge-big-dark.png, images/background-images/dots-mini-strong.png, images/background-images/linen-for-light-background.png, images/background-images/dots-for-light-background.png, images/background-images/wood-light.png, images/background-images/diagonal-bold-dark.png, images/background-images/wool-diagonal-for-light-background.png, images/background-images/noise-for-light-background.png, images/background-images/floral-light.png, images/background-images/gradient-top-light.png, images/background-images/dots-for-dark-background.png, images/background-images/grain_bottom.png, images/background-images/diagonal-thin-light.png, images/background-images/grain_top.png, images/background-images/dashed-cross-dark.png, images/background-images/linen-for-dark-background.png, images/background-images/polygon.png, images/background-images/diagonal-thin-dark.png, images/background-images/ios-linen-dark.png, images/background-images/floral-dark.png, images/background-images/grunge-light.png, images/background-images/dashed-cross-light.png, images/background-images/wool-for-dark-background.png, images/background-images/wool-diagonal-for-dark-background.png, images/background-images/diagonal-bold-light.png, images/background-images/dots-mini-light.png, images/background-images/fullsize-grunge.jpg, images/background-images/grid-big-dark.png, images/background-images/noise-for-dark-background.png, images/background-images/gradient-bottom-dark.png, images/background-images/ios-linen-light.png, images/framework-helper/header_transparency.jpg, images/layout/blank.png, images/layout/fake_facebook.jpg, images/layout/logo.png, images/layout/ie_trans.png, images/layout/preload-dark-big-old.gif, images/layout/logo_modern.png, images/layout/loading.gif, images/layout/bg-button.png, images/layout/search.png, images/layout/preload-dark-grey-big.gif, images/layout/preload-dark-big.gif, config-leaflet-maps/class-avia-leaflet-maps.php, config-leaflet-maps/js/avia-leaflet-maps.js, config-leaflet-maps/assets/leafletjs/leaflet-src.esm.js, config-leaflet-maps/assets/leafletjs/leaflet.css, config-leaflet-maps/assets/leafletjs/leaflet.js, config-leaflet-maps/assets/leafletjs/leaflet-src.esm.js.map, config-leaflet-maps/assets/leafletjs/leaflet-src.js.map, config-leaflet-maps/assets/leafletjs/leaflet.js.map, config-leaflet-maps/assets/leafletjs/leaflet-src.js, config-leaflet-maps/assets/leafletjs/images/layers.png, config-leaflet-maps/assets/leafletjs/images/marker-shadow.png, config-leaflet-maps/assets/leafletjs/images/marker-icon-2x.png, config-leaflet-maps/assets/leafletjs/images/layers-2x.png, config-leaflet-maps/assets/leafletjs/images/marker-icon.png, config-wpml/wpml-mod.js, config-wpml/config_legacy.php, config-wpml/config.php, config-wpml/FacebookLocales.xml, config-wpml/class-avia-wpml.php, config-wpml/wpml-mod.css
All updates have been completed.

Go Back to Enfold Child ABEA Theme Panel

Also, I contacted my host. I can whitelist an IP address, not an API. Where do I get the Envato IP address?

#1297166

In reply to: RankMath Issues

Hi Ismael,

I didn’t touch the file “register-portfolio.php” at first seems the problem were caused by an issue with RankMath, I reinstall it and part of the issue has been resolved for few days,

I inserted the Codes you sent me and made some tests, it didn’t get effect, so I turn back to the original wp-config.php file setup.
The error persists. Check it out on the Private Content space the link of the Error page.

Moreover in the Portolio Items page in the backend in the last entry you will find this error:
______________________________
Fatal error: Uncaught Error: Object of class WP_Error could not be converted to string in /home/u168213674/domains/webpriuli.com/public_html/wp-content/themes/enfold/includes/admin/register-portfolio.php:143 Stack trace: #0 /home/u168213674/domains/webpriuli.com/public_html/wp-includes/class-wp-hook.php(294): prod_custom_columns(‘portfolio_entri…’) #1 /home/u168213674/domains/webpriuli.com/public_html/wp-includes/class-wp-hook.php(316): WP_Hook->apply_filters(NULL, Array) #2 /home/u168213674/domains/webpriuli.com/public_html/wp-includes/plugin.php(484): WP_Hook->do_action(Array) #3 /home/u168213674/domains/webpriuli.com/public_html/wp-admin/includes/class-wp-posts-list-table.php(1269): do_action(‘manage_posts_cu…’, ‘portfolio_entri…’, 3408) #4 /home/u168213674/domains/webpriuli.com/public_html/wp-admin/includes/class-wp-list-table.php(1447): WP_Posts_List_Table->column_default(Object(WP_Post), ‘portfolio_entri…’) #5 /home/u168213674/domains/webpriuli.com/public_html/wp-admin/includes/class-wp-posts-list-table.php( in /home/u168213674/domains/webpriuli.com/public_html/wp-content/themes/enfold/includes/admin/register-portfolio.php on line 143
There has been a critical error on this website. Please check your site admin email inbox for instructions.
Learn more about troubleshooting WordPress.
______________________________

I’ve already reinstalled the Rankmath and also talked to the Server provider, no solution until now.

The Temporary Access was created to you guys as requested before by Nikko.

I’ll be looking forward to hearing from you.

Many thanks in advance,

Cheers,
Eduardo.

#1296495

The error REPORT:

Fatal error: Uncaught Error: Object of class WP_Error could not be converted to string in /home/u168213674/domains/webpriuli.com/public_html/wp-content/themes/enfold/includes/admin/register-portfolio.php:143 Stack trace: #0 /home/u168213674/domains/webpriuli.com/public_html/wp-includes/class-wp-hook.php(294): prod_custom_columns(‘portfolio_entri…’) #1 /home/u168213674/domains/webpriuli.com/public_html/wp-includes/class-wp-hook.php(316): WP_Hook->apply_filters(NULL, Array) #2 /home/u168213674/domains/webpriuli.com/public_html/wp-includes/plugin.php(484): WP_Hook->do_action(Array) #3 /home/u168213674/domains/webpriuli.com/public_html/wp-admin/includes/class-wp-posts-list-table.php(1269): do_action(‘manage_posts_cu…’, ‘portfolio_entri…’, 441) #4 /home/u168213674/domains/webpriuli.com/public_html/wp-admin/includes/class-wp-list-table.php(1447): WP_Posts_List_Table->column_default(Object(WP_Post), ‘portfolio_entri…’) #5 /home/u168213674/domains/webpriuli.com/public_html/wp-admin/includes/class-wp-posts-list-table.php(1 in /home/u168213674/domains/webpriuli.com/public_html/wp-content/themes/enfold/includes/admin/register-portfolio.php on line 143
There has been a critical error on this website. Please check your site admin email inbox for instructions.

#1296494
Priuli
Participant

Hi Guys,

good morning.

After the latest update, working on my portfolio I got an issue and get all stuck, I cannot visualize some portfolio entries anymore.

Check it out the issues, the WP warning report me Enfold Issue, I try already check with Server if could be a Database problem, nothing found.

Here the print screen how it’s showing: https://prnt.sc/11yob0g

Dettagli dell’errore
====================
Un errore di E_ERROR è stato causato nella linea 143 del file /home/u168213674/domains/webpriuli.com/public_html/wp-content/themes/enfold/includes/admin/register-portfolio.php. Messaggio di errore: Uncaught Error: Object of class WP_Error could not be converted to string in /home/u168213674/domains/webpriuli.com/public_html/wp-content/themes/enfold/includes/admin/register-portfolio.php:143
Stack trace:
#0 /home/u168213674/domains/webpriuli.com/public_html/wp-includes/class-wp-hook.php(294): prod_custom_columns(‘portfolio_entri…’)
#1 /home/u168213674/domains/webpriuli.com/public_html/wp-includes/class-wp-hook.php(316): WP_Hook->apply_filters(NULL, Array)
#2 /home/u168213674/domains/webpriuli.com/public_html/wp-includes/plugin.php(484): WP_Hook->do_action(Array)
#3 /home/u168213674/domains/webpriuli.com/public_html/wp-admin/includes/class-wp-posts-list-table.php(1269): do_action(‘manage_posts_cu…’, ‘portfolio_entri…’, 441)
#4 /home/u168213674/domains/webpriuli.com/public_html/wp-admin/includes/class-wp-list-table.php(1447): WP_Posts_List_Table->column_default(Object(WP_Post), ‘portfolio_entri…’)
#5 /home/u168213674/domains/webpriuli.com/public_html/wp-admin/includes/class-wp-posts-list-table.php(1

Thank you in advance for any advice!!!!

Cheers,
Eduardo.

#1293028

Topic: Fatal error

in forum Enfold
Telmore
Participant

I have installed the “Gutenberg Post Blocks” plugin, pro version. It all worked fine until late yesterday. I dont know what happend, but suddenly a fatal error appeared. Can you help?

The error says: Fatal error: Uncaught Error: Object of class WP_Error could not be converted to string in /var/www/telman.dk/test/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/element-templates.class.php:731 Stack trace: #0 /var/www/telman.dk/test/wp-includes/class-wp-hook.php(292): aviaElementTemplates->handler_pages_custom_column(0, 20901) #1 /var/www/telman.dk/test/wp-includes/class-wp-hook.php(316): WP_Hook->apply_filters(NULL, Array) #2 /var/www/telman.dk/test/wp-includes/plugin.php(484): WP_Hook->do_action(Array) #3 /var/www/telman.dk/test/wp-admin/includes/class-wp-posts-list-table.php(1269): do_action(‘manage_posts_cu…’, 0, 20901) #4 /var/www/telman.dk/test/wp-admin/includes/class-wp-list-table.php(1447): WP_Posts_List_Table->column_default(Object(WP_Post), 0) #5 /var/www/telman.dk/test/wp-admin/includes/class-wp-posts-list-table.php(1315): WP_List_Table->single_row_columns(Object(WP_Post)) #6 /var/www/telman.dk/test/wp-admin/includes/class-wp-posts-list-table.php(750): WP_Posts_List_Table->single_ro in /var/www/telman.dk/test/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/element-templates.class.php on line 731
Der er sket en kritisk fejl på dit websted. Tjek venligst dit websteds administrator e-mail indbakke for instruktioner.

Learn more about troubleshooting WordPress.

#1278430

Topic: Avia_Gutenberg Error

in forum Enfold
welti
Participant

Hallo

Ich benötige Support für dieses Problem.:

==============
Ein Fehler vom Typ E_ERROR wurde in der Zeile 694 der Datei /home/web/201182/htdocs/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php verursacht. Fehlermeldung: Uncaught TypeError: Argument 1 passed to Avia_Gutenberg::handler_display_post_states() must be of the type array, null given, called in /home/web/201182/htdocs/wp-includes/class-wp-hook.php on line 287 and defined in /home/web/201182/htdocs/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:694
Stack trace:
#0 /home/web/201182/htdocs/wp-includes/class-wp-hook.php(287): Avia_Gutenberg->handler_display_post_states(NULL, Object(WP_Post))
#1 /home/web/201182/htdocs/wp-includes/plugin.php(212): WP_Hook->apply_filters(NULL, Array)
#2 /home/web/201182/htdocs/wp-admin/includes/template.php(2233): apply_filters(‘display_post_st…’, Array, Object(WP_Post))
#3 /home/web/201182/htdocs/wp-admin/includes/template.php(2137): get_post_states(Object(WP_Post))
#4 /home/web/201182/htdocs/wp-admin/includes/class-wp-posts-list-table.php(1041): _post_states(Object(WP_Post))
#5 /home/web/201182/htdocs/wp-admin/includes/class-wp-posts-list-table.php(963): WP_Posts_List_Table->column_title(Object(WP_Post))
#6 /home/w

Hi Rikard
Thanks for the help. I didn’t realize that error message was targeting a specific portfolio item – I trashed that item and it also had the error when in the trash so permanently deleted it. No error message now. I’ll check the plugins.
I do wonder about all these emails I get from wordpress about a problem on the site.

An error of type E_ERROR occurred in line 143 in the file /customers/e/d/0/joshuatree.dk/httpd.www/wp-content/themes/enfold/includes/admin/register-portfolio.php. Error Message: Not Captured Error: WP_Error class could not be converted to string in /customers/e/d/0/joshuatree.dk/httpd.www/wp-content/themes/enfold/includes/admin/register-portfolio.php : 143
Stack traces:
# 0 /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/class-wp-hook.php(289): prod_custom_column (‘portfolio_entri …’)
# 1 /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/class-wp-hook.php(311): WP_Hook-> Apply_filters (NULL, Array)
# 2 /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/plugin.php(478): WP_Hook-> do_action (Array)
# 3 /customers/e/d/0/joshuatree.dk/httpd.www/wp-admin/includes/class-wp-posts-list-table.php(1258): do_action (‘manage_posts_cu …’, ‘ portfolio_entri … ‘, 8845)
# 4 /customers/e/d/0/joshuatree.dk/httpd.www/wp-admin/includes/class-wp-list-table.php(1410): WP_Posts_List_Table-> column_default (Object (WP_Post), ‘portfolio_entri … ‘)
# 5 /customers/e/d/0/joshuatree.dk/httpd.www/wp-admin/includes/class-wp-posts-list-table.php(1304): WP_List_Table-> single_row_column (Object (WP_Post))
# 6 / customer

Should I just ignore this?
thanks
Nancy

#1245134

sorry that was the wrong message I copied!
this is what I keep getting from WP:

From WordPress 5.2, there is a built-in feature that detects when a plugin or theme is to blame for a bug on your site, and notifies you through this automated email.

In this case, WordPress has found a bug in your theme, Enfold.

First of all, visit your website (https://www.joshuatree.dk/) and see if there are any visible problems. Next, visit the page where the error was found (https://www.joshuatree.dk/wp-admin/edit.php?post_type=portfolio) and see if there are any visible problems.

Contact your host for help investigating this issue further.

If your page appears to be broken and you do not have access to your control panel as usual, WordPress now has a special “restore mode”. This lets you log in securely to the control panel so you can investigate the error further.

https://www.joshuatree.dk/wp-login.php?action=enter_recovery_mode&rm_token=sGVINp8Yo6ekUEXvmUvmGc&rm_key=fsXm56LcbxvT9AbA496vI8

To keep your site safe, this link will expire in 1 day. Do not worry. If the error occurs again, after this time, a new email will be sent to you.

If you are asking for help with this issue, you may be asked for some of the following information:
WordPress version 5.5.1
Current theme: Enfold Child Theme (version 1.0)
Current plugin: (version)
PHP version 7.4.10

Details of errors
================
An error of type E_ERROR occurred in line 143 in the file /customers/e/d/0/joshuatree.dk/httpd.www/wp-content/themes/enfold/includes/admin/register-portfolio.php. Error Message: Uncaught Error: Object of class WP_Error could not be converted to string in /customers/e/d/0/joshuatree.dk/httpd.www/wp-content/themes/enfold/includes/admin/register-portfolio.php : 143
Stack trace:
# 0 /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/class-wp-hook.php(289): prod_custom_columns (‘portfolio_entri …’)
# 1 /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/class-wp-hook.php(311): WP_Hook-> apply_filters (NULL, Array)
# 2 /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/plugin.php(478): WP_Hook-> do_action (Array)
# 3 /customers/e/d/0/joshuatree.dk/httpd.www/wp-admin/includes/class-wp-posts-list-table.php(1258): do_action (‘manage_posts_cu …’, ‘ portfolio_entri … ‘, 8845)
# 4 /customers/e/d/0/joshuatree.dk/httpd.www/wp-admin/includes/class-wp-list-table.php(1410): WP_Posts_List_Table-> column_default (Object (WP_Post), ‘portfolio_entri … ‘)
# 5 /customers/e/d/0/joshuatree.dk/httpd.www/wp-admin/includes/class-wp-posts-list-table.php(1304): WP_List_Table-> single_row_columns (Object (WP_Post))
# 6 / customer

what to do?
Nancy

#1235726

here is a corrected table.php file:
See: Link
Download: DL-Link

added code to line 538 the missing : {$meta['custom_el_id']}

on the line 465 it is already there

#1231953

In reply to: cannot edit tables

Hi,

Thank you for the update.

Yes, it should work properly as long as the table shortcodes in the child theme is disabled. Or if you intend to modify the table, just make sure that the child theme’s table.php file contains the latest code.

Best regards,
Ismael

#1231705

In reply to: cannot edit tables

Hi,

Thank you for the inquiry.

There is a table.php file inside the custom-codes folder in the child theme directory, which overrides the default table shortcode. We disabled the avia_load_shortcodes filter in the functions.php file temporarily to disable the modified table shortcode.

Best regards,
Ismael

spidercreations
Participant

After updating to v2.0.7 from v2.0.6 of the Five Star Restaurant Menu plugin (https://www.fivestarplugins.com/plugins/five-star-restaurant-menu/), experienced fatal errors on the website. Front end was actually OK, but on the backend I could not access the Posts or the Events custom post types (Events Calendar Pro). The error is as follows:

Fatal error: Uncaught TypeError: Argument 1 passed to Avia_Gutenberg::handler_add_edit_link() must be of the type array, null given, called in /home/firepr/public_html/wp-includes/class-wp-hook.php on line 288 and defined in /home/firepr/public_html/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:714 Stack trace: #0 /home/firepr/public_html/wp-includes/class-wp-hook.php(288): Avia_Gutenberg->handler_add_edit_link(NULL, Object(WP_Post)) #1 /home/firepr/public_html/wp-includes/plugin.php(206): WP_Hook->apply_filters(NULL, Array) #2 /home/firepr/public_html/wp-admin/includes/class-wp-posts-list-table.php(1445): apply_filters(‘post_row_action…’, Array, Object(WP_Post)) #3 /home/firepr/public_html/wp-admin/includes/class-wp-posts-list-table.php(956): WP_Posts_List_Table->handle_row_actions(Object(WP_Post), ‘title’, ‘title’) #4 /home/firepr/public_html/wp-admin/includes/class-wp-list-table.php(1352): WP_Posts_List_Table->_column_title(Object(WP_Post), ‘title column-ti…’, ‘data-colname=”T…’, ‘title’) #5 in /home/firepr/public_html/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php on line 714

I deactivated all plugins and the problem went away. Selecting activating plugins and testing revealed rolling back to the previous version of Five Star Restaurant Menu solved the issue.

Both the Events content items and the Posts look like this – https://pasteboard.co/IZ5CDGd.jpg
First event is sort of shown but the error is there (with debug TRUE). Note the issue does not show up on the listing of Pages, only Posts and CPTs from ECP.

Running a current version of the Enfold theme. Since the error is obviously pointing to an Enfold theme folder, I think it may be related to an issue in the code. I’ve also contacted support from the Five Star plugin developers.

Let me know,
Steve

#1156774
ronnieaerts
Participant

Hi,

Yesterday I updated my theme to version 4.6.3.1
Everything worked fine. Today I update to a new version of wordpress and I get an fatal error in backend with the portfolio items.

Wordpress report:
An error of type E_ERROR was caused in line 619 of the file http://www.mysite.com/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php. Error message: Uncaught TypeError: Argument 1 passed to Avia_Gutenberg::handler_display_post_states() must be of the type array, null given, called in http://www.mysite.com/wp-includes/class-wp-hook.php on line 288 and defined in http://www.mysite.com/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:619
Stack trace:
#0 http://www.mysite.com/wp-includes/class-wp-hook.php(288): Avia_Gutenberg->handler_display_post_states(NULL, Object(WP_Post))
#1www.mysite.com/wp-includes/plugin.php(206): WP_Hook->apply_filters(NULL, Array)
#2www.mysite.com/wp-admin/includes/template.php(2168): apply_filters(‘display_post_st…’, Array, Object(WP_Post))
#3 http://www.mysite.com/wp-admin/includes/template.php(2077): get_post_states(Object(WP_Post))
#4www.mysite.com/wp-admin/includes/class-wp-posts-list-table.php(1033): _post_states(Object(WP_Post))

My current versions
WordPress version 5.3
Current theme: Enfold (version 4.6.3.1)
Current plugin: (version )
PHP version 7.1.30-1+0~20190531112602.19+stretch~1.gbpab9d28

What can I do to resolve this problem?

  • This topic was modified 5 years, 4 months ago by ronnieaerts.

hi Mike,

Thanks, I did what you wrote, but somehow the original table.css from /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table keeps being loaded. I tried with and without the table.php in the /wp-content/themes/enfold-child/shortcodes/table/
Also changed different settings in the Performance-tabs of the Enfold Settings /wp-admin/admin.php?page=avia: disable or enable compression css and js.
But it keeps loading from the main theme. Am I missing something?

thanks,
Karin

#1108305
mayelalala
Participant

hello guys, first of all your theme is awesome and very easy to use, everything was perfect until I keep getting email errors with this code:

please, please can you help me?

Uncaught TypeError: Argument 1 passed to Avia_Gutenberg::handler_display_post_states() must be of the type array, null given, called in /home/hl5fu6rmmydw/public_html/wp-includes/class-wp-hook.php on line 286 and defined in /home/hl5fu6rmmydw/public_html/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:623 
Stack trace: 
#0 /home/hl5fu6rmmydw/public_html/wp-includes/class-wp-hook.php(286): Avia_Gutenberg->handler_display_post_states(NULL, Object(WP_Post)) 
#1 /home/hl5fu6rmmydw/public_html/wp-includes/plugin.php(208): WP_Hook->apply_filters(NULL, Array) 
#2 /home/hl5fu6rmmydw/public_html/wp-admin/includes/template.php(2071): apply_filters('display_post_st...', Array, Object(WP_Post)) 
#3 /home/hl5fu6rmmydw/public_html/wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-products.php(168): _post_states(Object(WP_Post)) 
#4 /home/hl5fu6rmmydw/public_html/wp-content/plugins/woocommerce/includes/admin/list-tables/abstract-class-wc-admin-list-table.php(261): WC_Admin_List
...
#1108063
gharry79
Participant

Hi,

I installed WooCommerce and after activating I get now this error:

Fatal error: Allowed memory size of 78643200 bytes exhausted (tried to allocate 65536 bytes) in /home/.sites/999/site7438299/web/wp-admin/includes/class-wp-list-table.php on line 382 Fatal error: Allowed memory size of 78643200 bytes exhausted (tried to allocate 65536 bytes) in Unknown on line 0

What can I do? I deleted the Plugin and now my Website works great without an error. But I want to use WooCommerce. So what I have do, that WooCommerce works fine?

Thank you.

Best,
Harry

Hi

I already had disalbe the Gutenberg editor. And now I don’t know where the problem is with Enfold or with the Salonbooking-plugin. This morning all my created pages where gone and I saw again this:
Fatal error: Uncaught TypeError: Argument 1 passed to Avia_Gutenberg::handler_display_post_states() must be of the type array, null given, called in /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-includes/class-wp-hook.php on line 286 and defined in /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:611 Stack trace: #0 /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-includes/class-wp-hook.php(286): Avia_Gutenberg->handler_display_post_states(NULL, Object(WP_Post)) #1 /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-includes/plugin.php(203): WP_Hook->apply_filters(NULL, Array) #2 /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-admin/includes/template.php(1933): apply_filters(‘display_post_st…’, Array, Object(WP_Post)) #3 /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-admin/includes/class-wp-posts-list-table.php(943): _post_states(Object(WP_Post)) #4 /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-admin/includes/class-w in /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php on line 611

Maureen van Goethem
Participant

Hi there,

This morning I installed WordPress 5.0.3. and Enfold and later ‘Salon Booking WordPress Plugin’.

An error occurred on the tab pages (overview) and then in the title-section. Just one page was visible and all others were not and also settings above was not possible.

Fatal error: Uncaught TypeError: Argument 1 passed to Avia_Gutenberg::handler_display_post_states() must be of the type array, null given, called in /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-includes/class-wp-hook.php on line 286 and defined in /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:611 Stack trace: #0 /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-includes/class-wp-hook.php(286): Avia_Gutenberg->handler_display_post_states(NULL, Object(WP_Post)) #1 /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-includes/plugin.php(203): WP_Hook->apply_filters(NULL, Array) #2 /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-admin/includes/template.php(1933): apply_filters(‘display_post_st…’, Array, Object(WP_Post)) #3 /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-admin/includes/class-wp-posts-list-table.php(943): _post_states(Object(WP_Post)) #4 /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-admin/includes/class-w in /var/www/vhosts/hondentrimsalon-bodine.nl/httpdocs/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php on line 611

I tested Salon Booking WordPress Plugin like described in https://www.salonbookingsystem.com/how-to-debug-salon-booking-plugin/
It works with the standard theme Twenty Nineteen but not with Kriesi Enfold.

Can you help us?

I also sent this text to WPChef (producer of ‘Salon Booking WordPress Plugin’)

yanknudtskov
Participant

Hi there,

When using WordPress 5+, Enfold and WooCommerce memberships it will throw a fatal error when editing WooCommerce > Memberships

I’m pretty sure this is an Enfold specific incompatibility as other sites running WooCommerce Memberships and WordPress 5+ doesn’t have this Fatal Error.

Here’s the debug output
Fatal error: Uncaught TypeError: Argument 1 passed to Avia_Gutenberg::handler_display_post_states() must be of the type array, string given, called in /var/www/DOMAIN.COM.CLOAKED/public_html/wp-includes/class-wp-hook.php on line 286 and defined in /var/www/DOMAIN.COM.CLOAKED/public_html/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:366 Stack trace: #0 /var/www/DOMAIN.COM.CLOAKED/public_html/wp-includes/class-wp-hook.php(286): Avia_Gutenberg->handler_display_post_states('', Object(WP_Post)) #1 /var/www/DOMAIN.COM.CLOAKED/public_html/wp-includes/plugin.php(203): WP_Hook->apply_filters('', Array) #2 /var/www/DOMAIN.COM.CLOAKED/public_html/wp-admin/includes/template.php(1933): apply_filters('display_post_st...', Array, Object(WP_Post)) #3 /var/www/DOMAIN.COM.CLOAKED/public_html/wp-admin/includes/class-wp-posts-list-table.php(943): _post_states(Object(WP_Post)) #4 /var/www/DOMAIN.COM.CLOAKED/public_html/wp-admin/includes/class-wp-posts-list-table.php(857): WP_Posts_List_Table->column_title(Object(WP_Post)) #5 /var/www/p in /var/www/DOMAIN.COM.CLOAKED/public_html/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php on line 366

The error happens because /enfold/config-gutenberg/class-avia-gutenberg.php on line 366 this function
public function handler_display_post_states( array $post_states, WP_Post $post )

Assums that $post_states is always an array, which it iisn’t nessecarily, it can also be a string.

It should be changed to
public function handler_display_post_states( $post_states, WP_Post $post )

Then in the same file on line 382 it is assumed again to be an array

$key = array_search( 'Gutenberg', $post_states );
					if( false !== $key )
					{
						unset( $post_states[ $key ] );
					}

It should be changed to check if it’s actually an array

if( is_array($post_states ) ) {
					$key = array_search( 'Gutenberg', $post_states );
					if( false !== $key )
					{
						unset( $post_states[ $key ] );
					}
				}

Kind Regard
Yan Knudtskov

#1030842

This is what I get when i try to upload the latest version

Unpacking the package…

Upgrading your theme…

No backup of old version of theme created. Backup option disabled in settings.

Removing the old version of the theme…

The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions. config-events-calendar/views/single-event-no-mobile.php, config-layerslider/LayerSlider/classes/class.ls.config.php, config-layerslider/LayerSlider/classes/class.ls.popups.php, config-layerslider/LayerSlider/includes/slider_markup_export.php, config-layerslider/LayerSlider/static/admin/css/addons.css, config-layerslider/LayerSlider/static/admin/css/index.php, config-layerslider/LayerSlider/static/admin/css/plugin_settings.css, config-layerslider/LayerSlider/static/admin/img/ao-bm-blend.jpg, config-layerslider/LayerSlider/static/admin/img/ao-bm-text.png, config-layerslider/LayerSlider/static/admin/img/ao-bm.jpg, config-layerslider/LayerSlider/static/admin/img/ao-fil.jpg, config-layerslider/LayerSlider/static/admin/img/ao-ori.jpg, config-layerslider/LayerSlider/static/admin/img/ao-pbs.jpg, config-layerslider/LayerSlider/static/admin/img/ao-pop.jpg, config-layerslider/LayerSlider/static/admin/img/ao-rev.jpg, config-layerslider/LayerSlider/static/admin/img/ao-tpl.jpg, config-layerslider/LayerSlider/static/admin/img/index.php, config-layerslider/LayerSlider/static/admin/img/layout-popup.png, config-layerslider/LayerSlider/static/admin/img/popup-example-bg.jpg, config-layerslider/LayerSlider/static/admin/img/popup-example-slidy.png, config-layerslider/LayerSlider/static/admin/js/index.php, config-layerslider/LayerSlider/static/admin/js/ls-admin-addons.js, config-layerslider/LayerSlider/static/admin/js/ls-admin-settings.js, config-layerslider/LayerSlider/static/admin/media/index.php, config-layerslider/LayerSlider/static/admin/scss/addons.scss, config-layerslider/LayerSlider/static/admin/scss/index.php, config-layerslider/LayerSlider/static/admin/scss/plugin_settings.scss, config-layerslider/LayerSlider/static/admin/index.php, config-layerslider/LayerSlider/static/air-datepicker/i18n/index.php, config-layerslider/LayerSlider/static/air-datepicker/index.php, config-layerslider/LayerSlider/static/codemirror/addon/comment/index.php, config-layerslider/LayerSlider/static/codemirror/addon/dialog/index.php, config-layerslider/LayerSlider/static/codemirror/addon/display/index.php, config-layerslider/LayerSlider/static/codemirror/addon/edit/index.php, config-layerslider/LayerSlider/static/codemirror/addon/fold/index.php, config-layerslider/LayerSlider/static/codemirror/addon/hint/index.php, config-layerslider/LayerSlider/static/codemirror/addon/lint/index.php, config-layerslider/LayerSlider/static/codemirror/addon/merge/index.php, config-layerslider/LayerSlider/static/codemirror/addon/mode/index.php, config-layerslider/LayerSlider/static/codemirror/addon/runmode/index.php, config-layerslider/LayerSlider/static/codemirror/addon/scroll/index.php, config-layerslider/LayerSlider/static/codemirror/addon/search/index.php, config-layerslider/LayerSlider/static/codemirror/addon/selection/index.php, config-layerslider/LayerSlider/static/codemirror/addon/tern/index.php, config-layerslider/LayerSlider/static/codemirror/addon/wrap/index.php, config-layerslider/LayerSlider/static/codemirror/addon/index.php, config-layerslider/LayerSlider/static/codemirror/keymap/index.php, config-layerslider/LayerSlider/static/codemirror/lib/index.php, config-layerslider/LayerSlider/static/codemirror/mode/css/index.php, config-layerslider/LayerSlider/static/codemirror/mode/htmlembedded/index.php, config-layerslider/LayerSlider/static/codemirror/mode/htmlmixed/index.php, config-layerslider/LayerSlider/static/codemirror/mode/javascript/index.php, config-layerslider/LayerSlider/static/codemirror/mode/php/index.php, config-layerslider/LayerSlider/static/codemirror/mode/sass/index.php, config-layerslider/LayerSlider/static/codemirror/mode/sql/index.php, config-layerslider/LayerSlider/static/codemirror/mode/xml/index.php, config-layerslider/LayerSlider/static/codemirror/mode/index.php, config-layerslider/LayerSlider/static/codemirror/theme/index.php, config-layerslider/LayerSlider/static/codemirror/index.php, config-layerslider/LayerSlider/static/dashicons/index.php, config-layerslider/LayerSlider/static/layerslider/css/index.php, config-layerslider/LayerSlider/static/layerslider/js/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/debug/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/origami/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/timeline/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/popup/layerslider.popup.css, config-layerslider/LayerSlider/static/layerslider/plugins/popup/index.php, config-layerslider/LayerSlider/static/layerslider/plugins/popup/layerslider.popup.js, config-layerslider/LayerSlider/static/layerslider/skins/borderlessdark/index.php, config-layerslider/LayerSlider/static/layerslider/skins/borderlessdark3d/index.php, config-layerslider/LayerSlider/static/layerslider/skins/borderlesslight/index.php, config-layerslider/LayerSlider/static/layerslider/skins/borderlesslight3d/index.php, config-layerslider/LayerSlider/static/layerslider/skins/carousel/index.php, config-layerslider/LayerSlider/static/layerslider/skins/darkskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/defaultskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/fullwidth/index.php, config-layerslider/LayerSlider/static/layerslider/skins/fullwidthdark/index.php, config-layerslider/LayerSlider/static/layerslider/skins/glass/index.php, config-layerslider/LayerSlider/static/layerslider/skins/lightskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/minimal/index.php, config-layerslider/LayerSlider/static/layerslider/skins/noskin/index.php, config-layerslider/LayerSlider/static/layerslider/skins/numbers/index.php, config-layerslider/LayerSlider/static/layerslider/skins/outline/index.php, config-layerslider/LayerSlider/static/layerslider/skins/roundedflat/index.php, config-layerslider/LayerSlider/static/layerslider/skins/v5/index.php, config-layerslider/LayerSlider/static/layerslider/skins/v5/skin-min.css, config-layerslider/LayerSlider/static/layerslider/skins/v6/index.php, config-layerslider/LayerSlider/static/layerslider/skins/index.php, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/index.php, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/info.json, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/loading.gif, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/nothumb.png, config-layerslider/LayerSlider/static/layerslider/skins/photogallery/skin.css, config-layerslider/LayerSlider/static/layerslider/index.php, config-layerslider/LayerSlider/static/minicolors/index.php, config-layerslider/LayerSlider/static/public/index.php, config-layerslider/LayerSlider/static/shuffle/index.php, config-layerslider/LayerSlider/static/index.php, config-layerslider/LayerSlider/static/dindent/Indenter.php, config-layerslider/LayerSlider/static/dindent/index.php, config-layerslider/LayerSlider/static/dindent/Exception/index.php, config-layerslider/LayerSlider/static/dindent/Exception/DindentException.php, config-layerslider/LayerSlider/static/dindent/Exception/InvalidArgumentException.php, config-layerslider/LayerSlider/static/dindent/Exception/RuntimeException.php, config-layerslider/LayerSlider/static/font-awesome/index.php, config-layerslider/LayerSlider/static/font-awesome/css/font-awesome.min.css, config-layerslider/LayerSlider/static/font-awesome/css/font-awesome.css, config-layerslider/LayerSlider/static/font-awesome/css/index.php, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.eot, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.svg, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.ttf, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.woff, config-layerslider/LayerSlider/static/font-awesome/fonts/fontawesome-webfont.woff2, config-layerslider/LayerSlider/static/font-awesome/fonts/FontAwesome.otf, config-layerslider/LayerSlider/static/font-awesome/fonts/index.php, config-layerslider/LayerSlider/static/html2canvas/html2canvas.min.js, config-layerslider/LayerSlider/templates/tmpl-addons.php, config-layerslider/LayerSlider/templates/tmpl-button-presets.php, config-layerslider/LayerSlider/templates/tmpl-import-layer.php, config-layerslider/LayerSlider/templates/tmpl-import-slide.php, config-layerslider/LayerSlider/templates/tmpl-insert-icons-modal.php, config-layerslider/LayerSlider/templates/tmpl-insert-media-modal.php, config-layerslider/LayerSlider/templates/tmpl-popup-example-slider.php, config-layerslider/LayerSlider/templates/tmpl-popup-presets-window.php, config-layerslider/LayerSlider/templates/tmpl-post-chooser.php, config-layerslider/LayerSlider/templates/tmpl-preview-context-menu.php, config-layerslider/LayerSlider/templates/tmpl-slide-tab.php, config-layerslider/LayerSlider/templates/html-export/ls-instructions.png, config-layerslider/LayerSlider/templates/html-export/INSTRUCTIONS.html, config-layerslider/LayerSlider/templates/html-export/template.html, config-layerslider/LayerSlider/views/addons.php, config-layerslider/LayerSlider/views/css_editor.php, config-layerslider/LayerSlider/views/settings.php, config-templatebuilder/avia-shortcodes/.DS_Store, config-templatebuilder/avia-shortcodes/audio-player/audio-player.js, config-templatebuilder/avia-shortcodes/audio-player/audio-player.css, config-templatebuilder/avia-shortcodes/audio-player/audio-player.php, config-templatebuilder/avia-shortcodes/blog/blog.php, config-templatebuilder/avia-shortcodes/blog/blog.css, config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php, config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css, config-templatebuilder/avia-shortcodes/buttons/buttons.php, config-templatebuilder/avia-shortcodes/buttons/buttons.css, config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php, config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css, config-templatebuilder/avia-shortcodes/catalogue/catalogue.php, config-templatebuilder/avia-shortcodes/catalogue/catalogue.css, config-templatebuilder/avia-shortcodes/comments/comments.php, config-templatebuilder/avia-shortcodes/comments/comments.css, config-templatebuilder/avia-shortcodes/contact/contact.js, config-templatebuilder/avia-shortcodes/contact/contact.css, config-templatebuilder/avia-shortcodes/contact/contact.php, config-templatebuilder/avia-shortcodes/contentslider/contentslider.php, config-templatebuilder/avia-shortcodes/contentslider/contentslider.css, config-templatebuilder/avia-shortcodes/countdown/countdown.js, config-templatebuilder/avia-shortcodes/countdown/countdown.css, config-templatebuilder/avia-shortcodes/countdown/countdown.php, config-templatebuilder/avia-shortcodes/events_countdown/events_countdown.php, config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.css, config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.php, config-templatebuilder/avia-shortcodes/gallery/gallery.js, config-templatebuilder/avia-shortcodes/gallery/gallery.css, config-templatebuilder/avia-shortcodes/gallery/gallery.php, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.php, config-templatebuilder/avia-shortcodes/google_maps/google_maps.php, config-templatebuilder/avia-shortcodes/google_maps/google_maps.css, config-templatebuilder/avia-shortcodes/grid_row/grid_row.css, config-templatebuilder/avia-shortcodes/grid_row/cell.php, config-templatebuilder/avia-shortcodes/grid_row/grid_row.php, config-templatebuilder/avia-shortcodes/heading/heading.php, config-templatebuilder/avia-shortcodes/heading/heading.css, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.php, config-templatebuilder/avia-shortcodes/hr/hr.php, config-templatebuilder/avia-shortcodes/hr/hr.css, config-templatebuilder/avia-shortcodes/icon/icon.php, config-templatebuilder/avia-shortcodes/icon/icon.css, config-templatebuilder/avia-shortcodes/iconbox/iconbox.php, config-templatebuilder/avia-shortcodes/iconbox/iconbox.css, config-templatebuilder/avia-shortcodes/icongrid/icongrid.js, config-templatebuilder/avia-shortcodes/icongrid/icongrid.css, config-templatebuilder/avia-shortcodes/icongrid/icongrid.php, config-templatebuilder/avia-shortcodes/iconlist/iconlist.js, config-templatebuilder/avia-shortcodes/iconlist/iconlist.css, config-templatebuilder/avia-shortcodes/iconlist/iconlist.php, config-templatebuilder/avia-shortcodes/image/image.php, config-templatebuilder/avia-shortcodes/image/image.css, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.js, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.php, config-templatebuilder/avia-shortcodes/logoslider/logoslider.php, config-templatebuilder/avia-shortcodes/magazine/magazine.css, config-templatebuilder/avia-shortcodes/magazine/magazine.js, config-templatebuilder/avia-shortcodes/magazine/magazine.php, config-templatebuilder/avia-shortcodes/mailchimp/mailchimp.php, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.php, config-templatebuilder/avia-shortcodes/masonry_gallery/masonry_gallery.php, config-templatebuilder/avia-shortcodes/masonry_gallery/.DS_Store, config-templatebuilder/avia-shortcodes/menu/menu.js, config-templatebuilder/avia-shortcodes/menu/menu.css, config-templatebuilder/avia-shortcodes/menu/menu.php, config-templatebuilder/avia-shortcodes/notification/notification.js, config-templatebuilder/avia-shortcodes/notification/notification.css, config-templatebuilder/avia-shortcodes/notification/notification.php, config-templatebuilder/avia-shortcodes/numbers/numbers.js, config-templatebuilder/avia-shortcodes/numbers/numbers.css, config-templatebuilder/avia-shortcodes/numbers/numbers.php, config-templatebuilder/avia-shortcodes/portfolio/portfolio.css, config-templatebuilder/avia-shortcodes/portfolio/isotope.js, config-templatebuilder/avia-shortcodes/portfolio/portfolio.js, config-templatebuilder/avia-shortcodes/portfolio/portfolio.php, config-templatebuilder/avia-shortcodes/postslider/postslider.php, config-templatebuilder/avia-shortcodes/postslider/postslider.css, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_info.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_button.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_meta.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_price.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_review.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_tabs.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_upsells.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippets.php, config-templatebuilder/avia-shortcodes/productslider/productslider.php, config-templatebuilder/avia-shortcodes/progressbar/progressbar.css, config-templatebuilder/avia-shortcodes/progressbar/progressbar.js, config-templatebuilder/avia-shortcodes/progressbar/progressbar.php, config-templatebuilder/avia-shortcodes/promobox/promobox.php, config-templatebuilder/avia-shortcodes/promobox/promobox.css, config-templatebuilder/avia-shortcodes/search/search.php, config-templatebuilder/avia-shortcodes/search/search.css, config-templatebuilder/avia-shortcodes/slideshow/slideshow.css, config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js, config-templatebuilder/avia-shortcodes/slideshow/slideshow.js, config-templatebuilder/avia-shortcodes/slideshow/slideshow.php, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.php, config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.php, config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.php, config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.php, config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php, config-templatebuilder/avia-shortcodes/social_share/social_share.css, config-templatebuilder/avia-shortcodes/social_share/.DS_Store, config-templatebuilder/avia-shortcodes/social_share/social_share.php, config-templatebuilder/avia-shortcodes/tab_section/tab_section.js, config-templatebuilder/avia-shortcodes/tab_section/tab_section.css, config-templatebuilder/avia-shortcodes/tab_section/tab_section.php, config-templatebuilder/avia-shortcodes/tab_section/tab_sub_section.php, config-templatebuilder/avia-shortcodes/table/table.php, config-templatebuilder/avia-shortcodes/table/table.css, config-templatebuilder/avia-shortcodes/tabs/tabs.js, config-templatebuilder/avia-shortcodes/tabs/tabs.css, config-templatebuilder/avia-shortcodes/tabs/tabs.php, config-templatebuilder/avia-shortcodes/team/team.php, config-templatebuilder/avia-shortcodes/team/team.css, config-templatebuilder/avia-shortcodes/testimonials/testimonials.css, config-templatebuilder/avia-shortcodes/testimonials/.DS_Store, config-templatebuilder/avia-shortcodes/testimonials/testimonials.js, config-templatebuilder/avia-shortcodes/testimonials/testimonials.php, config-templatebuilder/avia-shortcodes/timeline/timeline.js, config-templatebuilder/avia-shortcodes/timeline/timeline.css, config-templatebuilder/avia-shortcodes/timeline/timeline.php, config-templatebuilder/avia-shortcodes/toggles/toggles.js, config-templatebuilder/avia-shortcodes/toggles/toggles.css, config-templatebuilder/avia-shortcodes/toggles/toggles.php, config-templatebuilder/avia-shortcodes/video/video.js, config-templatebuilder/avia-shortcodes/video/video.css, config-templatebuilder/avia-shortcodes/video/video.php, config-templatebuilder/avia-template-builder/assets/css/avia-builder-rtl.css, config-templatebuilder/avia-template-builder/images/placeholder-audio.png, config-templatebuilder/avia-template-builder/images/sc-audio-player.png, config-templatebuilder/avia-template-builder/images/sc-buttonrow.png, config-templatebuilder/avia-template-builder/images/sc-icongrid.png, config-templatebuilder/avia-template-builder/images/sc-price.png, config-templatebuilder/avia-template-builder/images/sc-search.png, config-templatebuilder/avia-template-builder/images/sc-timeline.png, config-templatebuilder/avia-template-builder/php/asset-manager.class.php, config-templatebuilder/avia-template-builder/php/element-manager.class.php, config-templatebuilder/avia-template-builder/php/shortcode-parser.class.php, config-templatebuilder/avia-template-builder/php/external/JSqueeze.php, config-wpml/wpml-mod.js, css/avia-snippet-cookieconsent.css, css/avia-snippet-lightbox.css, css/avia-snippet-site-preloader.css, css/avia-snippet-widget.css, framework/css/conditional_load/avia_global_admin.css, (Email address hidden if logged out) , (Email address hidden if logged out) , (Email address hidden if logged out) , (Email address hidden if logged out) , (Email address hidden if logged out) , framework/js/conditional_load/avia_facebook_front.js, framework/js/conditional_load/avia_google_maps_api.js, framework/js/conditional_load/avia_google_maps_front.js, framework/js/conditional_load/avia_google_maps_widget_admin.js, framework/php/auto-updates/class-avia-envato-base-api.php, framework/php/auto-updates/class-avia-theme-updater.php, framework/php/class-gmaps.php, framework/php/font-management/class-avia-icon-fonts.php, framework/php/font-management/class-avia-font-management-base.php, framework/php/font-management/class-avia-type-fonts.php, images/layout/fake_facebook.jpg, images/layout/logo_modern.png, images/layout/search.png, includes/admin/demo_files/demo_images/agency-onepage.jpg, includes/admin/demo_files/demo_images/band.jpg, includes/admin/demo_files/demo_images/dark-photography.jpg, includes/admin/demo_files/demo_images/dj.jpg, includes/admin/demo_files/demo_images/elegant-portfolio.jpg, includes/admin/demo_files/demo_images/freelancer.jpg, includes/admin/demo_files/demo_images/gaming.jpg, includes/admin/demo_files/demo_images/knowledgebase.jpg, includes/admin/demo_files/demo_images/law.jpg, includes/admin/demo_files/demo_images/minimal-photography.jpg, includes/admin/demo_files/demo_images/visual-artist.jpg, includes/admin/demo_files/agency-onepage.php, includes/admin/demo_files/agency-onepage.xml, includes/admin/demo_files/band.php, includes/admin/demo_files/band.xml, includes/admin/demo_files/dark-photography.php, includes/admin/demo_files/dark-photography.xml, includes/admin/demo_files/dj.php, includes/admin/demo_files/dj.xml, includes/admin/demo_files/elegant-portfolio.php, includes/admin/demo_files/elegant-portfolio.xml, includes/admin/demo_files/freelancer.php, includes/admin/demo_files/freelancer.xml, includes/admin/demo_files/gaming.php, includes/admin/demo_files/gaming.xml, includes/admin/demo_files/knowledgebase.php, includes/admin/demo_files/knowledgebase.xml, includes/admin/demo_files/law.php, includes/admin/demo_files/law.xml, includes/admin/demo_files/minimal-photography.php, includes/admin/demo_files/minimal-photography.xml, includes/admin/demo_files/visual-artist.php, includes/admin/demo_files/visual-artist.xml, includes/helper-assets.php, includes/helper-privacy.php, js/aviapopup/.DS_Store, js/avia-snippet-cookieconsent.js, js/avia-snippet-lightbox.js, js/avia-snippet-megamenu.js, js/avia-snippet-sidebarmenu.js, js/avia-snippet-site-preloader.js, js/avia-snippet-sticky-header.js, js/avia-snippet-widget.js, lang/ca.mo, lang/ca.po, lang/pl_PL.mo, lang/pl_PL.po, lang/sk_SK.mo, lang/sk_SK.po, config-gutenberg/class-avia-gutenberg.php, config-menu-exchange/config.php

Theme update failed.

Hi,

Thank you for the update. Did you update the theme manually via FTP? There was a duplicate of the table.php file so we removed it. We are currently moving the shortcode files inside their own directory so previous shortcode files outside these directories will still exist after a manual update. Please remove the whole “config-templatebuilder” > “aviashortcodes” folder first if you’re planning to do a manual update again in the future.

Best regards,
Ismael

#921479

Hi,

In der Datei /woocommerce-germanized/templates/checkout/review-order-product-table.php line 33 gibt es ein Filter:


           <?php echo apply_filters( '<a href='https://refer.wordpress.com/r/84/<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>/' target='_blank' rel="nofollow"><a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a></a>_cart_item_name', wc_gzd_get_product_name( $_product ), $cart_item, $cart_item_key ) . ' '; ?>

In functions.php des Child Themes (oder des Hauptthemes, wenn Du kein Child Theme verwendest) am Ende füge das folgende ein (z.B. über Dashboard -> Appearance > Editor):



add_filter( 'woocommerce_cart_item_name', 'my_custom_cart_item_name', 10, 3 );

function my_custom_cart_item_name( $product_name, $cart_item, $cart_item_key )
{
	$url = get_permalink( $cart_item['product_id'] );
	return '<a href="'. $url .'" target="_blank" rel="nofollow">'. $product_name .'</a>';
}
		

Best regards,
Günter

#919759

Hallo,
auf der Seite Kasse werden unter “Deine Bestellung” alle Produkte im Warenkorb noch mal angezeigt.

Dort muss ich laut Händlerbund einen Link zu jedem Produkt setzten oder eine Beschreibung. Link wäre super. Ich verwende Woocommerce Germanized.
Wie kann ich so einen Link seten?
Am besten wäre es updatesicher, also durch Filter oder ein Override der Datei /wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-product-table.php
Wohin müsste ich dies Override speichern – In mein child Theme und wo dort?

Danke und viele Grüße Axel

  • This reply was modified 7 years, 1 month ago by PixxAgentur.
Viewing 30 results - 1 through 30 (of 107 total)