ArchiveSeptember, 2011
Browsing all articles from September, 2011
6

Fortunately I had quickly found what was going wrong with the BuddyPress detection process in Dynamic Widgets since BuddyPress 1.5. The fix is included in the development version 1.5b4. This is however a beta version. For people not comfortable with beta versions, having some programming expierence, using Dynamic Widgets 1.4.2 and BuddyPress 1.5, you can also replace the first function in /wp-content/plugins/dynamic-widgets/plugins/bp.php with the function code below.

function dw_get_bp_components() {
	$bp = &$GLOBALS['bp'];
	$DW = &$GLOBALS['DW'];
	
	$components = array();
	
	foreach ( $bp->active_components as $key => $value ) {
		if ( version_compare(BP_VERSION, '1.5', '<') ) {
			$c = &$value;
		} else {
			$c = &$key;
		}
	}
				
	if ( $c == 'groups' ) {
		$components[$c] = ucfirst($c) . ' (only main page)';
		$DW->bp_groups = TRUE;
	} else {
		$components[$c] = ucfirst($c);
	}
	
	asort($components);
	return $components;
}

It looks like Dynamic Widgets does not detect BuddyPress anymore since version 1.5 of BuddyPress. I’m going to look into the issue soon.

See also the issue tracker. It has been registered under issue 32.

3

Tweet Lovers 1.0.2

After a bit more than 10 months, a new version of Tweet Lovers is there. The only viewable change is the addition of the number of followers option to the followers widget. Under the hood the plugin has been brought up to date to remain compatibility with WordPress.

The update will soon be announced on your WordPress Dashboard or you can download it right away.

78

Dynamic Widgets 1.4.2

I’m happy to announce the next release of Dynamic Widgets. Version 1.4.2 is now available for download and will probably soon be announced at your WordPress dashboard. The previous version had unfortunately a few nasty bugs which luckily could be resolved quickly.

The following has been added, fixed and tweaked:

  • Added QTranslate support.
  • Added hierarchical inheritance for Custom Taxonomies and Custom Post Types.
  • Added same behaviour in the Author list for WP < 3.1 as in WP > 3.1
  • Bugfix for PHP error in WPML module.
  • Bugfix for not showing WPML languages in WPML module.
  • Bugfix for PHP error in Single posts module when using WP < 3.1.
  • Bugfix for possible PHP notice when a child does not exist in the hierarchical tree.
  • Bugfix for wrong page count.
  • Broadend the capability for changing DW configuration from ‘switch_themes’ to ‘edit_theme_options’.
  • Disabled ‘WPSC Category’ when using WPEC > 3.8 as it’s now covered by Custom Taxonomies Archives.

WPEC 3.8 or higher user: Please note due to the use of Custom Posts and Custom Taxonomies, the ‘WPEC Categories” section has been removed in Dynamic Widgets and replaced by “Categories (Products)”. Copy over the settings you have in “WPEC Categories” to “Custom Taxonomy Archives: Categories” before updating to 1.4.2.

Change of requirements: The 1.4 branch of Dynamic Widgets will be the last branch to support WordPress < 3.0 and -Yes, it’s really going to happen- also the last for PHP4. The 1.4.2 version will probably be the last in this branch. So, when you’re still on a WordPress version lower than 3.0 you should really consider upgrading. When you see in the footer of the Dynamic Widgets pages after the version number “PHP4” you’re going to be in big trouble when you don’t take any action.

Like Dynamic Widgets? Like my FB!

All about QURL