• Resolved khushbru

    (@khushbru)


    Hi,

    I want to change title of ‘Line Subtotal’ to ‘Subtotal’.

    Also The product name shows in white color. I want to changes its css. Is it possible to give it class? or is there any way to achieve this? Please help me.

Viewing 1 replies (of 1 total)
  • Plugin Support priyankajagtap

    (@priyankajagtap)

    Hi @khushbru,

    Sorry for the late reply to this.

    To change the title of ‘Line Subtotal’, you can use the filter “wcal_reminder_email_line_subtotal_header”. Below is the code which you can use to change the title. Kindly add this below custom code to the “functions.php” file of your currently active theme.

    Example:
    
    add_filter( 'wcal_reminder_email_line_subtotal_header', 'change_subtotal_header', 10, 1 );
    function change_subtotal_header( $line_subtotal_header ) {
    $line_subtotal_header = 'Subtotal';
    return $line_subtotal_header;
    }

    >> The product name shows in white color. I want to change its CSS. Is it possible to give it class? or is there any way to achieve this?
    : The product name can be changed using CSS. For emails, it is advisable to use inline CSS as CSS classes don’t always work. To change the CSS, we will have to add filters to our plugin. We will add this filter in the next update of our plugin and let you know about the same.

    Do let us know if you have any other questions.

Viewing 1 replies (of 1 total)
  • The topic ‘Change title of Line Subtotal’ is closed to new replies.