Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Failure installing Woocommerce on WP 3.6I don’t know how else to explain to you but your error tells you exactly what went wrong.
Whether WooCommerce may or may not use too much memory is for another topic but your issue at hand is the same.
Forum: Plugins
In reply to: [WooCommerce] Failure installing Woocommerce on WP 3.6Your issue is exactly what that errors says. You’re running out of PHP memory. I see you already have 64MB but perhaps you need 96MB or 128MB. Usually people can get away with 64 but perhaps you have a Dutch version it takes more memory but I am not sure about that.
Forum: Plugins
In reply to: [WooCommerce] Navigation menu li elements have no widthI highly doubt your issue is from WooCommerce per your description.
Forum: Plugins
In reply to: [WooCommerce] Single page breadcrumbs shows random post navigationAnd are you sure the breadcrumbs are generated by WooCommerce? Sometimes themes have their own breadcrumbs…
Forum: Plugins
In reply to: [WooCommerce] Use woocommerce templates manually, on different pagesYou didn’t do it correctly. You should create a menu called “menu” or anything general like “main menu” …Then you need to assign it in the dropdowns to your left. You didn’t do that. Your menu now is pulling from just the pages..etc..
Forum: Plugins
In reply to: [WooCommerce] Problem after WP and WooCommerce domain migrationAfter the migration did you remember to go to permalinks and click on save twice?
Forum: Plugins
In reply to: [WooCommerce] Use woocommerce templates manually, on different pagesWhat I told you to do already accomplishes that. Any product categories you put into the menu will link to products pages that utilize the product templates.
Forum: Plugins
In reply to: [WooCommerce] Use woocommerce templates manually, on different pagesYes go to your appearance->menus and drag and drop the product categories you want displayed in your menu bar. If you don’t immediately see the product categories, move your mouse to the top right of the screen and click on “screen options” and from there you can select what is shown.
Forum: Plugins
In reply to: [WooCommerce] blockUI requires JQueryHmmmm I am still wondering why I am not seeing this message…
Forum: Plugins
In reply to: [WooCommerce] Related Product – edit title from h3 tag to p tagDespite my affords, if you’re still keen on doing that, you can look into the file content-product.php. That is the file that generates that h3 title tag.
You want to copy that file to your theme folder/woocommerce folder and make your edits there.
Forum: Plugins
In reply to: [WooCommerce] Related Product – edit title from h3 tag to p tagWhy would you want to do that? h3 is an appropriate tag for a title of a product. It is semantically correct and good for seo.
Forum: Plugins
In reply to: [WooCommerce] blockUI requires JQueryNot getting any error on my end…
Forum: Plugins
In reply to: [WooCommerce] Show product category page list styleWhy without plugin?
Forum: Plugins
In reply to: [WooCommerce] Stop WooCommerce Html Requests / Files on Site LoadWell first of all don’t use pingdom as it is the worse testing site ever. Pingdom loads everything! Do a search on Google about pingdom and you will see several indepths article on how inaccurate pingdom is.
The other thing is if having WooCommerce activated and loading some assets on pages that are not e-commerce is causing your page to slow down where you notice, then I would suggest changing host. As it should not impact your site to a point where you will know the difference with naked eye.
On the other hand if you are keen to not load any assets from WooCommerce unless on a actual e-commerce page, you can do that as well.
You can do a conditional check, probably something like this.
if ( ! is_woocommerce() ) { wp_dequeue_script( 'woocommerce' ); }There are other scripts you can add to that list to remove from. Checkout the woocommerce.php file in the plugin.
Forum: Plugins
In reply to: [WooCommerce] Stop WooCommerce Html Requests / Files on Site LoadNot exactly sure what you mean. What files are you referring to?