wpriders
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Create products from mobile including pics from cameraHi @amaa
You can add featured images to products from a smartphone(this is a default functionality). I managed to add the images using both iOS and Android. When you click the “Select featured image” link you can upload existing images from your gallery or capture a new photo and upload it.
Forum: Plugins
In reply to: [WooCommerce] Slow Checkout process when place order is clickedas for logged out user, it moves fast
Forum: Plugins
In reply to: [WooCommerce] Slow Checkout process when place order is clickedHello
Please check the script running, it seems like the server has a delay.Forum: Plugins
In reply to: [WooCommerce] How to create custom comment template like WooCommerce?hello
I found a few resources:
– https://www.cssigniter.com/add-rating-wordpress-comment-system/
– https://wordpress.org/plugins/comment-star-rating/Might help!
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Checkout Input fields issueHello, tudorgr!
Is the issue resolved?
I added a service to cart and went to checkout. everything seems fine.Forum: Plugins
In reply to: [WooCommerce] Can’t change the language of the woocommerce cart!hello
try changing cart message with this plugin: https://wordpress.org/plugins/loco-translate/
Choose Woocommerce and Portuguese. If this is not working try to look in other modules that change the cart in a way or other, you might find the text there.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce image too big. Custom themehello jinx180
I have 3 solutions:
1) There are some Javascript errors regarding the image zoom. Try fixing them and that might resolve your issue.2) CSS code that is specific for this product.
div#product-220.product .woocommerce-product-gallery .woocommerce-product-gallery__image{ width: 100%; } div#product-220.product .woocommerce-product-gallery .woocommerce-product-gallery__image img{ width: auto!important; max-height: 300px; margin: 0px auto; }By removing “#product-220” will make the css applied for all products.
3) Product images settings can be changed:
http://www.segrow.co.uk/wp-admin/options-media.php
AND
Go to Appearance > Customize > WooCommerce > Product Images
After doing these changes will be recommended to do a images regenerations. I suggest this plugin: https://wordpress.org/plugins/regenerate-thumbnails/I suggest you fix the zoom issue first
Forum: Plugins
In reply to: [WooCommerce] Move Order Notes field aroundHello Akberovr!
I don’t know is a CSS fix is good, but you can try adding this CSS:
form.woocommerce-checkout #customer_details > div{ clear: both; float: left; }This way you can make further changes to checkout columns.
Hope is good!
- This reply was modified 7 years, 10 months ago by wpriders.
Hello hamishmac!
That error seems to be something from the server.
Have some changes been done to code lately?
Try enabling debug: https://codex.wordpress.org/Debugging_in_WordPress and it might give you better information about whats happening.Hope it helps!
Forum: Plugins
In reply to: [WooCommerce] Can’t change product dataHello
Try switching to any WordPress themes(twentysixteen, twentyseventeen) and add a product.
Maybe your theme(Shop Isle) is having some issues.Forum: Plugins
In reply to: [WooCommerce] wc_format_phone_number removing () from around area codeHello!
I am afraid that we are unable to edit that function safely.
I think that function does not suppose to do that.Forum: Plugins
In reply to: [WooCommerce] How To Restore Default Cart Pagehello junkofdavid2
I would copy original Flatsome to current site, but this will replace all changes your dev have done before, if he did all the changes on main theme, not in a child theme.
- This reply was modified 7 years, 10 months ago by wpriders.
Forum: Plugins
In reply to: [WooCommerce] Move product titles above thumbnailHello!
try adding this to functions.php, in your active theme.
THIS will change the template for all product listing!function product_change_title_position(){ remove_action('woocommerce_shop_loop_item_title','woocommerce_template_loop_product_title'); add_action('woocommerce_before_shop_loop_item_title','woocommerce_template_loop_product_title', 5); } add_action('init','product_change_title_position');Forum: Plugins
In reply to: [WooCommerce] Flat Rate Shipping Formulasorry to hear that!
For table rates you can try one of these plugins:
– Free plugin: https://wordpress.org/plugins/woocommerce-easy-table-rate-shipping/
– Paid plugin: https://woocommerce.com/products/table-rate-shipping/hello Rsink!
Thank you for the code, it gave me a better understanding of the code.
Usually WC()->cart->get_cart() works on cart and checkout page or when order is set.Try adding:
if ( WC()->cart->get_cart_contents_count() == 0 ) { /* CODE HERE */ }
OR
add the function in a better hook/filter(like: woocommerce_thankyou )Hope it helps!