Changeset 1930962
- Timestamp:
- 08/27/2018 02:42:38 PM (8 years ago)
- Location:
- themedy-toolbox/trunk
- Files:
-
- 3 edited
-
demo-options/options-manager.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
themedy-toolbox.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
themedy-toolbox/trunk/demo-options/options-manager.php
r1083903 r1930962 27 27 /** 28 28 * Create plugin menu. 29 * Note for dev, turn off internal Themedy Replicate plugin before debugging this area. 29 30 */ 30 31 public function add_menu_page() { 31 add_ theme_page( __( 'Themedy Replicate', 'themedy' ), __( 'Themedy Replicate', 'themedy' ), 'manage_options', 'themedy-replicate', array( &$this, 'settings_page' ) );32 add_options_page( __( 'Themedy Replicate', 'themedy' ), __( 'Themedy Replicate', 'themedy' ), 'edit_theme_options', 'themedy-replicate', array( &$this, 'settings_page' ) ); 32 33 } 33 34 -
themedy-toolbox/trunk/readme.txt
r1817830 r1930962 3 3 Tags: shortcodes, themedy, genesis, thesis 4 4 Requires at least: 4.9 5 Tested up to: 4.9. 46 Stable tag: 1.0.1 35 Tested up to: 4.9.8 6 Stable tag: 1.0.14 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 32 32 33 33 == Changelog == 34 35 = 1.0.14 = 36 * Update FontAwesome to 4.7.0 37 * Fix missing replicate menu option on multsite installs 34 38 35 39 = 1.0.13 = -
themedy-toolbox/trunk/themedy-toolbox.php
r1817830 r1930962 4 4 Plugin URI: https://themedy.com 5 5 Description: Shortcodes and tools to extend your Themedy site even further. 6 Version: 1.0.1 36 Version: 1.0.14 7 7 Author: Themedy 8 8 Author URI: https://themedy.com … … 39 39 $options = get_option( 'themedy_settings' ); 40 40 if(!isset($options['themedy_checkbox_field_2'])) { 41 wp_enqueue_style('font-awesome', '// maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css', '4.6.1');41 wp_enqueue_style('font-awesome', '//stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css', '4.7.0'); 42 42 } 43 43
Note: See TracChangeset
for help on using the changeset viewer.