• Resolved samhopps1

    (@samhopps1)


    Hi, I want to make the bookmark/wish list button more prominent, and change the icon.

    I’d also like to replace the “Book Now” button with a “Save Trip” button.

    Can I do this within the confines of the plugin, or will this require some development work?

    Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,

    If you are willing to change the icon for Wishlist button, please refer below given link:

    https://wptravel.io/is-it-possible-to-bookmark-trip/

    Also, to rename ‘Book Now’ button as you have mentioned, please add following given code in functions.php file of your child theme.

    function wp_travel_customized_strings( $strings ){
    
       $strings['featured_book_now'] = __( 'Your Text here' , 'wp-travel' );
    
       return $strings;
    }
    add_filter( 'wp_travel_strings', 'wp_travel_customized_strings' );

    For detail assistance regarding creating child theme, please once refer below given link:

    https://wptravel.io/how-to-create-a-child-theme/

    If you have any queries further, please let us know.

    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘Wishlist’ is closed to new replies.