ytian03
Forum Replies Created
-
Forum: Plugins
In reply to: [Add Customer for WooCommerce] Cannot Create New CustomerHi Daniel,
That is correct.
Thank you!Forum: Plugins
In reply to: [LiteSpeed Cache] Page Load SpeedHi,
This is what we are talking about.
Our TTFB here is on red, 2.6s. We want to improve it. We need to reduced unused CSS and JS and eliminate render-blocking resources.
https://pagespeed.web.dev/analysis/https-www-discountsafetysignsaustralia-com-au/nutjwnirl8?form_factor=desktop
Thank you!Forum: Plugins
In reply to: [LiteSpeed Cache] Page Load SpeedHi,
Here it is.
Report number:?SSRRCHYT
Report date:?06/19/2024 00:44:18
Also, is there a way to block or reduce the resources that the fbevents.js uses?
Another question is why our GTmetrics score always changing?
Thank you!Forum: Plugins
In reply to: [Eway Payment Gateway] Transaction IDHi,
Thank you for the update.
I will try it now ??Forum: Plugins
In reply to: [LiteSpeed Cache] Unminified CSS and JSHi @qtwrk
Thank you very much!
I will try this out.Forum: Plugins
In reply to: [LiteSpeed Cache] Unminified CSS and JSHi @qtwrk
What we should do about it?
TIAForum: Plugins
In reply to: [WooCommerce] Transaction IDHi @ckadenge
This is only happening for Credit Card Transactions, it happened when we change the Gateway Payment plugin. We change from WooCommerce Eway Payment Gateway by Eway to Eway Payment Gateway by WebAware since we are having issues using WooCommerce Eway Payment Gateway by Eway.
Thank you!
Forum: Plugins
In reply to: [LiteSpeed Cache] Unminified CSS and JSHi,
Here’s an example page.
https://www.discountsafetysignsaustralia.com.au/product-category/bollard-signs/?add-to-cart=25138
Here’s the report from SemRush
https://prnt.sc/kaIb3sdzTpMZForum: Plugins
In reply to: [WooCommerce] Transaction IDHi!
The transaction ID on the order should be added automatically, and as I understand, when the order is made with a credit card, it is not adding the transaction ID, is this correct?
-Yes, this is correct.
We are using Eway Payment Gateway by WebAware.
Thank you in advance!Forum: Plugins
In reply to: [LiteSpeed Cache] Unminified CSS and JSHi,
Here’s the report number.
ELHXWXIG
Thank you!Forum: Plugins
In reply to: [Advanced Woo Search] Search Bar not Showing on MobileHi,
Search bar is all good on pc, working just fine, it is only missing on mobile.
Is this shortcode only available on premium? I cannot see it on our plugin.
Thank you!
ChristianHi,
I have updated my theme to the latest version and it didn’t solved the problem.
Any suggestion guys?
Thank you!Hey, @makewebbetter, this is still not resolved.
Can you advice us what can we do to fix this?
Causing issues on our websites.
Thank you.Forum: Plugins
In reply to: [WooCommerce] Convert int to timeHi @rokmeglic,
Thank you for your help. It is all good now. ??Forum: Plugins
In reply to: [WooCommerce] Convert int to timeHi,
This is my new code. It is working but I am not getting all the data. Some have “value” but some don’t. All of them should have value (base on screenshot).add_filter( ‘manage_edit-shop_order_columns’, ‘add_admin_order_list_custom_column’, 20 );
function add_admin_order_list_custom_column($columns)
{
$reordered_columns = array();// Inserting columns to a specific location foreach( $columns as $key => $column){ $reordered_columns[$key] = $column; if( $key == 'order_status' ){ // Inserting after "Status" column $reordered_columns['my-column1'] = __( 'Date Printed','theme_domain'); } } return $reordered_columns;
}
// Adding custom fields meta data for each new column
add_action( ‘manage_shop_order_posts_custom_column’ , ‘display_admin_order_list_custom_column_content’, 20, 2 );
function display_admin_order_list_custom_column_content( $column, $post_id ){
global $the_order;switch ( $column ) { case 'my-column1' : // Get custom order metadata $value = $the_order->get_meta( '_date_printed'); //$platform = get_post_meta( $order_id, '_date_printed', true ); $friendly_date = wp_date( 'Y/m/d', $value, new DateTimeZone('Australia/Brisbane') ); if ( ! empty($friendly_date) ) { echo $friendly_date; } // For testing (to be removed) - Empty value case else { echo '<small>(<em>no value</em>)</small>'; } break; }
}
This is the output
https://ibb.co/JrM8H3D
Do you have any idea why I can’t fetch all the data using my meta key?
It is weird that some have value and some don’t. I already checked my database and yes, all of them should have value for _date_printed meta key