so you have to use extra CSS tricks to display that icons. In general it's task beyond support, so I can give you only basic tips how it may be done:
- Find "Trip advisor" logo - white/light grey color of icon, transparency background, 16px of height. Or use Photoshop to correct size, color etc.
- In Template Options > Basic > Social icons - put needed URL to one of social icons, for example, "flickr".
- Then upload "tripadvisor" logo image (png/gif/svg) to folder /images/
- Use custom CSS that will replace "flickr" icon with image of "tripadvisor". Example code
.social-icons .fa-flickr::before {
content: url(/images/tripadvisor.png);
}