joeathomas
Forum Replies Created
-
Thank you, Tony. I’ve emailed my debug file. Have a wonderful day.
Follow-up: Root cause identified in
set_locale()timingI dug into the plugin code and found the source of the notice.
In
includes/class-wpvivid.php, translations are initialized via:private function set_locale() {
require_once WPVIVID_PLUGIN_DIR . '/includes/class-wpvivid-i18n.php';
$plugin_i18n = new WPvivid_i18n();
add_action( 'init', array( $plugin_i18n, 'load_plugin_textdomain' ) );
}And
load_plugin_textdomain()itself is correctly implemented:load_plugin_textdomain(
'wpvivid-backuprestore',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);However, the issue appears to be when
set_locale()is called, not the hook itself. Ifset_locale()runs during class construction or beforeplugins_loaded, WordPress 6.7 triggers_load_textdomain_just_in_time()and surfaces the notice.This matches the new WP 6.7 behavior around early translation loading.
Suggested fix:
- Either call
set_locale()no earlier thanplugins_loaded, or - Move
load_plugin_textdomain()registration to a top-levelinithook in the main plugin file
Hope this helps —
JoeForum: Themes and Templates
In reply to: [Spectra One] Error with icon for disabling page titleI’m having the same issue. I’ve cleared cookies & cache, used an incognito window with all Chrome extensions disabled. I tried Firefox, and it’s the same. Haven’t found a solution yet.
Forum: Plugins
In reply to: [Contact Form 7] register_block_script_handle was called incorrectlySee temporary fix here: https://ww.wp.xz.cn/support/topic/error-after-last-update-48/#post-16277761
Forum: Plugins
In reply to: [Contact Form 7] noticeSee temporary fix here: https://ww.wp.xz.cn/support/topic/error-after-last-update-48/#post-16277761
Forum: Plugins
In reply to: [PayPal for WooCommerce] PayPal Express credentials gone after 1.5.4 upgradeOne more question, Oliver…
We’d like to find the entries in the database, so we can simply know which sites had filled in their credentials. Where could we find any one of those three field’s entries?
Thanks!
Forum: Plugins
In reply to: [PayPal for WooCommerce] PayPal Express credentials gone after 1.5.4 upgradeThanks, Oliver —
We’re still trying to solve this issue. Can you tell me where those credentials (all three fields) are stored? Are they in the database or in a flat file? If in the database, what table are they in and what are the field names?
Thanks —
Joe ThomasForum: Plugins
In reply to: [PayPal for WooCommerce] PayPal Express credentials gone after 1.5.4 upgradeNo, we don’t have anything that would reset the SALT keys. We’re using Wordfence and a couple database optimizer plugins, but I can’t imagine those would change SALT keys.
Have the PayPal Express credential fields had a fieldname change in any of the updates over the last several months?
Hi, Munir. Your plugin is really great! And your roadmap/ideas look great, too!
I’m a bit bummed that you’re requiring the Titan Framework for your options. I would guess many people may not install it with that dependency.
Have you thought of building your options a different way that wouldn’t require an options framework? Maybe the same way SiteOrigin has done it with their Widgets Bundle?
Forum: Plugins
In reply to: [Redux Framework] Where is Changelog / Release notes? Why hard to find?For some reason, the plugin Changelog is on the “Other Notes” tab.
JS error on GitHub —> https://github.com/pods-framework/pods/issues/2804
Forum: Plugins
In reply to: [Yoast Duplicate Post] "Clone" and "New Post" not workingsamphai, if you look closely at the file at http://pastebin.com/RzxZv8E3, you’ll see that it references filenames and corresponding line numbers in those files. You need to open the proper files and replace the red highlighted lines with the green highlighted lines in those files.
Forum: Plugins
In reply to: [Yoast Duplicate Post] Any plans to get plugin to WP 4.0 Compatibility?The Duplicate Post plugin is compatible with 4.0, jose.
Please mark this as resolved.
An aside:
If you’re having issue, and you’re also using Time.ly’s All-In-One Event Calendar, it is the culprit. Time.ly, despite having paying users, won’t fix it, though (see here if interested in that).
You can find the solution to the issue here: http://ww.wp.xz.cn/support/topic/clone-and-new-post-not-working/#post-6518664
Forum: Plugins
In reply to: [Yoast Duplicate Post] Does this work with WP 4.0?kelemvor, are you also using Time.ly’s All-In-One Event Calendar? If so, it is the culprit. Time.ly, despite having paying users, won’t fix it, though (see here if interested in that).
You can find the solution to the issue here: http://ww.wp.xz.cn/support/topic/clone-and-new-post-not-working/#post-6518664
Forum: Plugins
In reply to: [Yoast Duplicate Post] Plugin doesn't work. Just asks me if I'm sure.If you’re also using Time.ly’s All-In-One Event Calendar, it is the culprit. Time.ly, despite having paying users, won’t fix it, though (see here if interested in that).
You can find the solution to the issue here: http://ww.wp.xz.cn/support/topic/clone-and-new-post-not-working/#post-6518664
- Either call