<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>Adding Tripadvisor Social Icon &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/feed/</link>
		<description></description>
		<lastBuildDate>Wed, 22 Oct 2025 16:41:01 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-257299</guid>
					<title><![CDATA[Adding Tripadvisor Social Icon]]></title>
					<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-257299</link>
					<pubDate>Fri, 24 Apr 2015 06:10:15 +0000</pubDate>
					<dc:creator>windeewinata</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>How do I add a Tripadvisor icon to the topbar and bottom footer with the other social media icons? Thank you for your help&#8230;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-257308</guid>
					<title><![CDATA[Reply To: Adding Tripadvisor Social Icon]]></title>
					<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-257308</link>
					<pubDate>Fri, 24 Apr 2015 06:26:35 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for writing in!</p>
<p>What you are trying to accomplish requires a template customization, we would like to suggest that you use a <a href="https://theme.co/x/member/kb/how-to-setup-child-themes/" target="_blank" rel="nofollow">child theme</a>. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in  <a href="https://theme.co/x/member/kb/customization-best-practices/" target="_blank" rel="nofollow">Customization Best Practices</a>.</p>
<p>Once your child theme is setup, you can insert the following code in your child theme&#8217;s functions.php</p>
<pre><code>// Social Output
// =============================================================================

if ( ! function_exists( &#039;x_social_global&#039; ) ) :
  function x_social_global() {

    $facebook    = x_get_option( &#039;x_social_facebook&#039;, &#039;&#039; );
    $twitter     = x_get_option( &#039;x_social_twitter&#039;, &#039;&#039; );
    $google_plus = x_get_option( &#039;x_social_googleplus&#039;, &#039;&#039; );
    $linkedin    = x_get_option( &#039;x_social_linkedin&#039;, &#039;&#039; );
    $xing        = x_get_option( &#039;x_social_xing&#039;, &#039;&#039; );
    $foursquare  = x_get_option( &#039;x_social_foursquare&#039;, &#039;&#039; );
    $youtube     = x_get_option( &#039;x_social_youtube&#039;, &#039;&#039; );
    $vimeo       = x_get_option( &#039;x_social_vimeo&#039;, &#039;&#039; );
    $instagram   = x_get_option( &#039;x_social_instagram&#039;, &#039;&#039; );
    $pinterest   = x_get_option( &#039;x_social_pinterest&#039;, &#039;&#039; );
    $dribbble    = x_get_option( &#039;x_social_dribbble&#039;, &#039;&#039; );
    $flickr      = x_get_option( &#039;x_social_flickr&#039;, &#039;&#039; );
    $behance     = x_get_option( &#039;x_social_behance&#039;, &#039;&#039; );
    $tumblr      = x_get_option( &#039;x_social_tumblr&#039;, &#039;&#039; );
    $soundcloud  = x_get_option( &#039;x_social_soundcloud&#039;, &#039;&#039; );
    $rss         = x_get_option( &#039;x_social_rss&#039;, &#039;&#039; );

    $output = &#039;&lt;div class=&quot;x-social-global&quot;&gt;&#039;;

      if ( $facebook )    : $output .= &#039;&lt;a href=&quot;&#039; . $facebook    . &#039;&quot; class=&quot;facebook&quot; title=&quot;Facebook&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-facebook-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $twitter )     : $output .= &#039;&lt;a href=&quot;&#039; . $twitter     . &#039;&quot; class=&quot;twitter&quot; title=&quot;Twitter&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-twitter-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $google_plus ) : $output .= &#039;&lt;a href=&quot;&#039; . $google_plus . &#039;&quot; class=&quot;google-plus&quot; title=&quot;Google+&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-google-plus-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $linkedin )    : $output .= &#039;&lt;a href=&quot;&#039; . $linkedin    . &#039;&quot; class=&quot;linkedin&quot; title=&quot;LinkedIn&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-linkedin-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $xing )        : $output .= &#039;&lt;a href=&quot;&#039; . $xing        . &#039;&quot; class=&quot;xing&quot; title=&quot;XING&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-xing-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $foursquare )  : $output .= &#039;&lt;a href=&quot;&#039; . $foursquare  . &#039;&quot; class=&quot;foursquare&quot; title=&quot;Foursquare&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-foursquare&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $youtube )     : $output .= &#039;&lt;a href=&quot;&#039; . $youtube     . &#039;&quot; class=&quot;youtube&quot; title=&quot;YouTube&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-youtube-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $vimeo )       : $output .= &#039;&lt;a href=&quot;&#039; . $vimeo       . &#039;&quot; class=&quot;vimeo&quot; title=&quot;Vimeo&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-vimeo-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $instagram )   : $output .= &#039;&lt;a href=&quot;&#039; . $instagram   . &#039;&quot; class=&quot;instagram&quot; title=&quot;Instagram&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-instagram&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $pinterest )   : $output .= &#039;&lt;a href=&quot;&#039; . $pinterest   . &#039;&quot; class=&quot;pinterest&quot; title=&quot;Pinterest&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-pinterest-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $dribbble )    : $output .= &#039;&lt;a href=&quot;&#039; . $dribbble    . &#039;&quot; class=&quot;dribbble&quot; title=&quot;Dribbble&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-dribbble&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $flickr )      : $output .= &#039;&lt;a href=&quot;&#039; . $flickr      . &#039;&quot; class=&quot;flickr&quot; title=&quot;Flickr&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-flickr&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $behance )     : $output .= &#039;&lt;a href=&quot;&#039; . $behance     . &#039;&quot; class=&quot;behance&quot; title=&quot;Behance&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-behance-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $tumblr )      : $output .= &#039;&lt;a href=&quot;&#039; . $tumblr      . &#039;&quot; class=&quot;tumblr&quot; title=&quot;Tumblr&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-tumblr-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $soundcloud )  : $output .= &#039;&lt;a href=&quot;&#039; . $soundcloud  . &#039;&quot; class=&quot;soundcloud&quot; title=&quot;SoundCloud&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-soundcloud&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;
      if ( $rss )         : $output .= &#039;&lt;a href=&quot;&#039; . $rss         . &#039;&quot; class=&quot;rss&quot; title=&quot;RSS&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-rss-square&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;; endif;

    // Add your trip advisor link here
    $output .= &#039;&lt;a href=&quot;http://your-trip-advisor-link/&quot; class=&quot;trip-advisor&quot; title=&quot;Trip Advisor&quot; target=&quot;_blank&quot;&gt;&lt;i class=&quot;x-icon-plane&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;;

    $output .= &#039;&lt;/div&gt;&#039;;

    echo $output;

  }
endif;</code></pre>
<p>Please let us know if this works out for you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-261116</guid>
					<title><![CDATA[Reply To: Adding Tripadvisor Social Icon]]></title>
					<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-261116</link>
					<pubDate>Wed, 29 Apr 2015 03:25:20 +0000</pubDate>
					<dc:creator>windeewinata</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you so much for your help, I&#8217;ll try it. </p>
<p>I&#8217;m new here and thought that I&#8217;d get an email to notify for a post reply :), so I just waited and wondered :). Thanks again.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-261120</guid>
					<title><![CDATA[Reply To: Adding Tripadvisor Social Icon]]></title>
					<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-261120</link>
					<pubDate>Wed, 29 Apr 2015 03:30:34 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>You can enable this option by clicking on the &#8220;Subscribe&#8221; link located on the top right hand side of the window.</p>
<p>Please refer to the screenshot here (<a href="http://prntscr.com/68t8e5" rel="nofollow">http://prntscr.com/68t8e5</a>).</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-261288</guid>
					<title><![CDATA[Reply To: Adding Tripadvisor Social Icon]]></title>
					<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-261288</link>
					<pubDate>Wed, 29 Apr 2015 11:00:41 +0000</pubDate>
					<dc:creator>windeewinata</dc:creator>

					<description>
						<![CDATA[
						<p>Wonderful, thank you!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-261381</guid>
					<title><![CDATA[Reply To: Adding Tripadvisor Social Icon]]></title>
					<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-261381</link>
					<pubDate>Wed, 29 Apr 2015 13:48:01 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-262939</guid>
					<title><![CDATA[Reply To: Adding Tripadvisor Social Icon]]></title>
					<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-262939</link>
					<pubDate>Fri, 01 May 2015 08:57:45 +0000</pubDate>
					<dc:creator>windeewinata</dc:creator>

					<description>
						<![CDATA[
						<p>It&#8217;s working nicely. Thank you very much.</p>
<p>I&#8217;ve prepared a custom icon for tripadvisor to replace the standard plane icon. Could you please tell me where I can switch it? Thank you again.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-263003</guid>
					<title><![CDATA[Reply To: Adding Tripadvisor Social Icon]]></title>
					<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-263003</link>
					<pubDate>Fri, 01 May 2015 11:13:30 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Change the following line of the above code and set the image URL.</p>
<pre><code>
    $output .= &#039;&lt;a href=&quot;http://your-trip-advisor-link/&quot; class=&quot;trip-advisor&quot; title=&quot;Trip Advisor&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.path.to/triavisor/image.png&quot;&gt;&lt;/a&gt;&#039;;
</code></pre>
<p>Hope that&#8217;s clear.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-264834</guid>
					<title><![CDATA[Reply To: Adding Tripadvisor Social Icon]]></title>
					<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-264834</link>
					<pubDate>Mon, 04 May 2015 08:39:40 +0000</pubDate>
					<dc:creator>windeewinata</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you very much!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-264835</guid>
					<title><![CDATA[Reply To: Adding Tripadvisor Social Icon]]></title>
					<link>https://theme.co/archive/forums/topic/adding-tripadvisor-social-icon/#post-264835</link>
					<pubDate>Mon, 04 May 2015 08:41:17 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>You are always welcome.<br />
If there’s anything else, we can help you with, please let us know.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

