Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooCommerce search not returning resultsI just did this on my setup and it works fine…
Forum: Plugins
In reply to: [WooCommerce] Stop WooCommerce Html Requests / Files on Site LoadYou can also try this…
add_action( 'wp_enqueue_scripts', 'my_remove_scripts', 999 ); function my_remove_scripts() { if ( ! is_woocommerce() ) wp_dequeue_script( 'woocommerce' ); }But take note that there may be other JS that depends on what you’re removing so you may need to remove those too…As I stated in my comments earlier in this thread.
Forum: Plugins
In reply to: [WooCommerce] Stop WooCommerce Html Requests / Files on Site LoadIt most absolutely will work…how did you determine it didn’t work? Did you look at the page source?
I believe this is something you need to ask the author of your theme? To know for sure if this is caused by it, you can switch to 2012 theme and re-test…
Forum: Plugins
In reply to: [WooCommerce] Need help please with Short DescriptionJust use the CSS font-size property on the element you want to change.
Yes please open a new thread if it is a different topic.
I am not sure if you will be able to find any solution for this…Try searching on WordPress.org plugins section to see if there are existing plugins that do this…Or Google to see if there are solutions…Other than that, I am afraid you would need to get a developer to do it for you.
Yes it is possible but is not something you will get a solution here as it requires quite a bit of custom coding to do.
Forum: Plugins
In reply to: [WooCommerce] Single page breadcrumbs shows random post navigationThat HTML doesn’t tell me if it is from WC or not as themes/plugins can filter that…
To know for sure, switch to 2012 theme and re-test.
Forum: Plugins
In reply to: [WooCommerce] Stop WooCommerce Html Requests / Files on Site LoadYour theme’s functions.php file.
Forum: Plugins
In reply to: [WooCommerce] Need help please with Short DescriptionFor semantic and seo reasons you should not make any descriptive paragraph text into heading tags…If you want to change the style of the text just use CSS.
Forum: Plugins
In reply to: [WooCommerce] Top navigationhmmmm I am not sure what you’re asking is related to WooCommerce. Sounds like it is a theme issue?
Forum: Plugins
In reply to: [WooCommerce] External links to catalogHave you look at the template files? Your answer is in there. I would tell you which file but I don’t recall off the top of head…
Forum: Plugins
In reply to: [WooCommerce] Adding add to cart on each products on product categoriesYes it is possible. Not sure if there are already plugins out that does this but pretty sure there are.
Forum: Plugins
In reply to: [WooCommerce] Adding add to cart on each products on product categoriesThat is why I had you test to determine if this was a theme issue. Since now we know it is, you have to contact your theme developer to ask if they can add that for you.