Hi Ed,
I had a look at the tutorial, which explained the steps I'd taken in the past. There's just one part I'm still lost on. How do I know where the last line is or exactly where to add the new code? That seemed to be my problem in the past. I'm using the php.file in my themes template folder.
There doesn't seem to be a line there that is clearly the last line, or at least not one that is near the other lines. For example, another issue I have is configuring my Woocommerce pages. Woothemes said;
First unhook the WooCommerce wrappers;
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
Then hook in your own;
add_action('woocommerce_before_main_content', create_function('', 'echo "<section id=\"main\">";'), 10);
add_action('woocommerce_after_main_content', create_function('', 'echo "</section>";'), 10);
I need to figure out the ID code etc, but even if I do that, I'm still not sure exactly where to remove or add these old or new codes from? Should I go to the last line that has code on it & then add a new line just below that? Are the numbers at the start of every line relevant?
Thanks