<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: Google+ Icon - any plans?</title>
		<link>http://www.themolitor.com/forums/topic/google-icon-any-plans</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Google+ Icon - any plans?</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 15:25:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/google-icon-any-plans" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Google+ Icon - any plans?"</title>
			<link>http://www.themolitor.com/forums/topic/google-icon-any-plans#post-23865</link>
			<pubDate>Fri, 11 Oct 2013 13:04:15 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23865@http://www.themolitor.com/forums/</guid>
			<description><p>Boom! Thanks for following up :-)</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>dgt on "Google+ Icon - any plans?"</title>
			<link>http://www.themolitor.com/forums/topic/google-icon-any-plans#post-23864</link>
			<pubDate>Fri, 11 Oct 2013 12:56:03 +0000</pubDate>
			<dc:creator>dgt</dc:creator>
			<guid isPermaLink="false">23864@http://www.themolitor.com/forums/</guid>
			<description><p>Ahhh.  Thanks, I shoulda looked there first.  The answer was clear as day:</p>
<p>"Unlike style.css, the functions.php of a child theme does not override its counterpart from the parent. Instead, it is loaded in addition to the parent’s functions.php. (Specifically, it is loaded right before the parent’s file.)"</p>
<p>So problem solved.  I created a functions.php in my child theme folder, and put only the new Font Awesome code in it.  Then I restored the original "factory"-shipped functions.php to B+M.   Works great!
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Google+ Icon - any plans?"</title>
			<link>http://www.themolitor.com/forums/topic/google-icon-any-plans#post-23860</link>
			<pubDate>Fri, 11 Oct 2013 11:30:20 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23860@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Nice! Thanks for sharing :-)</p>
<p>Regarding your question, I'm not sure. I haven't delved too far into child theme development.</p>
<p>Maybe the answer lies here? <a href="http://codex.wordpress.org/Child_Themes" rel="nofollow">http://codex.wordpress.org/Child_Themes</a></p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>dgt on "Google+ Icon - any plans?"</title>
			<link>http://www.themolitor.com/forums/topic/google-icon-any-plans#post-23858</link>
			<pubDate>Fri, 11 Oct 2013 10:53:37 +0000</pubDate>
			<dc:creator>dgt</dc:creator>
			<guid isPermaLink="false">23858@http://www.themolitor.com/forums/</guid>
			<description><p>Chris,</p>
<p>A quick question perhaps you can shed some light on.  At first I copied functions.php to my child theme, and added the enqueue code there so I wouldn't modify the original.  But it didn't work--it failed on line 30 with a "cannot redeclare" error.</p>
<p>Putting the code into the original functions.php works just fine.</p>
<p>Any ideas why I can't do this in a child theme?</p>
<p>dt
</p></description>
		</item>
		<item>
			<title>dgt on "Google+ Icon - any plans?"</title>
			<link>http://www.themolitor.com/forums/topic/google-icon-any-plans#post-23857</link>
			<pubDate>Fri, 11 Oct 2013 10:50:14 +0000</pubDate>
			<dc:creator>dgt</dc:creator>
			<guid isPermaLink="false">23857@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks so much Chris.  For anyone else looking into this, I decided to make this change myself.  Instead of using the built-in support for B+M's social icons, I'm now using Font Awesome.</p>
<p>Those not familiar, Font Awesome is an open source and incredibly useful set of font icons for almost 350 social services, common website icons from bullets to settings icons, and everything in between.</p>
<p>Font Awesome was originally designed to be used on Bootstrap, a website framework built by Twitter.  But with some VERY light code, it can be used in WordPress sites as well.  Those who like using PlugIns, there are several WP plugins for using Font Awesome.  I hate using them when it's not necessary though, so I implemented it with just a couple lines of code.  See below.</p>
<p>In the theme's functions.php, the following code needs to be added:</p>
<pre><code>add_action( &#039;wp_enqueue_scripts&#039;, &#039;prefix_enqueue_awesome&#039; );
/**
 * Register and load font awesome
 * CSS files using a CDN.
 *
 * @link <a href="http://www.bootstrapcdn.com/#tab_fontawesome" rel="nofollow">http://www.bootstrapcdn.com/#tab_fontawesome</a>
 * @author FAT Media
 */
function prefix_enqueue_awesome() {
	wp_enqueue_style( &#039;prefix-font-awesome&#039;, &#039;//netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css&#039;, array(), &#039;3.2.0&#039; );
}</code></pre>
<p>This loads the icons and CSS directly from Font Awesome, so they're always up to date and you don't need to download anything to your site.</p>
<p>Then, in footer.php, I swapped out the JavaScript B+M uses to display the social media sites specified in B+M's customizations panel.  At least for right now, yes, this means I am hard-coding my social media icons and URLs.  I don't mind as I'm not going to add any more though.  But that's just me.</p>
<p>So my footer.php code for the copyright and social icons now looks like this:</p>
<pre><code>&#60;div id=&#34;copyright&#34;&#62;
	&#60;a&#62;&#34;  title=&#34;&#60;?php _e(&#039;Subscribe via RSS&#039;,&#039;themolitor&#039;);?&#62;&#34; rel=&#34;nofollow&#34;&#62;&#60;i class=&#34;icon-rss-sign icon-2x&#34;&#62;&#60;/i&#62;&#60;/a&#62;
	&#60;a href=&#34;http://www.linkedin.com/in/dtrimble&#34; title=&#34;LinkedIn&#34; rel=&#34;nofollow&#34;&#62;&#60;i class=&#34;icon-linkedin-sign icon-2x&#34;&#62;&#60;/i&#62;&#60;/a&#62;
	&#60;a href=&#34;https://plus.google.com/117001282777568957074/&#34; title=&#34;Google+ Profile&#34; rel=&#34;nofollow&#34;&#62;&#60;i class=&#34;icon-google-plus-sign icon-2x&#34;&#62;&#60;/i&#62;&#60;/a&#62;
	&#60;a href=&#34;https://facebook.com/dan.trimble&#34; title=&#34;Facebook Profile&#34; rel=&#34;nofollow&#34;&#62;&#60;i class=&#34;icon-facebook-sign icon-2x&#34;&#62;&#60;/i&#62;&#60;/a&#62;
	&#60;a href=&#34;https://twitter.com/dtrimble&#34; title=&#34;Follow on Twitter&#34; rel=&#34;nofollow&#34;&#62;&#60;i class=&#34;icon-twitter-sign icon-2x&#34;&#62;&#60;/i&#62;&#60;/a&#62;
	© Copyright 1993-&#60;?php echo date(&#34;Y &#34;); ?&#62;, Daniel G. Trimble.  &#60;?php if($footer) { echo $footer;} ?&#62;
&#60;/div&#62;</code></pre>
<p>I didn't change much in the B+M CSS--left the margins, and just removed the images.  So my style.css now has the following for the socialreferrals class:</p>
<pre><code>.socialreferrals {float: right; margin: 6px 0 0 10px; border: none !important;}
.socialreferrals:hover {border: none !important;}</code></pre>
<p>The end result is what you see in my footer at <a href="http://dantrimble.com" rel="nofollow">http://dantrimble.com</a>.  I think it looks terrific, and it was truly effortless to put together.  And it's now font-based, not images, and without any plugins.</p>
<p>dt
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Google+ Icon - any plans?"</title>
			<link>http://www.themolitor.com/forums/topic/google-icon-any-plans#post-23849</link>
			<pubDate>Fri, 11 Oct 2013 08:49:02 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23849@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>The MySpace comment cracked me up :-) </p>
<p>At the time I developed this theme, those were the big hitters (G+ didn't even exist) and it was common practice to use images hard-coded into the theme. </p>
<p>As a result, adding additional icons isn't the easiest thing to do since it requires a custom image and custom code in the template files to control. I downloaded an icon vector pack YEARS ago and just customized them myself for this template.</p>
<p>I appreciate the feedback on this and will look into possibly implementing icon fonts so that users can easily add additional icons if they want. For now, edits like this requires a customization request: <a href="http://themolitor.com/custom" rel="nofollow">http://themolitor.com/custom</a></p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>dgt on "Google+ Icon - any plans?"</title>
			<link>http://www.themolitor.com/forums/topic/google-icon-any-plans#post-23846</link>
			<pubDate>Fri, 11 Oct 2013 08:41:42 +0000</pubDate>
			<dc:creator>dgt</dc:creator>
			<guid isPermaLink="false">23846@http://www.themolitor.com/forums/</guid>
			<description><p>Hello,</p>
<p>I'm not big on using lots and lots of social services; I tend to stick with only the most popular ones appropriate for my content.  So right now I'm using Twitter, Facebook, LinkedIn, and RSS--that's it.</p>
<p>I would like to add Google+ to that, but B+M doesn't have any built in support for it--I only see options for Vimeo, Skype, YouTube, MySpace (seriously?!), and Flickr.</p>
<p>I can certainly add the icon and URL myself; it's not a heavy customization at all.  But I want my icons to look consistent, and I can't do graphics to save my life.  Your social icons included with B+M are are beautifully woven into the design, so I'd like them all to look the same.</p>
<p>So the question is whether or not you sourced these icons from somewhere else that I might be able to go to find a Google+ icon?  Or...do you have any plans to add Google+ in the next update of B+M?</p>
<p>dt
</p></description>
		</item>

	</channel>
</rss>
