Yojance Rabelo
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Change "Select a state" to "Select a region" on Checkout pageTry adding this to your Theme’s function.php file:
add_filter( 'woocommerce_billing_fields', 'wc_billing_fields_state_filter', 10, 1 ); function wc_billing_fields_state_filter( $address_fields ) { $address_fields['billing_state']['label'] = 'Select a region'; return $address_fields; }
Forum: Plugins
In reply to: [WooCommerce] category wise product showGo to WordPress Menus and on the top right of the screen click on “Screen Options” and then check the “Product Categories” checkbox and you’ll now have the Product Categories block on the left and you’ll be able to add it to your WordPress Menu.
Forum: Plugins
In reply to: [WooCommerce] woocomerce problemI’m not sure I understand correctly. You want it so that when someone clicks on Add To Cart on the product page, the customer be taken to the cart page instead of staying on the same page?
Forum: Plugins
In reply to: [WooCommerce] Alter "Remove from cart" linkJust add this to your Theme’s CSS file:
div.woocommerce form.woo_cart table.shop_table tbody tr.cart_table_item td.product-remove a.remove { color: red; font-weight: bold; }
That should work.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart not showing upAdd
woocommerce_content()
to your theme and see if that helps.Forum: Plugins
In reply to: [WooCommerce] Make phone number not requireThe very last piece of code on that page is what you need to insert into your functions.php file inside your WordPress theme.
add_filter( 'woocommerce_billing_fields', 'wc_npr_filter_phone', 10, 1 ); function wc_npr_filter_phone( $address_fields ) { $address_fields['billing_phone']['required'] = false; return $address_fields; }
Forum: Plugins
In reply to: [WooCommerce] Alter "Remove from cart" linkCan you post a link to your Website?
Also, this bit of code is inside templates/cart/cart.php or inside
woocommerce/cart/cart.php if you are overriding these templates from within your theme.Forum: Plugins
In reply to: [WooCommerce] Woocommerce Image Size- unable to controlTry installing one of those plug-ins which regenerate your thumbnails. Your theme might be serving the only images it has so re-sizing them might help.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart not showing upThese files were inside the theme’s folder so if you don’t see them you might be experiencing another kind of problem.
What does your System Status say? Any Red fields at all?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart not showing upCan you post a link to your Website? I recently had an issue with the cart and checkout page and it turned out to be that I had a page named page-cart.php and page-checkout.php and as soon as I got rid of those, everything worked like a charm.
Forum: Plugins
In reply to: [WooCommerce] Everything after /shop/ doesn't work!!Im going to give that a try and hopefully it will be fixed.
Forum: Plugins
In reply to: [WooCommerce] Everything after /shop/ doesn't work!!What’s the URL of your Website?
I’m having a similar problem but only the checkout page is missing.Forum: Plugins
In reply to: [WooCommerce] On-sale Widget no longer showingI’m working on my localhost with WP 3.5.1 and WooCommerce 2.0.9 with TwentyTwelve and I can see the On-Sale widget just fine.
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] Need help adding Choices to a Select TypeHi Derek,
I solved the problem by using
ot_recognized_font_families
, didn’t know it was there.Thanks.
Try to change the value of ‘pages’.
Instead of having this:
'pages' => 'your-post-type',
Try this:
'pages' => array( 'post', 'page' ),