Home Forums WoodMart support forum product page bullets

product page bullets

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #272121

    mitcheos
    Participant

    Hi, point format in the product pages adds an arrow instead. How do I fix this?

    Thanks

    Attachments:
    You must be logged in to view attached files.
    #272153

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .wc-tab-inner>div>ul>li:before{
    display:none;
    }
    body .wc-tab-inner>div>ul>li{
    list-style-type:disc;
    }

    Best Regards

    #272320

    mitcheos
    Participant

    Thanks Elise, that fixed it!

    #272345

    mitcheos
    Participant

    I also get the same issue on post page, see link below. Any ideas how to fix it?

    #272431

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .wpb_text_column .wpb_wrapper>ul>li:before{
    display:none;
    }
    .wpb_text_column .wpb_wrapper>ul>li{
    list-style-type:disc;
    }

    Best Regards

    #273192

    mitcheos
    Participant

    Also, one more thing. The new line spacing is not working on the custom tab content.

    #273269

    Hello,

    Please provide the screen of what you mean.

    Best Regards

    #273354

    mitcheos
    Participant

    screenshot below

    Attachments:
    You must be logged in to view attached files.
    #273421

    Hello,

    Please try to press “Enter” to get paragraphs if it does not work, provide your site admin access I will check the settings.

    Best Regards

    #273551

    mitcheos
    Participant

    Please see login details below.

    #273595

    Hello,

    Please check the credentials I cannot log in.

    Best Regards

    #273747

    mitcheos
    Participant

    .

    #274012

    Hello,

    Please add this code to the functions.php of the child theme:

    
    function woodmart_custom_product_tab_content() {
    		// The new tab content
    		$tab_content = get_post_meta( get_the_ID(), '_woodmart_product_custom_tab_content', true );
    		echo wpautop( do_shortcode( $tab_content ) );
    	}

    Best Regards

Viewing 13 posts - 1 through 13 (of 13 total)