Hi @insecttrojan,
Unfortunately, I am unable to replicate the error on my end. To begin with, can you please make sure you are using the latest version of the plugin? If yes, then kindly share the steps with which it is replicable, and if possible, a screenshot highlighting the error message so that we can debug it on our end.
Looking forward to it.
Kind regards,
Aradhy 😊
when I changed the last int int fixed function init_fullwidth_template() { // Init dynamic header footer new Fullwidth_Page_Templates();}add_action( ‘init’, ‘init_fullwidth_template’ );
Hi @insecttrojan,
I am still not sure, maybe it will be better if you can reach out to us through our Support Portal, so we can have a closer look at your site. Also, we respond faster there.
Once you open a ticket, please mark this thread as Resolved.
Kind regards,
Aradhy 😊
Hi @insecttrojan,
It’s been a while since I posted my response, and we haven’t heard from you since then. I assume that you have fixed this or have reached out to us.
I am marking this thread as Resolved due to inactivity. Feel free to start a new thread if there’s anything else related to this plugin, we can help you with.
Kind regards,
Aradhy 😊
I had the same issue. You probably couldn’t replicate it bc WP-debug has to be running to see.
I had to edit the plugin directly, so you may want to change it in the next release. The solution is, in fullwidth-page-template.php change:
function init_fullwidth_template() {
load_plugin_textdomain( 'fullwidth-templates' );
new Fullwidth_Page_Templates();
}
add_action( 'plugins_loaded', 'init_fullwidth_template' );
to
function init_fullwidth_template_proper() {
// Load translations after init, as required by WP 6.7+
add_action( 'init', function() {
load_plugin_textdomain(
'fullwidth-templates',
false,
dirname( plugin_basename( __FILE__ ) ) . '/languages'
);
});
// Delay the plugin class instantiation too
add_action( 'init', function() {
new Fullwidth_Page_Templates();
});
}
add_action( 'after_setup_theme', 'init_fullwidth_template_proper' );
ChatGPT admittedly helped.
Let me know if you update this, because otherwise I am not updating / am using my overwrite. THANK YOU!
Hi @nathanielstern,
I can see that you have also raised a ticket with us and the issue is resolved now with the recent update. Don’t hesitate to open a new thread if there’s anything else we can assist you with.
Kind regards,
Aradhy 😊