Yes, through Nick's suggestions, I've definitely gotten further than I could have on my own! It's looking much closer to how I would like to see it. The tab area is still not up as high on the page as I would like it.. Would like it to start and be even with the top of the thumbnail pic of the product, and for some reason, it's offset down just a bit.. and still trying to figure out how to get the breadcrumb above the product pic to display... Home>>Product Category>>Product.... instead of... Home>>Products>>Product... but just in case anyone else is interested, to get where it's at now.. I've made the following changes to the woocommerce-hooks.php
Commented out Lines 116-120, like so...
//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 );
Commented out Lines 132-136, like so...
//add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
//add_action( 'woocommerce_simple_add_to_cart', 'woocommerce_simple_add_to_cart', 30 );
//add_action( 'woocommerce_grouped_add_to_cart', 'woocommerce_grouped_add_to_cart', 30 );
//add_action( 'woocommerce_variable_add_to_cart', 'woocommerce_variable_add_to_cart', 30 );
//add_action( 'woocommerce_external_add_to_cart', 'woocommerce_external_add_to_cart', 30 );
Below Line 159
add_action( 'woocommerce_product_tabs', 'woocommerce_product_reviews_tab', 30 );
I've added this code..
add_action( 'woocommerce_product_tabs', 'woocommerce_template_single_add_to_cart', 40 );
add_action( 'woocommerce_simple_add_to_cart', 'woocommerce_simple_add_to_cart', 40 );
add_action( 'woocommerce_grouped_add_to_cart', 'woocommerce_grouped_add_to_cart', 40 );
add_action( 'woocommerce_variable_add_to_cart', 'woocommerce_variable_add_to_cart', 40 );
add_action( 'woocommerce_external_add_to_cart', 'woocommerce_external_add_to_cart', 40 );
I've also added this code to my custom.css....
/* Modification to Right Align "Add to Cart" Button in Tab area of Single Product Page */
#top.single-product form.cart {
margin-bottom: 0px;
float: right;
}
I also added this code yesterday to my custom.css, but is only for adjusting the price font size..
/* Modification to adjust Price font Size in Title Container of Single Product Page */
#top .price_container .price .amount, #top .price_container .price ins .amount, #top .price_container .price ins {
font-size: 20px;
font-weight: normal;
}
Can you see or forsee any problems with the modifications I've made? Also, would those other two modifications I mentioned, getting tab area even with top of pic, and changing the breadcrumb (the way I've invisioned setting this site up, I'd really like there to be no reference back to the shop/product page at all), be something that is easy to fix?
and still can't figure out why those descriptions are being listed under the related items.. feel like I'm so close to being done with these stupid design changes, and on to what really matters.. Content!
Thank You guys Very Much for your help!