Robert
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Missing “Create Date” on Draft Products – Possible BugCreated Ticket
https://core.trac.ww.wp.xz.cn/ticket/63348Forum: Plugins
In reply to: [WooCommerce] Missing “Create Date” on Draft Products – Possible BugSQL UPDATE
-- Update for post_date_gmt
UPDATE wp_posts
SET post_date_gmt = CONVERT_TZ(post_date, '+00:00', '+00:00')
WHERE post_date_gmt = '0000-00-00 00:00:00' AND post_date != '0000-00-00 00:00:00';
-- Update for post_modified_gmt
UPDATE wp_posts
SET post_modified_gmt = CONVERT_TZ(post_modified, '+00:00', '+00:00')
WHERE post_modified_gmt = '0000-00-00 00:00:00' AND post_modified != '0000-00-00 00:00:00';PHP code for functions.php or added in Snippets:
add_action('save_post', function ($post_id, $post, $update) {
// Wyklucz autosave, revision, trashed i post types bez dat
if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return;
if (wp_is_post_revision($post_id)) return;
if (get_post_status($post_id) === 'trash') return;
global $wpdb;
$post_type = get_post_type($post_id);
$allowed_types = ['post', 'page', 'product']; // dodaj inne typy jeśli trzeba
if (!in_array($post_type, $allowed_types)) return;
$post_obj = get_post($post_id);
$post_date = $post_obj->post_date;
$post_modified = $post_obj->post_modified;
$post_date_gmt = $post_obj->post_date_gmt;
$post_modified_gmt = $post_obj->post_modified_gmt;
// Uzupełnij tylko jeśli gmt = '0000-00-00 00:00:00'
if ($post_date_gmt === '0000-00-00 00:00:00' || $post_modified_gmt === '0000-00-00 00:00:00') {
// WordPress przelicza strefy automatycznie
$gmt_post_date = get_gmt_from_date($post_date);
$gmt_post_modified = get_gmt_from_date($post_modified);
$wpdb->update(
$wpdb->posts,
[
'post_date_gmt' => $gmt_post_date,
'post_modified_gmt' => $gmt_post_modified
],
['ID' => $post_id]
);
}
}, 10, 3);And No guys, was not resolved by support. This issue still required correction.
This is system fault described below:
https://ryansechrest.com/2013/02/no-value-for-post_date_gmt-and-post_modified_gmt-when-creating-drafts-in-wordpress/Forum: Plugins
In reply to: [WooCommerce] Missing “Create Date” on Draft Products – Possible BugI’m verry disappointed you response.
In meantime I found article which describe issue.
I know that by SQL request I can fix this by myself, but this is definitely bug, which affecting not only me.
Making update by SQL did not resolve the issue.
https://ryansechrest.com/2013/02/no-value-for-post_date_gmt-and-post_modified_gmt-when-creating-drafts-in-wordpress/Forum: Plugins
In reply to: [WooCommerce] Missing “Create Date” on Draft Products – Possible BugOnly post_date_gmt is 0000-00-00 00:00:00 where all other dates are correct:
post_date – correct
post_modified – correct
post modified_gmt – correctForum: Plugins
In reply to: [WooCommerce] Missing “Create Date” on Draft Products – Possible Bug








Steps which was done:
1. All plugins and Template enable:
Product ID: 30097
2. Only left Elementor. Elementor Pro plugin and Template
Product ID: 30099
3. Elementor, Elementor Pro wit Default template
ID: 30100
4. All plugin disabled with Default template
ID: 30101
I’m happy to provide access to my website if neededForum: Plugins
In reply to: [Make Connector] Editor crash after upgrade Wordpres to latest versionError log:
TypeError: Cannot read properties of null (reading ‘length’)
at x (https://eliteinteriors.ie/wp-includes/js/dist/rich-text.min.js?ver=6222504ebedf0627981b:2:27911)
at qe (https://eliteinteriors.ie/wp-includes/js/dist/rich-text.min.js?ver=6222504ebedf0627981b:2:28199)
at https://eliteinteriors.ie/wp-includes/js/dist/editor.min.js?ver=3f5791ae786456067a27:12:126998
at wt (https://eliteinteriors.ie/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.2.0:10:47637)
at dr (https://eliteinteriors.ie/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.2.0:10:54880)
at js (https://eliteinteriors.ie/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.2.0:10:122633)
at wl (https://eliteinteriors.ie/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.2.0:10:88659)
at bl (https://eliteinteriors.ie/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.2.0:10:88587)
at yl (https://eliteinteriors.ie/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.2.0:10:88450)
at il (https://eliteinteriors.ie/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.2.0:10:85274)Forum: Plugins
In reply to: [Jetpack Social] Social not automatic postthank you @passegua
@erania-pinnera @ctdealba – the Jectpack plugin is :
1. expensive – related to limitation and functionality
2. Jetpack code reduced page speed by at least 5 points
3. most important. If you charging customers, support should be of High quality.Forum: Plugins
In reply to: [Jetpack Social] Social not automatic post@passegua – I have this same issue on my web (https://spmfurniture.ie).
Could you please provide the plugin name which you are using?I have this same problem.
Also. When a customer tries to contact me from my Fan Page by messenger, I never get any push notification, I verify all settings in my business profile but all option is set up as On/Available/Enable etc.
https//spmfurniture.ie
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Download PDF issueeHi
Yes, i tested in Chrome , Eage and also ols IE 11.
If you need temporary access please let me know.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Download PDF issueeYes, sounds weird, but i did this 1000 times. I have this issue since one year.
No is the thime to try to fix it. I removed plugin and installed againe…no success 🙁
Saved setups 1000 times.. No success 🙁I realy do not know what else I can do for this issue ?
Forum: Fixing WordPress
In reply to: FAcbook catalog issuethis mae issue was reported 6 h ago here :
https://ww.wp.xz.cn/support/topic/stopped-uploading-products-to-product-catalog-business-manager/Forum: Fixing WordPress
In reply to: FAcbook catalog issueFacebook for WooCommerce
Version 2.6.3-devForum: Fixing WordPress
In reply to: FAcbook catalog issueOfficial Facebook plugin
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Download PDF issueHi
Also tested on Eage:
Microsoft Edge
Version 90.0.818.56 (Official build) (64-bit)This same effect.
I try swich off and on plugin already. Still this same.Looks like the Dropdown option in Setings tab for Download the PDF not working.