Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #2538477
Add a line of text below subtotal
Closed

Comments

  • Michelle started the conversation

    Hi. I want to add a "shipping will be calculated on the checkout page" note in the flycart. Is this possible? 

  •  767
    Janilyn replied

    Hi Michelle,

    Thank you for contacting WPClever Support Forum. 

    We’ve received your ticket and assigned one of our developers to help you with that. 

    He’ll be looking into your question and responding with specific instructions as soon as possible. 

    Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.

    Best regards.

    Janilyn T. - WPClever Support Agent

  •  1,222
    Dustin replied

    Hi Michelle,

    Yes, you can do that! 

    Please add below code to current-theme (or child-theme) / functions.php

    add_filter( 'woofc_above_items_content', 'your_woofc_above_items_content', 99, 1 );
    function your_woofc_above_items_content( $content ) {
        return '<div style="text-align: center; color: white">Your text here</div>';
    }

    And the result https://www.screencast.com/t/h1R3F3yDP8oP

    Best regards,
    Dustin

  •  1,222
    Dustin replied

    Sorry! Please change the code to:

    add_filter( 'woofc_below_subtotal_content', 'your_woofc_below_subtotal_content', 99, 1 );
    function your_woofc_below_subtotal_content( $content ) {
        return '<div style="text-align: center; color: white">Your text here</div>';
    }

    And the result https://www.screencast.com/t/7NWdc54Wn

    Best regards,
    Dustin

  • Michelle replied

    Perfect!! Thank you so much. 

  •  1,222
    Dustin replied

    You're welcome!smile.png

    If you are satisfied with our plugin and support, please reward it with a full five-star ★★★★★ rating.
    https://wordpress.org/support/plugin/woo-fly-cart/reviews/?filter=5
    Thank you in advance! <3

    Best regards,
    Dustin