jkf1
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: deactivated plugin can’t be reactivatedWell it is reactivated. However, the widget it supported (a signup for our mailchimp form) no longer seems to work. Any other ideas here? If not, I’ll mark this as resolved. I have already built a new widget that does what this one did, albeit I need to do some formatting work on it.
Forum: Fixing WordPress
In reply to: deactivated plugin can’t be reactivatedSo here (below) I believe is the plugin code for how it finds Genesis. My theme settings say that I am using Genesis 2.2.5. Given that 2.2.5 > 1.8, I don’t see why it would fail this check.
/**
* Checks for minimum Genesis Theme version before allowing plugin to activate
*
* @author Nathan Rice
* @uses gfwa_truncate()
* @since 0.1
* @version 0.2
*/
function gfwa_activation_check() {$latest = ‘1.8’;
$theme_info = get_theme_data( TEMPLATEPATH . ‘/style.css’ );
if ( basename( TEMPLATEPATH ) != ‘genesis’ ) {
deactivate_plugins( plugin_basename( __FILE__ ) ); // Deactivate ourself
wp_die( sprintf( __( ‘Sorry, you can\’t activate unless you have installed %1$sGenesis%2$s’, ‘gfwa’ ), ‘‘, ‘‘ ) );
}$version = gfwa_truncate( $theme_info[‘Version’], 3 );
if ( version_compare( $version, $latest, ‘<‘ ) ) {
deactivate_plugins( plugin_basename( __FILE__ ) ); // Deactivate ourself
wp_die( sprintf( __( ‘Sorry, you can\’t activate without %1$sGenesis %2$s%3$s or greater’, ‘gfwa’ ), ‘‘, $latest, ‘‘ ) );
}
}Forum: Fixing WordPress
In reply to: secondary sidebar problem after updating php 5.2=>5.3I have the primary sidebar. It has the about page sidebar, the navigation sidebar for the kemp forum section, and then our main sidebar. All of these are functioning normally.
Then there is the interviews sidebar which has our oral history archive sidebar, also functioning normally. Those are the only sidebar categories in our widget section. The other widget sections are Home 1-3, Footer 1-4, Footer Nav, Copyright Text and Navigation Tooltip. All of these are functioning normally.
Forum: Fixing WordPress
In reply to: secondary sidebar problem after updating php 5.2=>5.3The funny thing with this is that there is no “secondary sidebar” widget section for me to place a widget in. There is no secondary sidebar and I have no idea where it came from.