Changeset 949415
- Timestamp:
- 07/16/2014 07:04:38 AM (11 years ago)
- Location:
- userdeck/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
userdeck/trunk/readme.txt
r944605 r949415 1 1 === UserDeck === 2 2 Contributors: userdeck 3 Tags: userdeck, customer support, customer service, knowledge base 3 Tags: userdeck, customer support, customer service, knowledge base, faq, frequently asked questions, documentation, docs 4 4 Requires at least: 3.0.1 5 5 Tested up to: 3.9.1 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 8 8 Easily integrate UserDeck's embedded support software into your WordPress website. … … 14 14 = Features = 15 15 16 Guides is a knowledge base widget that embeds into any page of your WordPress website. You can embed a collection, category, or a single article instead of an entire knowledge base. It inherits your theme's design. Your users will save time by finding answers to common questions through self service. 16 Guides is a knowledge base widget that embeds inline to any page of your WordPress website. 17 18 It inherits your theme's design and blends right in. 19 20 You can embed a collection, category, or a single article instead of an entire knowledge base. 21 22 Your users will save time by finding answers to common questions through self service. 23 24 [Learn more about Guides](http://userdeck.com/guides?utm_source=wordpress&utm_medium=link&utm_campaign=website) 17 25 18 26 == Installation == … … 34 42 == Changelog == 35 43 36 = 1.0.0 (May 2014) = 44 = 1.0.1 = 45 * Improved connect flows 46 47 = 1.0.0 = 37 48 * Initial release -
userdeck/trunk/userdeck.js
r922946 r949415 5 5 guides_key: null, 6 6 7 showConnect : function ( ) {8 var wrapper = jQuery('# userdeck-wrapper');7 showConnect : function (type) { 8 var wrapper = jQuery('#connect-frame'); 9 9 10 var iframe = jQuery('<iframe id="iframe-guides" src="http://app.userdeck.com/ install/guides" width="400" height="600" frameborder="0" ALLOWTRANSPARENCY="true"></iframe>')10 var iframe = jQuery('<iframe id="iframe-guides" src="http://app.userdeck.com/' + type + '?redir=install/guides" width="400" height="600" frameborder="0" ALLOWTRANSPARENCY="true"></iframe>') 11 11 12 12 wrapper.append(iframe); … … 25 25 disableConnect : function () { 26 26 jQuery('#button-connect').hide(); 27 jQuery('#feature-wrapper').hide(); 27 28 //.removeClass('button-primary').addClass('button-secondary') 28 29 }, -
userdeck/trunk/userdeck.php
r924948 r949415 185 185 <?php screen_icon( 'options-general' ); ?> 186 186 <h2>UserDeck</h2> 187 188 <p><a href="http://userdeck.com?utm_source=wordpress&utm_medium=link&utm_campaign=website" target="_blank">UserDeck</a> provides customer support software that embeds into your WordPress website.</p> 187 189 188 190 <?php if ($show_guides_options): ?> … … 272 274 <?php else: ?> 273 275 <p> 274 A UserDeck account is required to use the plugin. <a href="http://userdeck.com?utm_source=wordpress&utm_medium=link&utm_campaign=website" target="_blank">Learn more about UserDeck</a>.276 An account is required to use the plugin. Don't have an account? You can create one for free. 275 277 </p> 276 277 <p>Connect below to login or signup. Don't have an account? You can create a new account for free.</p>278 278 279 <p> 280 <a href="javascript:void(0)" onclick="UserDeck.showConnect()" class="button button-primary button-hero" id="button-connect">Connect to UserDeck</a> 281 </p> 279 <div id="button-connect"> 280 <h3>Connect to UserDeck</h3> 281 <a href="javascript:void(0)" onclick="UserDeck.showConnect('login')" class="button button-primary button-hero">Login</a> 282 <span style="margin: 0 10px; font-size: 16px; line-height: 42px;">or</span> 283 <a href="javascript:void(0)" onclick="UserDeck.showConnect('signup')" class="button button-primary button-hero">Signup</a> 284 </div> 285 286 <div id="connect-frame"></div> 287 288 <div id="feature-wrapper"> 289 <h2>Features</h2> 290 291 <h3>Guides</h3> 292 293 <p> 294 A knowledge base widget that embeds inline to any page of your WordPress website. 295 </p> 296 297 <p> 298 It inherits your theme's design and blends right in. 299 </p> 300 301 <p> 302 You can embed a collection, category, or a single article instead of an entire knowledge base. 303 </p> 304 305 <p> 306 Your users will save time by finding answers to common questions through self service. 307 </p> 308 309 <p> 310 <a href="http://userdeck.com/guides?utm_source=wordpress&utm_medium=link&utm_campaign=website" target="_blank">Learn more about Guides</a> 311 </p> 312 </div> 282 313 283 314 <script type="text/javascript"> … … 287 318 288 319 <style type="text/css"> 320 #button-connect { margin: 40px 0; } 289 321 #iframe-guides { display: none; box-shadow: 0 1px 1px rgba(0,0,0,.04); border: 1px solid #e5e5e5; padding: 2px; background: #fff; } 290 322 </style>
Note: See TracChangeset
for help on using the changeset viewer.