EricJohnsonGuru
Forum Replies Created
-
This feature is absolutely vital for my workflow, I would like to have it either supported by JSON import/export. Or though the WordPress XML import/export.
Forum: Plugins
In reply to: [Gutenberg] Broken Paragraphs and heading since changing themesThe previous theme was Soledad.?It’s about 70% of the post published before the theme switch.
The Current theme is Create an Kadence child theme by restored 316 designs.
- This reply was modified 1 year, 1 month ago by EricJohnsonGuru.
Forum: Fixing WordPress
In reply to: Ordered & Unordered Lists Not Working in 6.3Can anyone confirm if 6.3.1 fixed this?
Forum: Fixing WordPress
In reply to: Ordered & Unordered Lists Not Working in 6.3I can confirm this as well. I have had to revert several client sites back to 6.2.2. Does anyone know if there is a bug report for this?
Forum: Plugins
In reply to: [Code Snippets] Your 3.3.0 red upgrade banner is scaring my clients.Great thanks.
Forum: Plugins
In reply to: [Async JavaScript] Not compatible with PHP 8I don’t see any PHP 8.1 errors when I run the plugin by itself on https://localwp.com/
PHP Warning: Undefined array key "status" in /wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox.php on line 69 Warning: Undefined array key "status" in /wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox.php on line 69 PHP Warning: Undefined array key "status" in /wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox.php on line 85 Warning: Undefined array key "status" in /wp-content/plugins/easy-facebook-likebox/easy-facebook-likebox.php on line 85
I have run into this as well and have had to disable the plugin.
For those wondering what the answer to generate blocks is the code is:
add_filter( 'generateblocks_do_activation_redirect', '__return_false' );
Hello, any thoughts?
Forum: Plugins
In reply to: [Web Stories] Unable to Duplicate or View StoriesThis is what they had to say:
I thoroughly checked your issue, but I can’t see anything from the server level causing this. Nothing in the Apache log either. This is something within the application plugins or themes. So I suggest you consult with your developer or plugin provider.
I don’t know what level of support you provide for free but I could provide you with a backup copy of the site without images to keep the size down if you wanted to take a look at that.
- This reply was modified 2 years, 3 months ago by EricJohnsonGuru.
<?php /* Plugin Name: Ascend Theme Import Settings Plugin URI: https://ascendtheme.com/ Description: Auto Import Settings for Ascend theme, works with OCDI Version: 3.1.1 Author: Eric Johnson Author URI: https://ericjohnson.guru/ License: GPLv2 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html */ function ocdi_register_plugins($plugins) { $theme_plugins = [ [ 'name' => 'Code Snippets', // Name of the plugin. 'slug' => 'code-snippets', // Plugin slug - the same as on www.remarpro.com plugin repository. 'required' => true, // If the plugin is required or not. 'preselected' => true, ], [ 'name' => 'Generate Blocks', // Name of the plugin. 'slug' => 'generateblocks', // Plugin slug - the same as on www.remarpro.com plugin repository. 'required' => true, // If the plugin is required or not. 'preselected' => true, ], [ 'name' => 'Yoast Duplicate Post', // Name of the plugin. 'slug' => 'duplicate-post', // Plugin slug - the same as on www.remarpro.com plugin repository. 'required' => false, // If the plugin is required or not. 'preselected' => true, ], [ 'name' => 'Yoast SEO', // Name of the plugin. 'slug' => 'wordpress-seo', // Plugin slug - the same as on www.remarpro.com plugin repository. 'required' => true, // If the plugin is required or not. 'preselected' => true, ], [ 'name' => 'WP Recipe Maker', // Name of the plugin. 'slug' => 'wp-recipe-maker', // Plugin slug - the same as on www.remarpro.com plugin repository. 'required' => false, // If the plugin is required or not. 'preselected' => true, ], [ 'name' => 'Grow Social', // Name of the plugin. 'slug' => 'social-pug', // Plugin slug - the same as on www.remarpro.com plugin repository. 'required' => false, // If the plugin is required or not. 'preselected' => true, ], [ 'name' => 'Admin color Schemes, a nice way to add more colors to the admin.', // Name of the plugin. 'slug' => 'admin-color-schemes', // Plugin slug - the same as on www.remarpro.com plugin repository. 'required' => false, // If the plugin is required or not. 'preselected' => true, ], [ 'name' => 'WP SVG images - Add SVG support to your WordPress', // Name of the plugin. 'slug' => 'wp-svg-images', // Plugin slug - the same as on www.remarpro.com plugin repository. 'required' => false, // If the plugin is required or not. 'preselected' => true, ], [ 'name' => 'Regenerate Thumbnails', // Name of the plugin. 'slug' => 'regenerate-thumbnails', // Plugin slug - the same as on www.remarpro.com plugin repository. 'required' => false, // If the plugin is required or not. 'preselected' => true, ], [ 'name' => 'generateblocks pro', 'description' => 'Premium Version of Generate Blocks YOU NEED A LICENCE', 'slug' => 'generateblocks-pro', // The slug has to match the extracted folder from the zip. 'source' => 'HIDDEN', 'preselected' => true, ], // [ // 'name' => 'Generate Press Premium', // 'description' => 'Premium Version of Generate Press YOU NEED A LICENCE', // 'slug' => 'gp-premium', // The slug has to match the extracted folder from the zip. // 'source' => 'HIDDEN', // 'required' => true, // If the plugin is required or not. // 'preselected' => true, // ], ]; return array_merge($plugins, $theme_plugins); } add_filter('ocdi/register_plugins', 'ocdi_register_plugins'); function ocdi_import_files() { return [ [ 'import_file_name' => 'Ascend Theme', 'import_file_url' => 'https://ascendtheme.com/files/2022-06-22-ascendthemecom.WordPress.xml', 'import_widget_file_url' => 'https://ascendtheme.com/files/2022-06-22-ascendtheme.com-widgets.wie', 'import_customizer_file_url' => 'https://ascendtheme.com/files/2022-06-22-generatepress-export-customizer.dat', 'import_preview_image_url' => 'https://ascendtheme.com/wp-content/uploads/2022/01/AscendThemePreview.png', 'preview_url' => 'https://ascendtheme.com/', ], ]; } add_filter('ocdi/import_files', 'ocdi_import_files');
- This reply was modified 2 years, 3 months ago by EricJohnsonGuru.
Forum: Plugins
In reply to: [Web Stories] Unable to Duplicate or View StoriesWe are having this problem as well here is some of what we tried:
1. The error continues on a staging site at the same host without cloudflare.
2. It worked on a local (localwp) site without cloudflare.
3. It worked on a new site (with the same host) without cloudflare.The fact that #1 fails but #3 works is very confusing
The error we are getting:
{ "code": "rest_empty_content", "message": "content and story_data should always be updated together.", "data": { "status": 412 } }
The response is a 302 redirect
It appears to happen on
'slug' => 'wp-svg-images',
and'slug' => 'wordpress-seo',
Thank you for the reply in WP Rocket i checked the do not cache checkbox on that page and it seems to have worked.