• Resolved davkan

    (@davkan)


    Hello team,

    I have all products in my woocommerce in lowercase alphabets, is it possible with small tweak that all the product titles which i import to ebay, the product title will comes in UPPER CASE only

    Thanks i advance
    Dav

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support WP Lab Support

    (@wp-lab-support)

    Hello Davkan.

    Happy to help today!

    Here’s a function for your functions.php file that should convert all item titles to uppercase when pushing to eBay:

    add_filter( "wplister_filter_listing_item", "wplister_convert_title_to_uppercase", 10 );
    function wplister_convert_title_to_uppercase( $item ) {
        $item->Title = strtoupper( $item->Title );
        return $item;
    }

    Kind regards,
    John

    Thread Starter davkan

    (@davkan)

    Thanks John.
    You did it.

    Plugin Support WP Lab Support

    (@wp-lab-support)

    Hello davkan.

    You are most welcome ??

    All the best,
    John

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘ebay product title in uppercase’ is closed to new replies.