Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Many to many post relationshipsIf what I understand is correct, you can simply put the sub-category of your choice into the menu via the menu setting page. Why would you need to create custom post type for this?
Forum: Plugins
In reply to: [WooCommerce] how to retrieve product details for wp_head?Because I don’t know exactly what you’re trying to do and why, my help is limited. But using wp_head doesn’t seem like the right place in my opinion unless you have a good reason for this. So perhaps you should explain in detail what you’re really trying to accomplish.
Forum: Plugins
In reply to: [WooCommerce] how to retrieve product details for wp_head?Why do you need to put this value within the wp_head?
Forum: Plugins
In reply to: [WooCommerce] how to retrieve product details for wp_head?Have you tried looking into the woocommerce global to see if you can use anything there?
Forum: Plugins
In reply to: [WooCommerce] how to retrieve product details for wp_head?An even better way is to use the product object.
$product = get_product( get_the_ID() ); echo $product->get_price();That creates the product object and you can now use any of the object’s methods to display anything about that product you want.
Forum: Plugins
In reply to: [WooCommerce] Global Product count?You can use get_posts function to fetch that information.
Forum: Plugins
In reply to: [WooCommerce] the WC menu builders are not showing in appearance -> menusTop right of your menu page there is a tab called “screen options” pull that down and you will see the selections.
Forum: Plugins
In reply to: [WooCommerce] No featured images on products, help!…ok then sorry I can’t help you…
Forum: Plugins
In reply to: [WooCommerce] No featured images on products, help!On your product page look to the top right corner of your screen and pull down the “screen option” tab. See if “featured image” is checked.
Forum: Plugins
In reply to: [WooCommerce] No featured images on products, help!Then there is obviously a conflict with your theme. Try removing the add theme support statement completely.
Forum: Plugins
In reply to: [WooCommerce] No featured images on products, help!Switch to 2012 theme and see if you’re still having this issue.
Forum: Plugins
In reply to: [WooCommerce] Product page looks different in firefoxThat is something you have to do yourself I am afraid. Try using firebug or chrome dev tools to help you along the way.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce: Product image sizes not changeingWell if you look at the CSS, you will see why. It has a width of 94% so no matter what size you put, it will always scale to 94%…You need to either set a bigger size image than the container holding it or change your CSS to not use percentage based width.
Forum: Plugins
In reply to: [WooCommerce] Layout problemWell if you’re using a plugin, then it is still not default. If the issue is with the plugin “Magic Zoom Plus”, then you need to contact them to fix the issue.
Forum: Plugins
In reply to: [WooCommerce] Layout problemYour theme is NOT the default Twenty Twelve. You need to contact your theme author to resolve this or if you want to switch to the default 2012 and see how it suppose to look.