<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: How do you add a title to a shortcode button link?</title>
		<link>http://www.kriesi.at/support/topic/how-do-you-add-a-title-to-a-shortcode-button-link</link>
		<description>Support Forum - Topic: How do you add a title to a shortcode button link?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 04:27:47 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/how-do-you-add-a-title-to-a-shortcode-button-link" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "How do you add a title to a shortcode button link?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-you-add-a-title-to-a-shortcode-button-link#post-69343</link>
			<pubDate>Sat, 04 Aug 2012 15:20:01 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">69343@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; I'll ask Kriesi to add an option field. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dbvdb on "How do you add a title to a shortcode button link?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-you-add-a-title-to-a-shortcode-button-link#post-69007</link>
			<pubDate>Thu, 02 Aug 2012 16:42:46 +0000</pubDate>
			<dc:creator>dbvdb</dc:creator>
			<guid isPermaLink="false">69007@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;ok thanks, it would be really nice if it was supported.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How do you add a title to a shortcode button link?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-you-add-a-title-to-a-shortcode-button-link#post-66709</link>
			<pubDate>Fri, 20 Jul 2012 08:40:53 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">66709@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The button shortcode does not support a link title yet but I'll ask Kriesi to look into it. For now you can add this feature with a small code customization. Open up upscale\includes\admin\register-shortcodes.php and replace following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;extract(shortcode_atts(array(	&#38;#39;size&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;style&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;color&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;border&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;text&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;class&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;link&#38;#39; =&#38;gt; &#38;#39;#&#38;#39;,
	   									&#38;#39;window&#38;#39; =&#38;gt; &#38;#39;&#38;#39;), $atts));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;extract(shortcode_atts(array(	&#38;#39;size&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;style&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;color&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;border&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;text&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;class&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
	   									&#38;#39;link&#38;#39; =&#38;gt; &#38;#39;#&#38;#39;,
										&#38;#39;title&#38;#39; =&#38;gt; &#38;#39;&#38;#39;;
	   									&#38;#39;window&#38;#39; =&#38;gt; &#38;#39;&#38;#39;), $atts));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Open in new window?
		if ( $window ) $window = &#38;#39;target=&#38;quot;_blank&#38;quot; &#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Open in new window?
		if ( $window ) $window = &#38;#39;target=&#38;quot;_blank&#38;quot; &#38;#39;;

		// Link title
		if ( $title ) $title = &#38;#39; title=&#38;quot;&#38;#39;.$title.&#38;#39;&#38;quot; &#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$output = &#38;#39;&#38;lt;a &#38;#39;.$window.&#38;#39;href=&#38;quot;&#38;#39;.$link.&#38;#39;&#38;quot; class=&#38;quot;avia-button &#38;#39;.$class_output.&#38;#39;&#38;quot; &#38;#39;.$color_output.&#38;#39;&#38;gt;&#38;lt;span class=&#38;quot;avia-&#38;#39;.$style.&#38;#39;&#38;quot;&#38;gt;&#38;#39; .&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$output = &#38;#39;&#38;lt;a &#38;#39;.$title.$window.&#38;#39;href=&#38;quot;&#38;#39;.$link.&#38;#39;&#38;quot; class=&#38;quot;avia-button &#38;#39;.$class_output.&#38;#39;&#38;quot; &#38;#39;.$color_output.&#38;#39;&#38;gt;&#38;lt;span class=&#38;quot;avia-&#38;#39;.$style.&#38;#39;&#38;quot;&#38;gt;&#38;#39; .&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>dbvdb on "How do you add a title to a shortcode button link?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-you-add-a-title-to-a-shortcode-button-link#post-66153</link>
			<pubDate>Tue, 17 Jul 2012 18:08:24 +0000</pubDate>
			<dc:creator>dbvdb</dc:creator>
			<guid isPermaLink="false">66153@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I tried: &#60;code&#62;[button link=&#38;quot;new-member-registration&#38;quot; title=&#38;quot;Join the club now - plan your trip any time&#38;quot; size=&#38;quot;xl&#38;quot; color=&#38;quot;#f49b15&#38;quot; text=&#38;quot;dark&#38;quot; window=&#38;quot;yes&#38;quot;]&#38;lt;strong&#38;gt;New Member Registration&#38;lt;/strong&#38;gt;[/button]&#60;/code&#62; &#60;/p&#62;
&#60;p&#62;but  &#34;Join the club now - plan your trip any time&#34; does not show when the mouse hovers on the link.&#60;br /&#62;
site is: &#60;a href=&#34;http://www.huntingfishinglodgetrips.com/become-hunt-fish-lodging-member/&#34; rel=&#34;nofollow&#34;&#62;http://www.huntingfishinglodgetrips.com/become-hunt-fish-lodging-member/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
