<?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>BlueOwlCreative  &#187;  Topic: home 2 / Featured Services / icons</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/home-2-featured-services-icons/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/home-2-featured-services-icons/feed/</link>
		<description></description>
		<pubDate>Fri, 17 Jul 2026 14:09:31 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/home-2-featured-services-icons/#post-22975</guid>
					<title><![CDATA[home 2 / Featured Services / icons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/home-2-featured-services-icons/#post-22975</link>
					<pubDate>Wed, 30 Sep 2015 18:40:23 +0000</pubDate>
					<dc:creator>markahlman</dc:creator>

					<description>
						<![CDATA[
						<p>Love this template Sir! </p>
<p>My client has decided to change the 4 icons in the featured services section below the slider to 4 images. I&#8217;ve looked around and haven&#8217;t seen anything that jumps out at me that addresses this&#8230; it might be sleep deprivation on my behalf. </p>
<p>Can you please provide the forum link if I&#8217;ve overlooked this fix or offer some direction. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/home-2-featured-services-icons/#post-22976</guid>
					<title><![CDATA[Reply To: home 2 / Featured Services / icons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/home-2-featured-services-icons/#post-22976</link>
					<pubDate>Wed, 30 Sep 2015 18:46:47 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>There&#8217;s no way to replace that icon section with a static image out of the box. You could achieve this by either forking the shortcode and having the new one take in an image path param instead of icon name, then in the generated HTML output that image rather than the animated icon. Another way would be mod the current shortcode to take in an extra image_path attribute that you would check at output and if it exists you can replace the output of the animated icon with the image passed in. <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/home-2-featured-services-icons/#post-22981</guid>
					<title><![CDATA[Reply To: home 2 / Featured Services / icons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/home-2-featured-services-icons/#post-22981</link>
					<pubDate>Thu, 01 Oct 2015 03:59:04 +0000</pubDate>
					<dc:creator>markahlman</dc:creator>

					<description>
						<![CDATA[
						<p>I really appreciate your timely response and assistance, I truly depend on your coding brilliance to make a living off of these amazing templates! </p>
<p>Ok&#8230; I may (hopeful thinking) have worked through part of your first suggestion up to editing the generated HTML output. Below is your original shortcode (after my ititial icon edits) from the 1st icon column and then my attempt to edit in the image.</p>
<p>Original edits &#8211; out of the box (using clients approved icons):<br />
[column width="four" position="first"][feat_text title="PENSIONS" icon="euro" type="2" href="#"]Eiusmod tempor incididunt ut labore et dolore magna aliqua abore et dolore magn.[/feat_text][/column]</p>
<p>My 2nd edit (using a sized circular image):<br />
[column width="four" position="first"][feat_text title="PENSIONS" image_url="http://grosvenor.growthsmart.com/wp-content/uploads/2013/12/pension_v2.png" type="2" href="#"]Eiusmod tempor incididunt ut labore et dolore magna aliqua abore et dolore magn.[/feat_text][/column]</p>
<p>I tried [image = ""] and [image_url=""], both deleted the icon but left the custom colored circle. </p>
<p>My question is, am I on the right track in regards to your first suggestion? If so, all I need to do next is find this in the generated HTML output after I figure out where that is. Seems everything including what&#8217;s in the appearance/editor is php. I will spend my time figuring that out while I wait for your much appreciated feedback!</p>
<p>cheers Sir!  </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/home-2-featured-services-icons/#post-22991</guid>
					<title><![CDATA[Reply To: home 2 / Featured Services / icons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/home-2-featured-services-icons/#post-22991</link>
					<pubDate>Thu, 01 Oct 2015 09:39:11 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>Yes, you are on the right track, this would be only part of the job though, next you need to setup the actual output, let&#8217;s see here. Let&#8217;s say we create a new shortcode (to keep things clean) that would take in Image URLs.</p>
<p>We will add the new method to this file &#8211; includes/shortcodes.php that is similar to the shortcode_feat_text but we will name it shortcode_feat_text_img and will change the params and output a bit so that it takes in the url of the image.</p>
<pre><code>
// Featured Text
add_shortcode(&#039;feat_text_img&#039;, &#039;shortcode_feat_text_img&#039;);
function shortcode_feat_text_img( $atts, $content = null ) {
	
	$atts = shortcode_atts(
		array(
			&#039;title&#039; =&gt; &#039;&#039;,
			&#039;url&#039;	=&gt; &#039;&#039;,
			&#039;href&#039;	=&gt; &#039;&#039;,
			&#039;type&#039;	=&gt; &#039;&#039;,
		), $atts);
	
	$link = &#039;&#039;;
	$add_link = false;
	if(isset($atts[&#039;href&#039;]) &amp;&amp; $atts[&#039;href&#039;]){
		$link = &#039;&lt;a href=&quot;&#039;.$atts[&#039;href&#039;].&#039;&quot;&gt;&#039;;
		$add_link = true;
	}
	
	if(isset($atts[&#039;type&#039;]) &amp;&amp; $atts[&#039;type&#039;]){
		$type = (int)$atts[&#039;type&#039;];
		if(!$type){
			$type=1;
		}
	}
		
	$content = &#039;&lt;div class=&quot;section_featured_texts type&#039;.$type.&#039; animationStart&quot;&gt;&#039;.($add_link ? $link : &#039;&#039;).&#039;&lt;div class=&quot;image_holder&quot;&gt;&lt;img src=&quot;&#039;.$atts[&#039;url&#039;].&#039;&quot;&gt;&lt;/div&gt;&#039;.($add_link ? &#039;&lt;/a&gt;&#039; : &#039;&#039;).&#039;&lt;h3&gt;&#039;.($add_link ? $link : &#039;&#039;).$atts[&#039;title&#039;].($add_link ? &#039;&lt;/a&gt;&#039; : &#039;&#039;).&#039;&lt;/h3&gt;&lt;p&gt;&#039;.do_shortcode_boc($content).&#039;&lt;/p&gt;&lt;/div&gt;&#039;;
	return $content;
}</code></pre>
<p>You can then pass the shortcode in your editor like so:</p>
<p><code>[feat_text_img title=&quot;Featured Title&quot; url=&quot;YOUR_IMG_URL_HERE&quot; href=&quot;&quot; type=&quot;1&quot;]Featured Text[/feat_text_img]</code></p>
<p>and it should work! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

