Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Removing 'Quantity' from cartYour answer is in woocommerce/templates/cart/cart.php. You can make a copy of that and put it in your themesfolder/woocommerce/cart/ and make your changes there.
Forum: Plugins
In reply to: [WooCommerce] Formatting and Alignment Problem How to edit paddingIf you look in your theme’s css you will see this rule:
.right-sidebar #content { margin: 20px 0 0 -10px; }That -10px is what is causing your content to spill out of the left side. You can try setting that to 20px or so but beware, this may have negative affect on the rest of your site that relies on that style.
Forum: Plugins
In reply to: [WooCommerce] password_reset hook missing argument 2Yes the codex is outdated. I have now updated the codex.
Forum: Plugins
In reply to: [WooCommerce] password_reset hook missing argument 2Exactly what the error says…Your code should more like this:
add_action( 'password_reset', 'my_password_reset', 10, 2 ); function my_password_reset( $user, $new_password ) { // do stuff }Forum: Plugins
In reply to: [WooCommerce] Quantity box plus & minus out of placeSwitch to 2012 and also turn off all plugins except WC and see if this still happens.
Forum: Plugins
In reply to: [WooCommerce] Cross-Sell Images Don't WorkAs suggested on your other question, switch to 2012 theme and turn off all other plugins except WC and see if it works.
Forum: Plugins
In reply to: [WooCommerce] Checkout Page PayPal Area Isn't Lined Up ProperlyThis is not a WooCommerce issue. I would suggest you switch to 2012 theme and turn off all plugins except WC and report back…
Forum: Plugins
In reply to: [WooCommerce] Page stopped workingWhite screen usually indicates a PHP error. You should check your PHP error log to see what you find.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce is not working properly on WP3.6Works fine for me…I suggest you change to 2012 theme and turn off all plugins except WC and re-test.
Forum: Plugins
In reply to: [WooCommerce] Verification before Charging CardWhile Paypal does have that capability, you have to check if the Paypal payment module that comes default with WC will allow that or even if you purchase a separate module, you need to check if this function is there.
For more information on this you can refer to -> https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/howto_admin_authcapture
Forum: Plugins
In reply to: [WooCommerce] Translating 100% but some words are still in EnglishAlso for the record, I searched for the text you mentioned and I can find it no problem…Not too sure why it is not showing for you.
Forum: Plugins
In reply to: [WooCommerce] Translating 100% but some words are still in EnglishWhat editor are you using? POeditor? And if so, did you make sure to put in the right gettext function? In this case _x?
Forum: Plugins
In reply to: [WooCommerce] pagination for product shortcode not workI looked at the code that generates the products for the shortcode and I don’t see any indication that there was suppose to be pagination so perhaps it was not designed to use pagination. You could certainly add your own though.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce themeNot in particular no but then your ecommerce side of things will not adhere to the style of your theme and will look much different and not to mention you may encounter layout issues.
But if you must use a theme that is not made for WC, then I would suggest you start with 2012 theme as it is probably the most compatible with that in terms of layouts.
Forum: Plugins
In reply to: [WooCommerce] pagination for product shortcode not workOk put this in your theme’s functions.php file
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 4;' ), 20 );And then try the category via URL and see if pagination shows up.