Im making a site with WooCommerce and Thematic, i always get stuck on adding functions/hooks...
I need to add text on top of my Shop page/ Home page as well as different text on top of Category pages but all different text.. i know this can be done with some conditional statements.. but even using the wp codex things dont seem to want to work
this is my current code
function home_content()
{
echo '<strong>My Text Here';
}
add_action('woocommerce_before_shop_loop_item_title', 'home_content');
maybe the reson i couldnt do it is cause, is_home which i used before, is not right since my Home is actually my "shop" according to WooCommerce...
could someone wrap that code for me conditionally for the home/shop and category pages?
Thank you!