The latest version causes a fatal error when visiting the dashboard (WP version 6.2.2): PHP Fatal error: Uncaught Error: Class 'Jetpack_Options' not found in /wp-content/plugins/full-site-editing/help-center/class-help-center.php:139#012Stack trace:#012#0 /wp-content/plugins/full-site-editing/help-center/class-help-center.php(120): A8C\FSE\Help_Center->get_current_site()#012#1 /wp-content/plugins/full-site-editing/help-center/class-help-center.php(306): A8C\FSE\Help_Center->enqueue_script()#012#2 /wp-includes/class-wp-hook.php(308): A8C\FSE\Help_Center->enqueue_wp_admin_scripts('index.php')#012#3 /wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array)#012#4 /wp-includes/plugin.php(517): WP_Hook->do_action(Array)#012#5 /wp-admin/admin-header.php(118): do_action('admin_enqueue_s…', 'index.php')#012#6 /wp-admin/index.php(137): require_once('/nas/content/li…')#012#7 {main}#012 thr in /wp-content/plugins/full-site-editing/help-center/class-help-center.php on line 139
I discovered using the Regenerate Thumbnails plugin that this plugin is automatically generating more than a dozen thumbnails on each image upload..
newspack-article-block-landscape-large: 1200×900 pixels (cropped to fit)
newspack-article-block-portrait-large: 900×1200 pixels (cropped to fit)
newspack-article-block-square-large: 1200×1200 pixels (cropped to fit)
newspack-article-block-landscape-medium: 800×600 pixels (cropped to fit)
newspack-article-block-portrait-medium: 600×800 pixels (cropped to fit)
newspack-article-block-square-medium: 800×800 pixels (cropped to fit)
newspack-article-block-landscape-small: 400×300 pixels (cropped to fit)
newspack-article-block-portrait-small: 300×400 pixels (cropped to fit)
newspack-article-block-square-small: 400×400 pixels (cropped to fit)
newspack-article-block-landscape-tiny: 200×150 pixels (cropped to fit)
newspack-article-block-portrait-tiny: 150×200 pixels (cropped to fit)
newspack-article-block-square-tiny: 200×200 pixels (cropped to fit)
newspack-article-block-uncropped: 1200×9999 pixels (proportionally resized to fit inside dimensions)
How do I turn this setting off? Right now I’m having to use ThumbPress to manually deactivate them.. But I don’t want to keep a separate plugin just to solve this issue..
Thanks
]]>This plugin needs updating to be compatible with latest version of wordpress. Please…
]]>More and more and more critical errors after every update – Don’t you check before you push an update?
]]>with the latest trunk there are still 2 errors
Easiest way how to get rid of them is to comment out their add_action calls in full-site-editing-plugin.php but I believe, that Automatic should not make such errors in their plugins.
]]>I had previously rolled back to version 3.48 and kept this working version. Today I tried to update to version 3.53419
After upgrading The site worked but when then I could not get into the site dashboard.
Also I use the plugin for a list of posts in the home page. The site is RTL but the posts where shown LTR !
Had to manually rollback to version 3.48 again.
]]>Hi,
Is there any planified update for the WP 6.1.1 release?
Thank you.
]]> An error of type E_ERROR was caused in line 124 of the file /home/www/wordpress/wp-content/plugins/full-site-editing/help-center/class-help-center.php. Error message: Uncaught Error: Class "Jetpack_Options" not found in /home/www/wordpress/wp-content/plugins/full-site-editing/help-center/class-help-center.php:124
Stack trace:
#0 /home/www/wordpress/wp-content/plugins/full-site-editing/help-center/class-help-center.php(113): A8C\FSE\Help_Center->get_current_site()
#1 /home/www/wordpress/wp-content/plugins/full-site-editing/help-center/class-help-center.php(240): A8C\FSE\Help_Center->enqueue_script()
#2 /home/www/wordpress/wp-includes/class-wp-hook.php(308): A8C\FSE\Help_Center->enqueue_wp_admin_scripts('plugins.php')
#3 /home/www/wordpress/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array)
#4 /home/www/wordpress/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
#5 /home/www/wordpress/wp-admin/admin-header.php(118): do_action('admin_enqueue_s...', 'plugins.php')
#6 /home/www/wordpress/wp-admin/plugins.php(605): require_once('/home/klubterre...')
#7 {main}
thrown
I was able to fix the error by tweaking the code in www/wordpress/wp-content/plugins/full-site-editing/help-center/class-help-center.php lines 126-152.
Original code:
/**
* Get current site details.
*/
public function get_current_site()
{
$site = \Jetpack_Options::get_option("id");
$logo_id = get_option("site_logo");
$products = wpcom_get_site_purchases();
$at_options = get_option("at_options");
$plan = array_pop(
array_filter(
$products,
function ( $product ) {
return 'bundle' === $product->product_type;
}
)
);
return [
"ID" => $site,
"name" => get_bloginfo("name"),
"URL" => get_bloginfo("url"),
"plan" => [
"product_slug" => $plan->product_slug,
],
"is_wpcom_atomic" => boolval($at_options),
"jetpack" => true === apply_filters("is_jetpack_site", false, $site),
"logo" => [
"id" => $logo_id,
"sizes" => [],
"url" => wp_get_attachment_image_src($logo_id, "thumbnail")[0],
],
];
}
Tweaked code:
/**
* Get current site details.
*/
public function get_current_site()
{
$site = \Jetpack_Options::get_option("id");
$logo_id = get_option("site_logo");
//$products = wpcom_get_site_purchases();
$at_options = get_option("at_options");
// $plan = array_pop(
// array_filter(
// $products,
// function ( $product ) {
// return 'bundle' === $product->product_type;
// }
// )
// );
return [
"ID" => $site,
"name" => get_bloginfo("name"),
"URL" => get_bloginfo("url"),
"plan" => [
"product_slug" => "basic", //$plan->product_slug,
],
"is_wpcom_atomic" => boolval($at_options),
"jetpack" => true === apply_filters("is_jetpack_site", false, $site),
"logo" => [
"id" => $logo_id,
"sizes" => [],
"url" => wp_get_attachment_image_src($logo_id, "thumbnail")[0],
],
];
}
Commenting out $products = wpcom_get_site_purchases();
and the $plan = array_pop( […] );
prevents the crash, and returning "product_slug" => "basic", //$plan->product_slug,
in the response array ensures that the site works properly.
Hi,
I saw the threads before me, but I have a different critical error to share:
Notice: Function WP_Scripts::localize was called incorrectly. The $l10n parameter must be an array. To pass arbitrary data to scripts, use the wp_add_inline_script() function instead. Please see Debugging in WordPress for more information. (This message was added in version 5.7.0.) in /home/.../wp-includes/functions.php on line 5835
Fatal error: Uncaught Error: Class 'Jetpack_Options' not found in /home/.../wp-content/plugins/full-site-editing/help-center/class-help-center.php:124 Stack trace: #0 /home/.../wp-content/plugins/full-site-editing/help-center/class-help-center.php(113): A8C\FSE\Help_Center->get_current_site() #1 /home/.../wp-content/plugins/full-site-editing/help-center/class-help-center.php(240): A8C\FSE\Help_Center->enqueue_script() #2 /home/.../wp-includes/class-wp-hook.php(308): A8C\FSE\Help_Center->enqueue_wp_admin_scripts('plugins.php') #3 /home/.../wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array) #4 /home/.../wp-includes/plugin.php(517): WP_Hook->do_action(Array) #5 /home/.../wp-admin/admin-header.php(118): do_action('admin_enqueue_s...', 'plugins.php') #6 /home/.../wp-admin/plugins.php(605): require_once('/home/.../a...') #7 {main} thrown in /home/.../wp-content/plugins/full-site-editing/help-center/class-help-center.php on line 124
I’m not sure since which version I have this error, as I skipped a bunch, and just updated it yesterday, and the error was there. I also updated the plugin just a few minutes ago, but I still have the error.
I’m using this plugin outside of WP.com. Still, if you could look into this, it would be great.
WP: 6.1.1
Astra: 3.9.4
WPET: 3.49470
Loco Translate: 2.6.3
I’m getting “wp error There has been a critical error on this website”. The site seems to work fine, but I cannot login to the admin panel.
The site log is below, which seems to trace to the full-site-editing plugin.
Could you please check if the critical error is related to this plugin?
Thanks,
Marcos
[22-Nov-2022 05:16:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function A8C\FSE\wpcom_get_site_purchases() in /home/transportation/public_html/wp-content/plugins/full-site-editing/help-center/class-help-center.php:126
Stack trace:
#0 /home/transportation/public_html/wp-content/plugins/full-site-editing/help-center/class-help-center.php(113): A8C\FSE\Help_Center->get_current_site()
#1 /home/transportation/public_html/wp-content/plugins/full-site-editing/help-center/class-help-center.php(240): A8C\FSE\Help_Center->enqueue_script()
#2 /home/transportation/public_html/wp-includes/class-wp-hook.php(307): A8C\FSE\Help_Center->enqueue_wp_admin_scripts('index.php')
#3 /home/transportation/public_html/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters(NULL, Array)
#4 /home/transportation/public_html/wp-includes/plugin.php(476): WP_Hook->do_action(Array)
#5 /home/transportation/public_html/wp-admin/admin-header.php(118): do_action('admin_enqueue_s...', 'index.php')
#6 /home/transportation/public_html/wp-admin/index.php(137): require_once(' in /home/transportation/public_html/wp-content/plugins/full-site-editing/help-center/class-help-center.php on line 126
]]>
PHP Fatal error: Uncaught Error: Call to undefined function A8C\FSE\wpcom_get_site_purchases() in /home/user/public_html/wp-content/plugins/full-site-editing/help-center/class-help-center.php:126
Downgrading back to 2.20 fixes it.
]]>Two problems regarding “Blog posts” block:
– On the block properties on the right there is no option to display whole blog posts, only the excerpts. And it would be really suitable for me to have them displayed whole there. Where in plugin files I can work around that issue – and how. If I can at all. What should I do to have my whole posts displayed (just in certain blog posts blocks, not in every one.Edeiting this HTML below somehow to not display only excerpts …
– the title of “blog posts” block is displayed extremely tiny, certainly not good enough to be a block title. I’ve tracked the setting down to “full-site-editing/newspack-blocks/dist/blog-posts-block-view.css”, .wpnbha.article-section-title (line 1) where there is a .8em font size setting. I tried changing it, but nothing happened. I even tried doing it with the plugin disabled, but no difference (disable plugin not to be messing with it when active, then enabling and testing). When in dashboard editor, those titles are displayed in suitable size, but in “real display” they are tiny (checked in both Chrome and Firefox). Also, when displaying the page with my phone, the title size is appropriate. And now I saw the title is displayed in normal size on my other computer also – ??? And Edge browser on my main computer is displaying the appropriate size -so it must be some sort of cache issue not loading my new plugin settings. On this stage I have thus two questions: what to do to reset that cache? Is there any other less “css intensive” way of shaping those block titles? Can I override the default size from the plugin here in HTML code?
HTML code of whole “problem area” is following:
<div class="wp-block-columns"><!-- wp:column -->
<div class="wp-block-column">
<!-- wp:a8c/blog-posts {"excerptLength":54,
"sectionHeader":"\u003ca
href=\u0022https://spsgo.rf.gd/dejavnosti/
\u0022\u003e?revlji\u003c/a\u003e","align":"wide"} /--></div>
I realize those are newbie questions, but help would be very appreciated. Than you in advance!
The page linked is just a mess I use for testing purposes. The problem area for
both questions is under “?reva” title.
latest version causing errors in php log… as are older versions..
I don’t see any visible issues on my site. still loading fast, etc. but this is something I would want to see corrected.
]]>Array to string conversion etc. mydomain.com/wp-content/plugins/full-site-editing/newspack-blocks/synced-newspack-blocks/blocks/homepage-articles/view.php on line 78
I went to disable PayPal donate button plugin and it wouldn’t let me. Informed by host that “full-site-editor” plugin (this one) showed up in log and may have had a conflict. Deleted the other one manual and went back to an older version of this plugin as well.
This is just an FYI. I could edit pages with recent update (good) but still super buggy. Going to stay on a much older version until this thing stabilizes.
It’s also possible the issue was with the other plugin. There were no visible issues on the site
]]>I have two blogs with this plugin. On one of them, it was working great. On the other, I suddenly could not edit pages. I would get the “The editor has encountered an unexpected error” when clicking to edit/create a new page. I didn’t know what was causing this, so I disabled all plugins and it went away. Through trial and error, I discovered the issue was this plugin alone (It had nothing to do with a theme/plugin conflict.) I also updated this plugin on my other blog and started to get the exact same error. I’m not sure which update caused the issue since there were a few issued since I had last updated on the blog where it was working.
When I disable this plugin, I can edit pages, but I cannot edit the Blog Posts block… It appears in the editor as “Your site doesn’t include support for the “a8c/blog-posts” Thankfully, Blog Posts still load (it’s in my homepage and sidebar widget), but I won’t be able to change anything until they release an update that fixes this (I may try to install an older version of this plugin).
I will update my review to 5 stars when they fix this issue, as this is a great plugin otherwise, and I have been using Blog Posts for a long time.
Thanks.
EDIT: I went and installed an older version. The last old version that works is 3.30687. None of the four updates after that work.
]]>So went to add a page to my blog today and I continue to get this error when attempting to create a new page. The fix I have seen for it is to deactivate the plugin however I rely on this plugin for my main page so it does me no good to have it off permanently. Auto updates are on so yes I do have the latest veresion.
]]>`TypeError: Cannot destructure property ‘setUsedPageOrPatternsModal’ of ‘(0 , a.useDispatch)(…)’ as it is null.
at d (https://magnoliasandcrystals.com/wp-content/plugins/full-site-editing/starter-page-templates/dist/starter-page-templates.js?ver=1650090794:6:2306)
at Le (https://magnoliasandcrystals.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=17.0.1:100:3)
at Pj (https://magnoliasandcrystals.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=17.0.1:231:183)
at di (https://magnoliasandcrystals.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=17.0.1:168:305)
at Nj (https://magnoliasandcrystals.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=17.0.1:168:236)
at sc (https://magnoliasandcrystals.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=17.0.1:168:96)
at gf (https://magnoliasandcrystals.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=17.0.1:162:109)
at https://magnoliasandcrystals.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=17.0.1:73:230
at unstable_runWithPriority (https://magnoliasandcrystals.com/wp-includes/js/dist/vendor/react.min.js?ver=17.0.1:24:26)
at Za (https://magnoliasandcrystals.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=17.0.1:73:8)`
Last version is broken:
Na ?ádku ?. 86 v souboru /data/www/25451/feedit_cz/www/wp-content/plugins/full-site-editing/error-reporting/index.php do?lo k chybě typu E_ERROR. Chybová zpráva: Uncaught Error: Call to undefined function A8C\FSE\ErrorReporting\is_automattician() in /data/www/25451/feedit_cz/www/wp-content/plugins/full-site-editing/error-reporting/index.php:86
Stack trace:
#0 /data/www/25451/feedit_cz/www/wp-content/plugins/full-site-editing/error-reporting/index.php(111): A8C\FSE\ErrorReporting\should_activate_sentry(1, 1)
#1 /data/www/25451/feedit_cz/www/wp-includes/class-wp-hook.php(303): A8C\FSE\ErrorReporting\enqueue_script('plugins.php')
#2 /data/www/25451/feedit_cz/www/wp-includes/class-wp-hook.php(327): WP_Hook->apply_filters(NULL, Array)
#3 /data/www/25451/feedit_cz/www/wp-includes/plugin.php(470): WP_Hook->do_action(Array)
#4 /data/www/25451/feedit_cz/www/wp-admin/admin-header.php(102): do_action('admin_enqueue_s...', 'plugins.php')
#5 /data/www/25451/feedit_cz/www/wp-admin/plugins.php(603): require_once('/data/www/25451...')
#6 {main}
thrown
]]>
Hi
After updating to Version 3.16467 a new error appeared that prevents page editing (post editing works though). Below is a the error message.
After deactivating the plugin, editing goes back to normal.
Please find a fix to this so the plugin can be reactivated.
Thanks,
Marcos
Error message:
TypeError: Cannot destructure property 'setUsedPageOrPatternsModal' of '(0 , a.useDispatch)(...)' as it is null.
at d (https://roundtbl.org/wp-content/plugins/full-site-editing/starter-page-templates/dist/starter-page-templates.js?ver=1633703947:6:2305)
at we (https://c0.wp.com/c/5.8.1/wp-includes/js/dist/vendor/react-dom.min.js:84:293)
at zj (https://c0.wp.com/c/5.8.1/wp-includes/js/dist/vendor/react-dom.min.js:226:496)
at Th (https://c0.wp.com/c/5.8.1/wp-includes/js/dist/vendor/react-dom.min.js:152:223)
at tj (https://c0.wp.com/c/5.8.1/wp-includes/js/dist/vendor/react-dom.min.js:152:152)
at Te (https://c0.wp.com/c/5.8.1/wp-includes/js/dist/vendor/react-dom.min.js:146:151)
at https://c0.wp.com/c/5.8.1/wp-includes/js/dist/vendor/react-dom.min.js:61:68
at unstable_runWithPriority (https://c0.wp.com/c/5.8.1/wp-includes/js/dist/vendor/react.min.js:25:260)
at Da (https://c0.wp.com/c/5.8.1/wp-includes/js/dist/vendor/react-dom.min.js:60:280)
at Pg (https://c0.wp.com/c/5.8.1/wp-includes/js/dist/vendor/react-dom.min.js:61:14)
]]>
The editing toolkit updated to the latest version, now I can only use the Gutenberg editor if this plugin is deactivated, but this plugin is a key component of my home page.
The classic editor still works and no other plugins appear to be giving me this error.
The editor has encountered an unexpected error.
Attempt Recovery
Copy Post Text
Copy Error
]]>
Ater updating this plugin and gutenberg I cannot create new posts anymore, Im encountering error when trying to create a post. I tried deactivating this plugin then Im able to create new post but it messed up my homepage
]]>I recently downloaded the plug-in, and wanted to use it to create a page of my blog posts. The trouble I’m having is that when I create the block, it looks great initially, but when I go to preview it (or put it live), I end up with what looks like columns in the post block. See the link above for an example. The top post at that link shows what I mean.
Can anyone help figure out why it’s doing this? Thanks!
Sean
]]>A video added to a widget area using the video widget does not work if
Wordpress.com Editing Toolkit’s custom block is used to display a list of the most recent blog posts.
I deactivated all plugins and the video works. As soon as I activate WordPress.com Editing Toolkit and add the custom block to the post the video stops working. The following error is displayed in the console:
]]>Uncaught ReferenceError: mejs is not defined
When creating a Content Blocks, for the “Layout Elements” – is there a way to make the text Excerpt have the link “Read More” instead of just showing […] without a clickable link to read the full blog post?
I hope that makes sense.
]]>How do I go about creating custom templates for these post loops?
]]>Version 0.19 advertises that it requires PHP 5.6.20 or higher. However, there is a null coalescing operator in this file. According to the documentation, null coalescing operators were only introduced in PHP 7.0.
]]>