kiranthory
Forum Replies Created
-
Hi Team,
I have submitted the ticket through the provided link. Kindly review it and share the solution with us.
Thank You.
Forum: Plugins
In reply to: [Passwordless Login] Change Email WordingHi Thomas,
Thank you for providing me a solution for this. I will check by adding this code in function.php.
Thanks for the assistance!
Thank you for the reply. I want to hide From Address only from the Shipping label. Is there a specific function to hide this? If so, could you please provide me a code for this?
Hi,
Thanks for the quick response!
We will remove the manual code from the website.
Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] Images are not loadingHi Priyanka,
Hope you are doing well.
Any update on this issue?
Hi @maybellyne
We have already fixed this by doing some modification in the code. All good.
Thank you.
Hi Alex,
I have a question. We are using the Yoast SEO plugin to add Meta Titles and descriptions to the website. Is there any option so we can update the Meta Titles and descriptions in both languages?
Thanks in Advance!
Hi Alex,
Thanks for providing the solution.
Forum: Plugins
In reply to: [WooCommerce] Order sequence is not properHi Robin,
Thanks for the prompt reply!
We can’t add plugin because the plugin files will affect the website speed. So, I have added the following code:
// Add sequential order number
add_filter( ‘woocommerce_order_number’, ‘prefix_add_sequential_order_number’, 1, 2 );
function prefix_add_sequential_order_number( $order_id, $order ) {
global $wpdb;// Check if order number already exists $existing_order_number = $wpdb->get_var( $wpdb->prepare( " SELECT meta_value FROM {$wpdb->prefix}postmeta WHERE meta_key = '_order_number' AND meta_value > 0 ORDER BY meta_value DESC LIMIT 1 " ) ); $sequential_order_number = $existing_order_number ? $existing_order_number + 1 : 1; return apply_filters( 'woocommerce_order_number', $sequential_order_number, $order );}
// Display sequential order number in admin order list
add_filter( ‘manage_edit-shop_order_columns’, ‘prefix_add_sequential_order_column’ );
function prefix_add_sequential_order_column( $columns ) {
$columns[‘sequential_order’] = ‘Sequential Order’;
return $columns;
}add_action( ‘manage_shop_order_posts_custom_column’, ‘prefix_display_sequential_order_column’, 2 );
function prefix_display_sequential_order_column( $column ) {
global $post, $woocommerce, $the_order;if ( 'sequential_order' === $column ) { $order_id = $the_order->get_id(); $order_number = get_post_meta( $order_id, '_order_number', true ); if ( ! empty( $order_number ) ) { echo $order_number; } else { echo 'N/A'; } }}
Please check the above code and let me know if this is correct or not.
Thank You.
Forum: Plugins
In reply to: [WooCommerce] Images are still blurryHi Zubair,
As I previously stated in my messages, we included the fourth image and the same image as a featured image. To distinguish the feature image from the gallery image, I inserted the same image. Although I’m not sure why it’s not displaying the difference on your end, the screenshot I supplied does show a difference in the images. We have checked on different browsers and computers and the issue is the same in all browsers.
Thank You.
Forum: Plugins
In reply to: [WooCommerce] Images are still blurryHi Carolm,
My colleague deleted the 4th image by mistake. I have added it back to the product gallery. Please find the product URL: https://development.makemywebsite.melbourne/bloom-bloomshop/product/baby-powder-hand-and-body-cream/
Now, you can compare the 1st and 4th image.
Also, please find the attached screenshot here: https://drive.google.com/drive/folders/1dHRx_i54w0SZauaOl6J6WVOkN4X3oUfR?usp=sharing
Please let me know if you have any questions.
Thank You.
Forum: Plugins
In reply to: [WooCommerce] Images are still blurryHi Afzal,
Hope you are well.
The provided URL is working on my end. Please find the URL: https://development.makemywebsite.melbourne/bloom-bloomshop/product/baby-powder-hand-and-body-cream/
Our websites are restricted in two countries (Pakistan and Bangladesh). So, currently, if you are in these countries you will need to connect a VPN to access the website.Please let me know if you have any questions.
Thanks in advance!
Forum: Plugins
In reply to: [WooCommerce] Images are still blurryHi Roxy,
Thanks for the clarification! Please find the attached here: https://drive.google.com/drive/folders/1dHRx_i54w0SZauaOl6J6WVOkN4X3oUfR?usp=sharing
I have regenerated all of the thumbnails and checked the site’s health, but the problem persists. You can see the attached screenshots to check the difference.
Thank You.
Forum: Plugins
In reply to: [WooCommerce] Images are BlurryHi Roxy,
Thanks for the assistance!
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] GTranslate is not workingHi,
Yes, now it’s working fine.