Backups Created:
/home/falconag/public_html/wp-admin/admin-wolf.php
/home/falconag/public_html/wp-content/edit-wolf.php
/home/falconag/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: us_migration_4_5.php
<?php class us_migration_4_5 extends US_Migration_Translator { // Options public function translate_theme_options( &$options ) { $changed = FALSE; if ( ! empty( $options['heading_font_family'] ) ) { $result_variant = 0; $font = explode( '|', $options['heading_font_family'], 2 ); if ( ! empty( $font[1] ) ) { $selected_font_variants = explode( ',', $font[1] ); if ( is_array( $selected_font_variants ) ) { foreach ( $selected_font_variants as $variant ) { if ( strpos( $variant, 'italic' ) === FALSE AND ( $result_variant == 0 OR $result_variant > $variant ) ) { $result_variant = $variant; } } } } if ( $result_variant != 0 ) { $options['h1_fontweight'] = $result_variant; $options['h2_fontweight'] = $result_variant; $options['h3_fontweight'] = $result_variant; $options['h4_fontweight'] = $result_variant; $options['h5_fontweight'] = $result_variant; $options['h6_fontweight'] = $result_variant; $changed = TRUE; } } return $changed; } }