K
Forum Replies Created
-
Forum: Plugins
In reply to: plugin approved, not able to login to svnI have exactly the same problem as tomb with my ‘projectmanager’ plugin. The funny thing is, two other plugins that I have requested after the problem-making-plugin work just fine.
Forum: Everything else WordPress
In reply to: 403 error on first-time svn commit to trunkI have the same trouble with one of my plugins. All other plugins (older and newer ones) work fine.
Hinzufügen trunk/functions.php
svn: Übertragen fehlgeschlagen (Details folgen):
svn: CHECKOUT von »/!svn/ver/42387/projectmanager/trunk«: 403 Forbidden (http://svn.wp-plugins.org)Forum: Developing with WordPress
In reply to: bbPress page title using themepressYou could check if bb_title() function exists
<?php if ( function_exists("bb_title") ) : ?> <title><?php bb_title() ?></title> <?php else : ?> <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archiv <?php } ?> <?php wp_title(); ?></title> <?php endif; ?>Forum: Plugins
In reply to: non-widgetHi,
I have done some upgrade to display chcounter statically without using widets. So first you have to upgrade to Version 2.0.1.
You can display chCounter with the following code
<?php $chcounter_widget = new chCounterWidget(); $chcounter_widget->display(array ( 'before_widget' => '<li id="chcounter" class="widget chCounterWidget_display">', 'after_widget' => '</li>', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>', 'widget_title' => 'Visitor statistics', )); ?>You can change the values of the array to your needs. Hope that helped. If you have any further questions, just post them here.