Forum Replies Created

Viewing 4 replies - 571 through 574 (of 574 total)
  • I 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.

    I 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 (https://svn.wp-plugins.org)

    You 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() ) { ?> &raquo; Blog Archiv <?php } ?> <?php wp_title(); ?></title>
    <?php endif; ?>
    Forum: Plugins
    In reply to: non-widget

    Hi,

    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.

Viewing 4 replies - 571 through 574 (of 574 total)