Changeset 1190238
- Timestamp:
- 06/30/2015 11:23:24 AM (11 years ago)
- Location:
- theme-helper/trunk
- Files:
-
- 3 edited
-
function.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
themehelper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
theme-helper/trunk/function.php
r1188881 r1190238 214 214 215 215 <style id="themehelper-style"><?php $th_color_scheme = get_option(themehelper_color); ?> 216 <?php echo get_option(themehelper_css_color_bg); ?> { background-color: <?php echo $th_color_scheme['color_scheme_option']; ?> } <?php echo get_option(themehelper_css_color_txt); ?> { color: <?php echo $th_color_scheme['color_scheme_option']; ?>}217 .theme-helper a.themehelper-icon:hover, a.themehelper-icon.theme, .theme-helper .theme-helper-bg { background-color: <?php echo $th_color_scheme['color_scheme_option']; ?> } .theme-helper .theme-helper-txt ( color:<?php echo $th_color_scheme['color_scheme_option']; ?>)216 <?php echo get_option(themehelper_css_color_bg); ?> { background-color: <?php echo $th_color_scheme['color_scheme_option']; ?> !important; } <?php echo get_option(themehelper_css_color_txt); ?> { color: <?php echo $th_color_scheme['color_scheme_option']; ?> !important; } 217 .theme-helper a.themehelper-icon:hover, a.themehelper-icon.theme, .theme-helper .theme-helper-bg { background-color: <?php echo $th_color_scheme['color_scheme_option']; ?>; } .theme-helper .theme-helper-txt ( color:<?php echo $th_color_scheme['color_scheme_option']; ?>; ) 218 218 </style> 219 219 220 220 <style> 221 a.themehelper-icon { background-image: url("<?php echo plugins_url( 'images/themehelper-sprite.png', __FILE__ ); ?>") }221 a.themehelper-icon { background-image: url("<?php echo plugins_url( 'images/themehelper-sprite.png', __FILE__ ); ?>"); } 222 222 </style> 223 223 … … 279 279 var color = jQuery( this ).css( "background-color" ); 280 280 jQuery( "#themehelper-style" ).html( " <?php echo get_option(themehelper_css_color_bg); ?> { background-color:" + 281 color + " ; } <?php echo get_option(themehelper_css_color_txt); ?> { color:" +282 color + " ; } .theme-helper a.themehelper-icon:hover, a.themehelper-icon.theme, .theme-helper .theme-helper-bg { background-color:" +281 color + " !important; } <?php echo get_option(themehelper_css_color_txt); ?> { color:" + 282 color + "!important; } .theme-helper a.themehelper-icon:hover, a.themehelper-icon.theme, .theme-helper .theme-helper-bg { background-color:" + 283 283 color + "; } .theme-helper-txt { color:" + 284 284 color + "; }" ).appendTo( "footer" ); -
theme-helper/trunk/readme.txt
r1188968 r1190238 5 5 Requires at least: 4.0 6 6 Tested up to: 4.2 7 Stable tag: 1.0 27 Stable tag: 1.03 8 8 License: GPLv2 or later 9 9 License URI: GPLv2 or later … … 25 25 26 26 Future Development: 27 28 * QA Check List 27 29 28 30 * Your Ideas are all welcome for the improvement of the Theme Helper Plugin … … 102 104 == Changelog == 103 105 106 107 = version 1.03 = 108 109 * fixed switcher theme compatibility 110 * fixed css switcher higher key 111 104 112 = version 1.02 = 105 113 -
theme-helper/trunk/themehelper.php
r1188898 r1190238 8 8 * Description: A Theme Addon for wordpress frameworks that creates option panel for users to easy update their Website Info. 9 9 10 * Version: 1.0 210 * Version: 1.03 11 11 12 12 * Author: Rex Anthony D. Eubanas
Note: See TracChangeset
for help on using the changeset viewer.