Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Paypal standard – no credit card payment on checkoutNo, this is not related to WooCommerce. I think Paypal changed their policy and you have to create an PP account first then you’re able to pay via CC. But not 100% sure, call them.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce – Adjusting Thumbnail Crop Positioning?When you upload an image, you can use the WP native editor to crop the image how you like it. Have you tried that?
Forum: Plugins
In reply to: [WooCommerce] Lightbox not working in Woocommerce 2.0.13@timread – instead of hacking the code, you should try to test if you have some sort of conflict first. Try switching to 2012 theme and turn off all plugins except for WC and see if it works.
Forum: Plugins
In reply to: [WooCommerce] How to drop sale flash over images in category view?If it ended up in top right of page it means you didn’t do exactly what I told you to do.
To summarize, the container of the element you want on top of must be of relative position and the element that you want at the corner must be absolute position and it has to come after the element you want on top in the dom.
Forum: Plugins
In reply to: [WooCommerce] "add to cart" button without reactionPost URL.
Forum: Plugins
In reply to: [WooCommerce] How to drop sale flash over images in category view?li.product has to have the CSS of position:relative and as for your code, you’re missing position:absolute;
Forum: Plugins
In reply to: [WooCommerce] Center price and product description.woocommerce ul.products li.product a, .woocommerce-page ul.products li.product a { text-align:center; }You can try putting that code in your theme’s CSS file.
Forum: Plugins
In reply to: [WooCommerce] remove add to cart button at all – Woo commerceremove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); remove_action( 'woocommerce_simple_add_to_cart', 'woocommerce_simple_add_to_cart', 30 ); remove_action( 'woocommerce_grouped_add_to_cart', 'woocommerce_grouped_add_to_cart', 30 );Put these in your theme’s functions.php file.
Or perhaps there is a language issue. Is there anyway to switch it to English for temporary test?
If you have indeed fixed all errors and it still doesn’t work, I would suggest you switch to 2012 theme and re-test.
Forum: Plugins
In reply to: [WooCommerce] Restrict Add To cart or CheckoutFor something this specific, I believe you need to hire yourself a developer.
Please look more carefully, you still have errors. This is one of them.
NetworkError: 404 Not Found - http://konjohair.co.il/wp-content/themes/xing/js/add-to-cart-variation.js?ver=1.0"Forum: Plugins
In reply to: [WooCommerce] Responsive?Responsive is done on your end. If you don’t know how to do it, you can either purchase a theme that is already designed to work with WooCommerce and that it is responsive or hire a developer to make your site responsive.
You should first fix your JS errors issue on your product page. I see several errors there. You can see it yourself by using the browser console with Chrome dev tools or firebug.
Forum: Plugins
In reply to: [WooCommerce] Huge Add to Cart button on WooCommerceI believe this is very basic CSS…In your theme you have this:
.blog .hentry a, .archive .hentry a, .search .hentry a { width:100%; height:100%; }That is making your anchor link buttons huge as it clearly shows that it makes them scale 100% of the container.