• Resolved connect2vivek

    (@connect2vivek)


    Dear Sir / madam,

    Query (1)
    How to Change the Text Color, Font, Font Style, Text Background, etc of Woocommerce all Product Tab TITLES / HEADINGS.

    Query (2)

    How to interchange the position of You may also like.. and Related Products (Means “Related Products” should appear first and then “You may also like” second).

    Query (3)

    How to change the Text Style of both “You may also like” AND “Related Products”

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello @connect2vivek

    To change up the colours of the headings, you will need to go into the Customiser -> Colours and check out the H2 colour. Same goes for the font style, you’ll find the options under Customiser -> Typography.

    To change the order, you will need to create a PHP filter that switches the position of the tabs. You can find more information about this here — https://rudrastyh.com/woocommerce/change-product-tabs-order.html

    To change the text style of the tabs, simply navigate to the Customiser -> Single Product -> Product Tabs -> Design -> Font Options. From there, you’ll be able to change the styling.

    Hope this helps

    • This reply was modified 3 years, 5 months ago by Eduard.
    Thread Starter connect2vivek

    (@connect2vivek)

    Dear Sir

    I think you have not read my queries thoroughly.

    Query (1)
    How to Change the Text Color, Font, Font Style, Text Background, etc of Woocommerce all Product Tab TITLES / HEADINGS.

    If I change the font style & color of H2 heading from customizer, it will change color & style to everywhere (Post, Page, Product) where H2 heading used. I want to specifically change the Font style color, background color of Woo Product tabs HEADINGS/TITLES only.

    Query (2)

    How to interchange the position of You may also like.. and Related Products (Means “Related Products” should appear first and then “You may also like” second).

    My Question is NOT related to reordering Woo Product Tabs.
    Please read Query 2 again.

    Query (3)

    How to change the Text Style of both “You may also like” AND “Related Products”.

    I am NOT asking for Text Styling for Woo Product Tabs.

    Please read Query -3 again.

    Please REPLY & HELP

    Regards,
    Vivek

    Hey @connect2vivek

    You can change the styling from Customiser -> Typography / Colours. Just look for the H2.

    Thread Starter connect2vivek

    (@connect2vivek)

    Query – 1 (NOT RESOLED)

    I don’t want to change the Text Styling for all the H2 headings

    Only I want to change the font style of HEADINGS/TITLES of Woocommerce Page Product Tabs (Description, Additional Information, Revies, etc.) ONLY.

    What about solutions to my Query no. 2 & 3 (NOT RESOLVED)

    Hello @connect2vivek

    1&3.
    At the moment we do not offer a way to separately customise these sections. These titles are H2’s which can be customised from the Blocksy Customiser. You can always set other styling settings using the edit page menu.

    2.

    My bad, I totally misunderstood that question.

    To reorder the upsells and related products, you can re-declare the function inside your functions.php of your child theme, or by using a Code Snippets plugin.

    The code for this is:

    if (! function_exists('blocksy_woo_single_product_after_main_content')) {
    	function blocksy_woo_single_product_after_main_content() {
    		if (is_product()) {
    		woocommerce_output_related_products();
                    woocommerce_upsell_display();
    		}
    	}
    }

    Hope this finally clears it up.

    Thanks

    • This reply was modified 3 years, 5 months ago by Eduard.
    Thread Starter connect2vivek

    (@connect2vivek)

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Woocommerce Product Tab TITLE, Upsell, Crosssell’ is closed to new replies.