• Resolved yorickweb

    (@yorickweb)


    Hi,

    I hope someone can help me with this problem, I don’t know how to do it.
    I try to add text to my shipping methods in the order summary

    Example: http://prntscr.com/ee2p11

    Where do I have to edit this en how should I do this? I use a child theme.

    Kind regards,

    Yorick

Viewing 4 replies - 1 through 4 (of 4 total)
  • You would need to customise templates/cart/cart-shipping.php. Copy the file to:
    wp-content/themes/your-child-theme/woocommerce/cart/cart-shipping.php
    and edit the copy.

    If your theme has a version of this file, that would be the one to start with.

    Alternatively this function can print your custom text on a new row inserted above shipping row, not quite what you want but easier to do and maintain. The snippet goes in functions.php of your child theme.

    add_action( 'woocommerce_review_order_before_shipping', 'custom_shipping_note' );
    function custom_shipping_note() {
      print '<tr><td></td><td>My custom text about shipping methods.</td></tr>'.PHP_EOL;
    }
    
    Thread Starter yorickweb

    (@yorickweb)

    Thank you for the answer lorro.

    The function you gave me will do the job. Do you have any idea how I can insert an url to one of my pages in that custom text?

    Like this:

    “For more information click here and choose” ?

    Thanks!

    add_action( 'woocommerce_review_order_before_shipping', 'custom_shipping_note' );
    function custom_shipping_note() {
      print '<tr><td></td><td>For more information click <a href="http://www.v2.rent-fun.be/transport/" target="_blank">here</a> and choose.</td></tr>'.PHP_EOL;
    }
    
    Thread Starter yorickweb

    (@yorickweb)

    Thank You lorro!
    Topic closed!

    • This reply was modified 9 years, 3 months ago by yorickweb.
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Custom text to shipping methods’ is closed to new replies.