• Hello friends, i am using storefront deli theme and would like to have order tracking page where you have “the currency symbol” that shows the number of product you have on your cart on extreme right of the navigation bar.

    Please how do i do this?

    Your support is highly appreciated.

    Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey,

    Easiest solution would be to just plug the storefront_cart_link() function to add your own code there.

    I recommend using our Theme Customisations plugin to make this change.

    Cheers

    Thread Starter Bennn

    (@bennn)

    Hello James,

    Thank you for your response. Please how do i plug the storefront_cart_link() function and add the track your order code, please i am still learning how to do this and will appreciate if you help me with the exact code to use.

    Thank you so much.

    Hey,

    Just declare it in your functions.php file like so;

    function storefront_cart_link() {
    // Put your code here
    }

    Cheers

    Thread Starter Bennn

    (@bennn)

    Hello James, thank you so much for your support. What I want there is “Track Your Order”
    Please what code should i use, i really don’t know how to code.

    Thanks again.

    Hey,

    function storefront_cart_link() {
    echo '<a href="https://url.here">Track your order</a>';
    }

    Just replace the url with your own ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change currency symbol to track your order’ is closed to new replies.