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. Ihr müsst dazu nicht 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. You don´t 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.



Current User: Guest Login Register
Please consider registering

Search 
Search Forums:


 




Featured article text

Add a New Topic Reply to Post
UserPost

15:26
12. May 2008


TomHBrown

Guest

I found that one of the plug-ins was causing the problem: WordTube (for embedding YouTube); when I removed it the feature text reappeared on the home page.


Just in case anyone else has this problem.

Thanks,

Tom


TomHBrown said:

I have also just experienced my featured text no longer appearing on the home page (just the titles). I had done nothing to the index.php page.

I looked in both places which have been mentioned in the index.php, and even reloaded it a couple of times.

Nothing.

Most discouraging..I did a lot of work today without periodic backup, and I don't even know how to fix it.

I do love the theme, though, and want to make it work.

Hope someone can help…

TomH

My site is http://www.ListBoogie.com



06:57
12. May 2008


TomHBrown

Guest

I have also just experienced my featured text no longer appearing on the home page (just the titles). I had done nothing to the index.php page.

I looked in both places which have been mentioned in the index.php, and even reloaded it a couple of times.

Nothing.

Most discouraging..I did a lot of work today without periodic backup, and I don't even know how to fix it.

I do love the theme, though, and want to make it work.

Hope someone can help…

TomH

My site is http://www.ListBoogie.com

01:49
10. May 2008


Michael Oeser

Admin

posts 539

Awesome, Dude ;-)

21:58
6. May 2008


iltuoiphone

Member

posts 4

Michael I found the problem is caused by my permalink structure (Codex was a good help Laughing), so I changed that line of code in this:


<?php the_excerpt(); ?>

Michael Oeser said:

Did you change anythng in the code of index.php in the “featured articles” module? Normally it looks like this:


// “Featured articles” module begins
query_posts('showposts=3&cat=7'); ?>
<h3>
<?php
// name of the “featured articles” category gets printed
wp_list_categories('include=7&title_li=&style=none'); ?>
</h3>
<?php while (have_posts()) : the_post(); ?>
<div class=”feature”>
<?php
// this grabs the image filename
$values = get_post_custom_values(”featuredarticleimage”);
// this checks to see if an image file exists
if (isset($values[0])) {
?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><img src=”<?php bloginfo('url'); echo '/'; echo get_option('upload_path'); echo '/';
// this is where the custom field prints images for each Feature
$values = get_post_custom_values(”featuredarticleimage”); echo $values[0]; ?>” alt=”featuredimage” /></a>
<?php } ?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” class=”title”>
<?php
// title of the “featured articles”
the_title(); ?>
</a>
<p>
<?php the_content_rss('', TRUE, '', 20); ?>
</p>
</div>
<?php endwhile; ?>
</div>
<!–END LEFTCOL–>

The part that displays the copy (the text) below the headline is the blue highlighted.




21:44
6. May 2008


iltuoiphone

Member

posts 4

Hi Michael

I didn't change that line, this is my index.php. As you can see I made some little changes, but no code involved (I don't know php).

Thank you


<?php get_header(); ?>

<div id=”content”>
<?php
// Include tabs with the lead story
include(TEMPLATEPATH . '/ui.tabs.php'); ?>
<div id=”leftcol”>
<?php
// “Featured articles” module begins
query_posts('showposts=8&cat=315'); ?>
<h3>
<?php
// name of the “featured articles” category gets printed
wp_list_categories('include=315&title_li=&style=none'); ?>
</h3>
<?php while (have_posts()) : the_post(); ?>
<div class=”feature”>
<?php
// this grabs the image filename
$values = get_post_custom_values(”featuredarticleimage”);
// this checks to see if an image file exists
if (isset($values[0])) {
?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Collegamento a <?php the_title(); ?>”><img src=”<?php bloginfo('url'); echo '/'; echo get_option('upload_path'); echo '/';
// this is where the custom field prints images for each Feature
$values = get_post_custom_values(”featuredarticleimage”); echo $values[0]; ?>” alt=”featuredimage” /></a>
<?php } ?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” class=”title”>
<?php
// title of the “featured articles”
the_title(); ?>
</a>
<p>
<?php the_content_rss('', TRUE, '', 20); ?>
</p>
</div>
<?php endwhile; ?>
</div>
<!–END LEFTCOL–>
<div id=”rightcol”>
<?php
// enter the IDs of which categories you want to display
$display_categories = array(2,3,4,5,6,7,8,9,10);
foreach ($display_categories as $category) { ?>
<div class=”clearfloat”>
<?php query_posts(”showposts=2&cat=$category”);
$wp_query->is_category = false;
$wp_query->is_archive = false;
$wp_query->is_home = true;
?>
<h3><a href=”<?php echo get_category_link($category);?>”>
<?php
// name of each category gets printed
single_cat_title(); ?>
</a></h3>
<?php while (have_posts()) : the_post(); ?>
<?php
// this grabs the image filename
$values = get_post_custom_values(”rightcolimage”);
// this checks to see if an image file exists
if (isset($values[0])) {
?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Collegamento a <?php the_title(); ?>”><img src=”<?php bloginfo('url'); echo '/'; echo get_option('upload_path'); echo '/'; $values = get_post_custom_values(”rightcolimage”); echo $values[0]; ?>” alt=”" /></a>
<?php } ?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” class=”title”>
<?php
// this is where title of the article gets printed
the_title(); ?>
</a><br />
<?php the_excerpt() ; ?>
<?php endwhile; ?>
</div>
<?php } ?>
</div>
<!–END RIGHTCOL–>
</div>
<!–END CONTENT–>
<?php get_sidebar(); ?>
<?php get_footer(); ?>


Michael Oeser said:

Did you change anythng in the code of index.php in the “featured articles” module? Normally it looks like this:


// “Featured articles” module begins
query_posts('showposts=3&cat=7'); ?>
<h3>
<?php
// name of the “featured articles” category gets printed
wp_list_categories('include=7&title_li=&style=none'); ?>
</h3>
<?php while (have_posts()) : the_post(); ?>
<div class=”feature”>
<?php
// this grabs the image filename
$values = get_post_custom_values(”featuredarticleimage”);
// this checks to see if an image file exists
if (isset($values[0])) {
?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><img src=”<?php bloginfo('url'); echo '/'; echo get_option('upload_path'); echo '/';
// this is where the custom field prints images for each Feature
$values = get_post_custom_values(”featuredarticleimage”); echo $values[0]; ?>” alt=”featuredimage” /></a>
<?php } ?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” class=”title”>
<?php
// title of the “featured articles”
the_title(); ?>
</a>
<p>
<?php the_content_rss('', TRUE, '', 20); ?>
</p>
</div>
<?php endwhile; ?>
</div>
<!–END LEFTCOL–>

The part that displays the copy (the text) below the headline is the blue highlighted.




13:47
1. May 2008


Michael Oeser

Admin

posts 539

Did you change anythng in the code of index.php in the “featured articles” module? Normally it looks like this:


// “Featured articles” module begins
query_posts('showposts=3&cat=7'); ?>
<h3>
<?php
// name of the “featured articles” category gets printed
wp_list_categories('include=7&title_li=&style=none'); ?>
</h3>
<?php while (have_posts()) : the_post(); ?>
<div class=”feature”>
<?php
// this grabs the image filename
$values = get_post_custom_values(”featuredarticleimage”);
// this checks to see if an image file exists
if (isset($values[0])) {
?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><img src=”<?php bloginfo('url'); echo '/'; echo get_option('upload_path'); echo '/';
// this is where the custom field prints images for each Feature
$values = get_post_custom_values(”featuredarticleimage”); echo $values[0]; ?>” alt=”featuredimage” /></a>
<?php } ?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” class=”title”>
<?php
// title of the “featured articles”
the_title(); ?>
</a>
<p>
<?php the_content_rss('', TRUE, '', 20); ?>
</p>
</div>
<?php endwhile; ?>
</div>
<!–END LEFTCOL–>

The part that displays the copy (the text) below the headline is the blue highlighted.


23:06
28. April 2008


iltuoiphone

Member

posts 4

Your Website or Blog URL:
http://www.iltuoiphone.it
Your themes version: 2.51
Your WP Version:2.5


Hello

First of all; your theme is beatiful and I just finished changing the theme of my blog. So thank you for your excellent work.


Perhaps I'm wrong and I can't display any text in the featured article on my blog home page; I tried with many custom field (example featuredarticletext) but I don't get the text.

THank you in advance

Add a New Topic Reply to Post


Reply to Topic: Featured article text
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: 1 + 6        (Required)

Topic Reply:


 

About the DER PRiNZ forum

Currently Online:

8 Guests

Maximum Online: 22

Forums:

Groups: 4

Forums: 9

Topics: 362

Posts: 1502

Members:

There are 166 members

There are 218 guests


Michael Oeser has made 539 posts

Top Posters:

dnrothwell - 27

smilepak - 25

Daishi - 22

staland - 9

njmotocross - 8

Administrator: Michael Oeser | Moderators: Michael Oeser, Daishi


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


Readers voices

  • Thomas: Clean & lean, sieht schick aus. Probier ich mal auf WP 2.6 um ein Portfolio...
  • Rakhmat Ichsan: very nice template.. very well done…
  • Dimitri: Hallo Michael, danke für diesen Bericht, ich bin selbst seit mehr als 15...
  • Joachim: I love this theme!
  • Larry: Amazing, amazing theme! Thank you for giving such a premium template for free....

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.