WP Native
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Reduce Order numberThanks for the update. Do you still have the access to the previous site? if you do, Let’s zoom out and do the following steps. There are a couple things to get it right. first off, the Inventory has to match. Secondly you should able to see the correct line items/Qty that are associated with each respective orders. Manually altering the database, will make things inconsistent, i wouldn’t recommend to do that.
1. Get a fresh WordPress installation on your Bluehost end.
2. Export the entire site once again using “All in one Wp migration”
3. Import the same on the new Installation at Bluehost.Let me know if anything I can help with.
Naz.Forum: Plugins
In reply to: [WooCommerce] How to integrate urway.sa payment method in wordpress websiteHello @jasghar,
You can contact urway.sa support. I’m sure they might have WooCommerce plugin in order to intergrade so.
Cheers,
Naz.Forum: Plugins
In reply to: [WooCommerce] Radio buttons line out on Checkout pageForum: Plugins
In reply to: [WooCommerce] Reduce Order numberInteresting. I’m just curious how the migration was done? with a third-party plugin or built-in migration tool from bluehost? You can do the following if you’ve used the built-in one.
1. Install All in one wp migration.
Hope this helps!
Naz.Forum: Plugins
In reply to: [WooCommerce] Changing the word “lottery” on Woocommerce lottery pagesHello @tims73,
You can add the following code on your theme’s functions.php. Alternatively, you also can use plugin like “Code snippet” in order to add it.
/* Change Text Site Wide */ function wpfi_change_text( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'lottery' : $translated_text = __( 'Contest' ); break; } return $translated_text; } add_filter( 'gettext', 'wpfi_change_text', 20, 3 );Cheers!
Naz.Forum: Plugins
In reply to: [WooCommerce] How to change Woocommerce Dropdown widthForum: Plugins
In reply to: [WooCommerce] Product Image Zoom working on some products onlyWell, You could use image compression tools like squoosh app in order to compress the image ahead of uploading to the site. Alternatively, you can also use plugin like Smush compress the existing media files.
Hope this helps!
Naz.Forum: Plugins
In reply to: [WooCommerce] Price not showing properly on smal screensHello @vikasgarg200820,
Hope the problem got fixed. As i checked, it works fine on my end.
Cheers,
NazForum: Plugins
In reply to: [WooCommerce] Reviews Count not showingHello @huzidot12
It seems, couple of folks having similar issues after updating. Try switching the default theme and see if that helps.
Naz.
Forum: Plugins
In reply to: [WooCommerce] Product Image Zoom working on some products onlyHello @muneeb227,
It seems the second image is too low in resolution in order zoom to work. Try uploading hi res and see if that helps. Also, you can check the specified product image size by heading to
Appearance > Customize > Woocommerce > Product imageCheers
Naz.Forum: Plugins
In reply to: [WooCommerce] Stock custom dateForum: Plugins
In reply to: [WooCommerce] Remove Featured Image SHORTCODEHello @username201701,
Try adding the below code on your theme’s functions.php. This will completely get rid of product images. Alternatively you can safely add with this plugin
// Remove image from product pages remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );Check this out: https://jilt.com/blog/remove-woocommerce-product-images/
Cheers!
Naz.Forum: Plugins
In reply to: [WooCommerce] Shop product grid – missing products on last rowHello @jimmyjamesjimmy,
Try adding the below code on your theme’s functions.php. Alternatively you can safely add this with this plugin
/** * Change number or products per row to 3 */ add_filter('loop_shop_columns', 'loop_columns', 999); if (!function_exists('loop_columns')) { function loop_columns() { return 12; // 12 products per row } }Hope this helps,
Naz.- This reply was modified 4 years, 2 months ago by WP Native.
Forum: Plugins
In reply to: [WooCommerce] Adding individual attributes to product variationsForum: Plugins
In reply to: [WooCommerce] why my product page cannot show ” related products” ?Well, Yes. it depends on the theme you use. Check within the Woocommece tab to see if you can find anything like related product. Else, like i said you can use the above mentioned plugin which will do the same once you install and activate it.
Cheers
Naz.