Changeset 2413770
- Timestamp:
- 11/06/2020 09:01:53 AM (5 years ago)
- Location:
- kodeks-dashboard/trunk
- Files:
-
- 3 edited
-
functions.php (modified) (2 diffs)
-
kodeks-dashboard.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kodeks-dashboard/trunk/functions.php
r2412321 r2413770 327 327 328 328 /* Enable / disable admin-bar */ 329 if (!isset($kodeks_options['setting_adminbar']) || $kodeks_options['setting_adminbar'] == 1 ) {329 if (!isset($kodeks_options['setting_adminbar']) || $kodeks_options['setting_adminbar'] == 1 && !function_exists( 'remove_admin_bar' ) ) { 330 330 add_filter('show_admin_bar', 'remove_admin_bar'); 331 331 function remove_admin_bar() { … … 668 668 * @global int $content_width 669 669 */ 670 function kodeks_content_width() { 671 $GLOBALS['content_width'] = apply_filters( 'kodeks_content_width', 640 ); 672 } 673 add_action( 'after_setup_theme', 'kodeks_content_width', 0 ); 670 if ( ! function_exists( 'kodeks_content_width' )){ 671 function kodeks_content_width() { 672 $GLOBALS['content_width'] = apply_filters( 'kodeks_content_width', 640 ); 673 } 674 add_action( 'after_setup_theme', 'kodeks_content_width', 0 ); 675 } 674 676 675 677 /** -
kodeks-dashboard/trunk/kodeks-dashboard.php
r2412321 r2413770 3 3 Plugin Name: Kodeks Dashboard 4 4 Description: This plugin customizes WordPress for Kodeks customers. 5 Version: 3.0. 85 Version: 3.0.9 6 6 Author: Thomas Johannessen & Marius Kaase 7 7 Author URI: http://kodeks.no -
kodeks-dashboard/trunk/readme.txt
r2412321 r2413770 1 1 === Kodeks Dashboard === 2 Version: 3.0. 82 Version: 3.0.9 3 3 Contributors: Kodeks AS 4 4 Tested up to: 5.5.3
Note: See TracChangeset
for help on using the changeset viewer.