rhonz10
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Menu Exporter] Exports everythingDoes not work..
Throws Error code: ERR_INVALID_RESPONSE.
I think this plugin is dead. I hope someone would create a similar plugin that works with the latest wordpress version.
Forum: Plugins
In reply to: [WooCommerce] 404 Error for Cart and other WooCommerce pagesSame error here.. mod_rewrite is enabled and loaded.
I’ve noticed this when i changed something on the Woocommerce settings and save it. Cart and other WC page goes 404..
Changing the permalink settings to default is the only way to make it work again but then it’s not SEO friendly.. UGLY.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Product Orderthis might help..
Forum: Plugins
In reply to: [WooCommerce] Hide Priceshi Bryan, can you help me with this one, I’ve posted this last week but nobody seems to have the answer.
http://ww.wp.xz.cn/support/topic/blank-select-option-on-checkout-shipping-method
sorry if this is Off the topic.
thanks.
Rhon
Forum: Plugins
In reply to: [WooCommerce] To show prices only to registered usersNo worries, you can try Bryan’s solution..
Forum: Plugins
In reply to: [WooCommerce] Override template files not working?you’re welcome!
BTW, you can set this topic as [RESOLVED]. Thanks!
Forum: Plugins
In reply to: [WooCommerce] How to show product's stock availability on product page ?Edit the product:
Product Data -> Inventory Tab
Tick “Manage stock?”
Fill-in “Stock Qty”.
Forum: Plugins
In reply to: [WooCommerce] Override template files not working?have you tried overriding it via your theme’s functions.php?
I did most of my modifications there and not having to hack core woocommerce files..
Forum: Plugins
In reply to: [WooCommerce] Shipping FieldsI’ve looked at your site, shipping and billing address fields are of the same width.. what’s wrong about it?
Forum: Plugins
In reply to: [WooCommerce] To show prices only to registered userslook for the file price.php inside woocommerce templates folder, copy it to your_theme_folder/woocommerce/loop and if you’ve already done so,
edit this line of code:<?php if ($price_html = $product->get_price_html()) : ?> <span class="price"><?php echo $price_html; ?></span> <?php endif; ?>to this:
<?php if(is_user_logged_in()){ if ($price_html = $product->get_price_html()) : ?> <span class="price"><?php echo $price_html; ?></span> <?php endif; } ?>—
RhonForum: Plugins
In reply to: [WooCommerce] Override template files not working?this is what Bryan is talking about.
Copy the folder plugins/woocommerce/templates to themes/your_theme_folder/ and rename it as woocommerce.
The folder structure should be like this:
your_theme_folder
├─ woocommerce
│ ├─ woocommerce_template_files.php
├─ your_theme_files.phpthis way, any modifications you made to the woocommerce templates will not be overriden by woocommerce plugin updates.
Forum: Plugins
In reply to: [WooCommerce] Shipping – limit method selection per productdisable the Flat Rate method..
Forum: Plugins
In reply to: [WooCommerce] Shop Page As A Listthis might help.
http://ww.wp.xz.cn/extend/plugins/woocommerce-grid-list-toggle/
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce] Trying to "order" categoriesmissing category slug
Ex:
[product_category category=”zombie-contingency” per_page=”12″ columns=”4″ orderby=”date” order=”desc”]Forum: Plugins
In reply to: [WooCommerce] WooCommerce capabilities questionsare you referring to Gift Checks?
WooCommerce do have Coupons which enable discounts and free shipping.