<?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: Flexslider icon</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/feed/</link>
		<description></description>
		<pubDate>Fri, 17 Jul 2026 16:31:45 +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/flexslider-icon/#post-22700</guid>
					<title><![CDATA[Flexslider icon]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/#post-22700</link>
					<pubDate>Sat, 19 Sep 2015 16:05:49 +0000</pubDate>
					<dc:creator>wim</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,<br />
I cannot find the slider image icon in my text editor.<br />
I am using wordpress 4.3.1<br />
<img src="http://www.bosmanconsult.be/cms/wp-content/uploads/2015/09/Schermafbeelding-2015-09-19-om-18.04.51.png" alt="Screencopy txt editor" /></p>
<p>Thx Wim</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/#post-22705</guid>
					<title><![CDATA[Reply To: Flexslider icon]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/#post-22705</link>
					<pubDate>Sat, 19 Sep 2015 19:15:21 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there Wim,</p>
<p>Could it be in conflict with another plugin or smth&#8230; Can you please disable any plugins just to test?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/#post-22710</guid>
					<title><![CDATA[Reply To: Flexslider icon]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/#post-22710</link>
					<pubDate>Sat, 19 Sep 2015 21:32:15 +0000</pubDate>
					<dc:creator>wim</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,<br />
The only active plug-in installed on my website was &#8220;WP Maintenance Mode&#8221; version 2.0.3.<br />
With this plug-in disabled, still the same problem.<br />
Whats the meaning of smth?</p>
<p>Thx for the support</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/#post-22715</guid>
					<title><![CDATA[Reply To: Flexslider icon]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/#post-22715</link>
					<pubDate>Sat, 19 Sep 2015 22:06:54 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>Indeed, just checked, you are running WP 4.31 yes? There&#8217;s a conflict with the shortcode name and this version&#8217;s Core slider name.</p>
<p>Here&#8217;s what you have to do:</p>
<p>1. Edit your js/customcodes.js file and replace this:</p>
<pre><code>(function() {  
    tinymce.create(&#039;tinymce.plugins.slider&#039;, {  
        init : function(ed, url) {  
            ed.addButton(&#039;slider&#039;, {  
                title : &#039;Add an Image Slider&#039;,  
                image : url+&#039;/../images/shortcode_icons/slider.png&#039;,  
                onclick : function() {  
                     ed.selection.setContent(&#039;[slider][slide link=&quot;&quot; title=&quot;&quot;]image url[/slide][slide link=&quot;&quot; title=&quot;&quot;]image url[/slide][/slider]&#039;);
                }  
            });  
        },  
        createControl : function(n, cm) {  
            return null;  
        },  
    });  
    tinymce.PluginManager.add(&#039;slider&#039;, tinymce.plugins.slider);  
})();</code></pre>
<p>with this:</p>
<pre><code>(function() {  
    tinymce.create(&#039;tinymce.plugins.boc_slider&#039;, {  
        init : function(ed, url) {  
            ed.addButton(&#039;boc_slider&#039;, {  
                title : &#039;Add an Image Slider&#039;,  
                image : url+&#039;/../images/shortcode_icons/slider.png&#039;,  
                onclick : function() {  
                     ed.selection.setContent(&#039;[boc_slider][slide link=&quot;&quot; title=&quot;&quot;]image url[/slide][slide link=&quot;&quot; title=&quot;&quot;]image url[/slide][/boc_slider]&#039;);
                }  
            });  
        },  
        createControl : function(n, cm) {  
            return null;  
        },  
    });  
    tinymce.PluginManager.add(&#039;boc_slider&#039;, tinymce.plugins.boc_slider);  
})();</code></pre>
<p>2. Edit your includes/shortcodes.php and replace &#8220;slider&#8221; with &#8220;boc_slider&#8221; on line 23 and 52. Then around line 460 replace this:</p>
<pre><code>add_shortcode(&#039;slider&#039;, &#039;shortcode_slider&#039;);
function shortcode_slider($atts, $content = null) {
	$str = &#039;&#039;;
	$str .= &#039;&lt;div class=&quot;flexslider&quot;&gt;&#039;;
	$str .= &#039;&lt;ul class=&quot;slides&quot;&gt;&#039;;
	$str .= do_shortcode($content);
	$str .= &#039;&lt;/ul&gt;&#039;;
	$str .= &#039;&lt;/div&gt;&#039;;

	return $str;
}</code></pre>
<p>with this:</p>
<pre><code>add_shortcode(&#039;boc_slider&#039;, &#039;shortcode_boc_slider&#039;);
function shortcode_boc_slider($atts, $content = null) {
	$str = &#039;&#039;;
	$str .= &#039;&lt;div class=&quot;flexslider&quot;&gt;&#039;;
	$str .= &#039;&lt;ul class=&quot;slides&quot;&gt;&#039;;
	$str .= do_shortcode($content);
	$str .= &#039;&lt;/ul&gt;&#039;;
	$str .= &#039;&lt;/div&gt;&#039;;

	return $str;
}</code></pre>
<p>Let me know if that fixes it for you, it will be in the upcoming version as well.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/#post-22725</guid>
					<title><![CDATA[Reply To: Flexslider icon]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/flexslider-icon/#post-22725</link>
					<pubDate>Mon, 21 Sep 2015 17:43:30 +0000</pubDate>
					<dc:creator>wim</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>It seems that everything works fine now!<br />
Now I can use the &#8216;image slider icon&#8217;.</p>
<p>Thank you for the great support!<br />
Grtz<br />
Wim</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

