Changeset 516337
- Timestamp:
- 03/08/2012 04:57:56 PM (14 years ago)
- Location:
- simplereach-slide/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
srslide.php (modified) (1 diff)
-
srslide_admin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simplereach-slide/trunk/readme.txt
r515885 r516337 6 6 Requires at least: 2.7 7 7 Tested up to: 3.3 8 Stable tag: 0.6. 18 Stable tag: 0.6.2 9 9 10 The Slide recommends related posts from within your site on a widget that "slides" in at the bottom of the page.10 The Slide (currently in private beta) recommends related posts from within your site on a widget that "slides" in at the bottom of the page. 11 11 12 12 == Description == 13 The Slide by SimpleReach is the best way to help readers discover more of your content.13 The Slide by SimpleReach (currently in private beta) is the best way to help readers discover more of your content. 14 14 15 15 The Slide recommends related posts from within your site on a widget that "slides" in at the bottom of the page. You've seen a similar content recommendation widget on sites like NYTimes.com, and now SimpleReach is allowing anybody to take advantage of this awesome plugin for free. … … 58 58 59 59 == Changelog == 60 61 = 0.6.2 = 62 * Fixed edge case bug with saving CSS 60 63 61 64 = 0.6.1 = -
simplereach-slide/trunk/srslide.php
r515885 r516337 4 4 Plugin URI: https://www.simplereach.com 5 5 Description: After installation, you must click '<a href='options-general.php?page=SimpleReach-Slide'>Settings → SimpleReach Slide</a>' to turn on The Slide. 6 Version: 0.6. 16 Version: 0.6.2 7 7 Author: SimpleReach 8 8 Author URI: https://www.simplereach.com 9 9 */ 10 10 11 define('SRSLIDE_PLUGIN_VERSION', '0.6. 1');11 define('SRSLIDE_PLUGIN_VERSION', '0.6.2'); 12 12 define('SRSLIDE_PLUGIN_DIR', dirname(__FILE__)); 13 13 define('SRSLIDE_PLUGIN_URL', plugin_dir_url(__FILE__)); -
simplereach-slide/trunk/srslide_admin.php
r515885 r516337 116 116 update_option('srslide_styles', create_style_hash($_POST)); 117 117 118 $style_error = update_slide_styles();119 if ($style_error != "OK") {120 array_push($errors, $style_error);121 }118 // $style_error = update_slide_styles(); 119 // if ($style_error != "OK") { 120 // array_push($errors, $style_error); 121 // } 122 122 123 123 // Save if we are error free or print the errors 124 if (count($errors) == 0) { 124 // if (count($errors) == 0) { 125 if (1) { 125 126 ?> 126 <div class="updated"><p><strong><?php _e('Options saved. If you shifted The Slide position or adjusted the link color, it could take up to 15 minutes for your changes to take effect.', 'srslide'); ?></strong></p></div>127 <div class="updated"><p><strong><?php _e('Options saved.', 'srslide'); ?></strong></p></div> 127 128 <?php 128 129 } else { … … 508 509 </div> 509 510 510 <?php 511 <?php 511 512 } 512 } 513 } 513 514 ?> 514 515 </div>
Note: See TracChangeset
for help on using the changeset viewer.