Support Forum

Möchtest Du Moderator hier im Forum werden? Melde Dich einfach per eMail bei mir.
Wanna become a forums moderator? Just drop me an email.

Willkommen im Support Forum. Bitte nutzt das Forum für alle Fragen, Probleme und Fehlermeldungen rund um meine Themes. Um Spam zu vermeiden, müsst Ihr dazu ab sofort registriert sein. Ihr könnt hier in Deutsch oder auch Englisch posten.

Welcome to the support forums. Please use this forums for any type of questions, bug-reports or any other related stuff concerning my themes. To avoid spam you have to be registered to post in this forum.


Bevor Ihr im Forum postet, schaut nach, ob eure Frage nich schon einmal beantwortet wurde. Es werden keine Fragen zu grundlegenden WordPress Funktionalitäten beantwortet. Dafür gibt es die allgemeinen WordPress Foren und den unschlagbaren WordPress Codex. Außerdem empfehle ich zuerst die Tutorials zu lesen, da dort die meisten Fragen beantwortet werden. Für absolute Anfänger, die bisher wenig mit WordPress gearbeitet haben, empfiehlt es sich, ein paar Euro in das e-Book “Sites that Soar” von Aisling d´Art zu investieren. Das Buch erklärt den Aufbau einer Website anhand von BranfordMagazine Schritt für Schritt. Es ist zwar nur in englisch verfügbar, aber doch sehr einfach und verständlich.

Please make sure your question hasn´t been postet before. I will not answer questions on basic WordPress functionalities because there are general WordPress forums and the amazing WordPress Codex which do this job better. Check out the tutorials. Most of the questions will be answered here. For unexperienced WordPress useres I reccomend to purchase the e-book “Sites that Soar” by Aisling d´Art. This book shows a step-by-step how-to build up a website using WordPress and BranfordMagazinne.

This e-book is highly recommended for new WordPress users
who want to use BranfordMagazine:

Get the e-book 'Sites that Soar'



Ich stehe für individuelle Programmierarbeiten, oder Themeanpassungen zur Verfügung. Bei Interesse schickt mir einfach eine eMail an support[at]der-prinz.com. Bitte lest zuerst die “Forumsregeln” bevor Ihr postet.

I am available for freelance programming or theme customization. If you are interested just drop me an email at support[at]der-prinz.com. Please read the “forum rules” before you post.



You must be logged in to post Login Register

Search 
Search Forums:


 




WP 2.5 mit Branford 2.2 Probleme mit Sidebar

UserPost

19:55
2. April 2008


Michael Oeser

Admin

posts 600

I tested the theme in WP 2.5 and it works without any issues. Actually there is no reason why there should be an issue after upgrading to WP 2.5 since it does not really use any new template functions (as far as I know).


At the moment I have no idea what the issues are but I don´t think it´s related to WP 2.5.

16:30
2. April 2008


Ralf

Guest

Ich habe nun meine alte sidebar.php genommen und siehe da es funktioniert alles wieder.

Zwar hat es 1 Stunde gedauert bis es lief, aber seit dem geht mein Blog wieder…seltsame Dinge gehen hier vor.

Was übriggeblieben ist, ist ein “runder Punkt” am Ende der Seite. Woher der jetzt kommt ??

08:49
2. April 2008


Ralf

Guest

Ich habe gedacht da sProblem löst sich vielleicht über Nacht, manchmal hat man ja auch ein “Cache” Problem vom Betriebssystem, vom Browser oder auch vom Provider.

Heute morgen kam ich auch auf die Idee die alte sidebar.php zu verwenden. Dies funktioniert nur auf den Unterseiten, da ist die rechte Seite wieder da, nur auf der Hauptseite wird alles nach “Letzte Artikel” abgeschnitten.

Die Hauptseite muss also irgendeinen Code enthalten, der sich damit nicht “verträgt”. Ich habe auch schon alle Plugins deaktiviert ( benutze nicht viele) und trotzdem geht es nicht.

05:24
2. April 2008


Okizoo

Guest

I don't speak German, but I am having the same problem after upgrading. I just used the previous sidebar script from the earlier version. This messed up my footer, but it was a quick fix while I try to figure out the problem. I moved the <?php endif; ?> from line 75 to line 5 right under the PHP to display the dynamic sidebar. Seems to work for now, but not sure. Below is the original script, but on my website I modified it some more.

<div id=”sidebar”>
<ul id=”sidelist”>
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Regular Sidebar') ) : ?>
<?php endif; ?>
<?php
// this is where 10 headlines from the current category get printed
if ( is_single() ) :
global $post;
$categories = get_the_category();
foreach ($categories as $category) :
?>
<li>
<h2><?php _e('More from this category','branfordmagazine');?></h2>
<ul class=”bullets”>
<?php
$posts = get_posts('numberposts=10&category='. $category->term_id);
foreach($posts as $post) :
?>
<li><a href=”<?php the_permalink(); ?>”>
<?php the_title(); ?>
</a></li>
<?php endforeach; ?>
<li><strong><a href=”<?php echo get_category_link($category);?>” title=”<?php _e('View all posts filed under','branfordmagazine');?> <?php echo $category->name; ?>”><?php _e('Archive for','branfordmagazine');?> '<?php echo $category->name; ?>' &raquo;</a></strong></li>
</ul>
</li>
<?php endforeach; endif ; ?>
<?php if ( is_home() ) { ?>
<li>
<h3>
<?php
// this is where the name of the News (or whatever) category gets printed
wp_list_categories('include=1&title_li=&style=none'); ?>
</h3>
<?php
// this is where the last three headlines are pulled from the News (or whatever) category
query_posts('showposts=5&offset=1&cat=1');
?>
<ul class=”bullets”>
<?php while (have_posts()) : the_post(); ?>
<li><a href=”<?php the_permalink() ?>” rel=”bookmark”>
<?php the_title(); ?>
</a></li>
<?php endwhile; ?>
</ul>
</li>
<?php } ?>
<li>
<h3><?php _e('Browse Categories','branfordmagazine');?></h3>
<ul class=”subnav”>
<?php wp_list_categories('orderby=order&hide_empty=1&title_li=&exclude=7');?>
</ul>
</li>
<li>
<h3><?php _e('Ads &amp; Sponsors','branfordmagazine');?></h3>
<!– I placed this advert here only to not let this place empty. You can remove or change it as you like –>
<img src=”<?php bloginfo('template_url'); ?>/images/Advert.gif” width=”250″ height=”250″ /> </li>
<li>
<h3><?php _e('Browse Archives','branfordmagazine');?></h3>
<?php get_archives('monthly','',''); ?>
</li>
<li>
<h3><?php _e('Stay informed','branfordmagazine');?></h3>
<ul class=”feed”>
<li><a href=”<?php bloginfo('rss2_url'); ?>”>Entries (RSS)</a></li>
<li><a href=”<?php bloginfo('comments_rss2_url'); ?>”>Comments RSS)</a></li>
</ul>
</li>
<li>
<h3><?php _e('Who writes','branfordmagazine');?></h3>
<ul class=”bullets”>
<?php wp_list_authors ('exclude_admin=0&show_fullname=1&hide_empty=1&feed_image=' .get_bloginfo('template_url') . '/images/rss.gif&feed=XML'); ?>
</ul>
</li>
</ul>
<!–END SIDELIST–>
</div>
<!–END SIDEBAR–>

23:47
1. April 2008


Ralf

Guest

Your Website or Blog URL:
http://www.mensvita.de
Your themes version:
2.2
Your WP Version: 2.5 deu


Ich musste heute das Theme 2.2 einspielen, da es unter WP 2.5 nicht lief und das habe ich heute auch upgedatet

Nach dem ich alle IDs etc geändert hatte, läuft nun fast alles, ausser der rechten Sidebar.

Dort wird nicht alles angezeigt, was sonst dort steht. Hat jemand ähnliche Probleme ?

Könnt euch das gerne einmal anschauen unter http://www.mensvita.de

Danke für ein paar Tipps, bin halt keine Php Genie


Ralf



Reply to Topic: WP 2.5 mit Branford 2.2 Probleme mit Sidebar
Please make sure your support question wasn´t posted (and answered) before. Please use the forums search to avoid double posts.

Guest Name (Required):

Guest EMail (Required):

Guest URL (required)

Math Required!
What is the sum of: 8 + 3        (Required)

Topic Reply:


 

About the DER PRiNZ forum

Currently Online:

mikemathew

9 Guests

Maximum Online: 25

Forums:

Groups: 4

Forums: 9

Topics: 444

Posts: 1777

Members:

There are 138 members

There are 240 guests


Michael Oeser has made 600 posts

Top Posters:

Daishi - 42

dnrothwell - 27

smilepak - 25

Nachhall-Texter - 19

pointysticks - 18

Administrator: Michael Oeser | Moderators: Michael Oeser, Daishi


© Simple:Press Forum - Version 3.1.3 (Build 356)  


Readers voices

Featured

    Get my brandnew theme WyntonMagazine - Ready for localization. Additional features.

  • WyntonMagazine WordPress theme
  • Get my theme BranfordMagazine - English, German and other languages available.

  • BanfordMagazine WordPress theme
  • Get the e-book "Sites that Soar" - New version out now More info

  • Get the e-book 'Sites that Soar'

Spenden / Donate

    Falls Ihnen meine Arbeit etwas Geld wert ist. / If you feel my work is worth a little money.