Viewing 1 replies (of 1 total)
  • Plugin Support Dani F. a11n

    (@danielinhou)

    Hi there,

    You could use the woocommerce_before_shop_loop_item_title as suggested in this Skyverge’s article

    function sv_add_text_above_wc_shop_image() {
        
        echo '<h4 style="text-align: center;">Some sample text</h4>';
    }
    add_action( 'woocommerce_before_shop_loop_item_title', 'sv_add_text_above_wc_shop_image', 9 );

    It worked on my test site.

    Cheers!

Viewing 1 replies (of 1 total)

The topic ‘Adding Text above Product Image’ is closed to new replies.