Colin Young
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] shipping classes for smaller itemsIf nobody knows how to do this, where could I get help please?
Forum: Plugins
In reply to: [WooCommerce] Grouping option missing from Single ProductI can’t now, I have a disaster going on with my hosting just now.
HOwever, now you mention it my single products are all hidden
Forum: Plugins
In reply to: [WooCommerce] Grouping option missing from Single ProductSorry Mike, I don’t understand the question
Forum: Plugins
In reply to: [WooCommerce] Grouping option missing from Single ProductI think my version was 3 but it might’ve been one below that.
Sorry but what do you mean with – Do you have a link to those products being grouped?
Forum: Plugins
In reply to: [WooCommerce] Grouping option missing from Single ProductIt wasn’t 3.01. Just updated it and the whole site has gone belly up…. oops
Need to try and get a restore
I don’t know if they’re variations. I just created the group product then 2 single products. At the time I linked the single products to the group product but it looks as though it might be the other way now.
- This reply was modified 7 years, 11 months ago by Colin Young.
Forum: Plugins
In reply to: [WooCommerce] Grouping option missing from Single Producthttps://www.fancyabrew.com/product/jasmine-dragon-pearls/ is one of the grouped products and here is a screenshot of the links in woocommerce – https://i.imgur.com/ULhzSff.png
Hope that helps
Forum: Plugins
In reply to: [WooCommerce] Grouping option missing from Single ProductThanks for such a rapid response.
I’ve checked there and can see what you’re talking about.
I sell tea. Each tea has a 50g and 100g option. I went into the grouped product and could see the singles in there. Clicked on update and checked again but it didn’t make a difference.
I then removed them, updated, add them back in and it still doesn’t show.
Forum: Plugins
In reply to: [WooCommerce Products Per Page] Can't get it working!Just to help anyone else, I had the problem where the the dropdown menu wouldn’t trigger. The 1st post from Jeroen helped
“Strange it does not work. I see that the .products class is falling over the dropdown, you can fix this by adding .products { float: left } to your css”
Forum: Fixing WordPress
In reply to: Cannot acces site anymore/I changed 'start' urlHey myland
This page might help https://codex.www.ads-software.com/Changing_The_Site_URL (if I am understanding your problem)
Forum: Plugins
In reply to: [WooCommerce] After update: Products not found when clicked on in shopHi Sarah
A couple of things to check first would be
1. When you hover over a product and you can see the link at the bottom of your browser, does it make sense (does it look the way you would expect)?
2. Your products, for some reason, haven’t become hidden have they?Forum: Plugins
In reply to: [WooCommerce] move product category description below shoparticlesHooks are used all over the place in WooCommerce and they’re actually very good.
If you have a look in content-single-product.php you will see further down the code a number of statements that look like this
do_action( 'woocommerce_single_product_summary' );
These reference information in woocommerce-hooks.php. Now, you can mess around with these ‘do-action’ statements and actually break them down into the functions that are part of the actions.
Here is the summary action in woocommerce-hooks.php
/** * Product Summary Box * * @see woocommerce_template_single_title() * @see woocommerce_template_single_price() * @see woocommerce_template_single_excerpt() * @see woocommerce_template_single_meta() * @see woocommerce_template_single_sharing() */ add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_sharing', 50 );
If I remember correctly you can extract woocommerce_template_single_meta to get the categories and place it as a function in the content-single-product.php. Add it as woocommerce_template_single_meta();
You should then see the categories listed wherever you put them. After that you will have to float or move it around and adjust it as you see fit.
Good luck
Forum: Plugins
In reply to: [WooCommerce] move product category description below shoparticlesI did this before and it involved splitting and moving hooks and some CSS. I can’t get to the files just now to give you more information but I will have a look later to see, if you haven’t resolved it.
There is a file called single_product and another one with a similar name. I had to break down the hooks in them and reposition them in the php file.
After that I used some CSS to move them around to get them where I wanted.
As I said, I will have a look when I get home and try to get you more detail if you haven’t resolved your issue by then.
On a side note, you might want to work with a child theme when modifying these files. WooCommerce has excellent support for them
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Image Size- unable to controlJust FTP to your website, probably go to public_html then you should see the path that bbernstone gave you
wp-content/plugins/woocommerce/assets/css
Just be caredul when updating the plugin though because you might lose whatever you put in there
Forum: Plugins
In reply to: [WooCommerce] product data tab not showingAre any of the product information tabs showing anything or is it just the general tab?
Forum: Plugins
In reply to: [WooCommerce] Show a div when having a determined shipping classThe only thing I would add to this and that would protect you from future updates, would be to do this in a child theme.
PHP code is susceptible to being removed by updates and WooCommerce offer excellent child theme options out of the box