Support Forum

ACHTUNG: Momentan ist das Forum aus Zeitgründen auf reinen Lesemodus geschaltet. Es können keine Einträge vorgenommen werden. Bitte schickt keine Supportanfragen per eMail.
ATTENTION: Due to a massive lack of time the forums are currently in read-only modus. Please avoid sending support-questions via 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.



This forum is currently locked - access is read only
You must be logged in to post Login

Search 
Search Forums:


 




Recent comments instead of recent posts in ui.tabs

UserPost

21:03
21. Juli 2008


pointysticks

Member

West Wales, UK

posts 18

1

Thanks, Micheal. That was exactly what I needed to move forward. The images are all showing fine now.

Thanks for a really great theme. You've done a wonderful job of commenting out the templates. They've made it really easy to find my way around, and see what I don't need, without worrying I'm going to delete the wrong thing break the theme. First class job.

Thanks again!

18:21
21. Juli 2008


Michael Oeser

Admin

posts 630

2

When I look to your sourcecode I can see an image URL for the leadimage but it does not work:

http://cast-on.com/new//homepages/36/d113714374/htdocs/new/wp-content/uploads/2008/07/leadimage.jpg

This may be for different reasons but a solution can be that the upload path can´t be detected correctly. Try the solution with absolute URLs (or paths) as I describe it here:

http://www.der-prinz.com/support-forum/general-theme-support/image-path-in-featured-articles/page-1/post-1470/#p1470

16:22
21. Juli 2008


pointysticks

Member

West Wales, UK

posts 18

3

Oops! Correct link to the site is here:

http://cast-on.com/new

Sorry about that!

15:54
21. Juli 2008


pointysticks

Member

West Wales, UK

posts 18

4

Michael Oeser said:

First you need a plugin to display the recent comments because there is still no WP function for that. Depending on the plugin you have to put the plugins function at the same position as the Wordpress function for the recent posts now sits. The blue part is the function for the recent posts. I use “Get Recent Comments” which works fine for me.



Thanks for your detailed response, Micheal. I actually got that far, and was unhappy with the way the recent comments were styled. I had a look at the style sheet and I think I've identified the correct div to make the changes. I'm not not entirely new to this, but tend to hunt around for information, and learn only what I need to know. So there are gaps in my knowledge.

Leaving the question of recent comments and the ui.tabs aside for the moment, I wonder if you can help me figure out why none of my custom field images are showing up on the main page? It's still a bit of a mess as I make sense of all the imported info, but you can check the site here: http://cast-on.com

As you can see, I'm getting borders around the fields where the custom field images should be, but no image. The names of each field are showing, except for the rightcolimage, which is too small for text. I'm using relative paths, but I've tried using the complete string as well, and still no joy. I've read all your tutorials, and been through the forum looking for info, but there has not been a problem like mine it seems.

I had a bit of trouble with custom fields after I imported the contents of an older WP blog into this new one (running wp2.6), but was able to correct it in MySql. There's either something ridiculously simple that I've overlooked, or there are darker forces at work due the import. The import also may have no bearing on my trouble whatsoever, but I've read of a number of problems in the WP support forum about weird custom fields after importing other blogs, and maybe there's a connection. Any help you can offer is greatly appreciated.

12:49
20. Juli 2008


Michael Oeser

Admin

posts 630

5

First you need a plugin to display the recent comments because there is still no WP function for that. Depending on the plugin you have to put the plugins function at the same position as the Wordpress function for the recent posts now sits. The blue part is the function for the recent posts. I use “Get Recent Comments” which works fine for me.

  <!– RECENT POSTS –>
  <div id=”fragment-2″ class=”bullets”>
    <h3 class=”title”>Recent Posts</h3>
    <p>To show the recent posts is just one thing you can use this tabbed section
      for. There are many more. It&acute;s up to your creativity.</p>
    <?php wp_get_archives('type=postbypost&limit=7'); ?>
  </div>
  <!– END RECENT POSTS –>

So you might chage it like this

  <!– RECENT COMMENTS–>
  <div id=”fragment-2″ class=”bullets”>
    <h3 class=”title”>Recent Comments</h3>
       <ul>
        <?php get_recent_comments(); ?>
      </ul>

  </div>
  <!– END RECENT COMMENTS–>

   And also you have to change the part on the tab itself on top of ui.tabs.php

<li><a class=”ui-tabs” href=”#fragment-1″>Lead Article</a></li>
    <li><a class=”ui-tabs” href=”#fragment-2″>Recent Comments</a></li>
    <li><a class=”ui-tabs” href=”#fragment-3″>About this Theme</a></li>

22:41
19. Juli 2008


pointysticks

Member

West Wales, UK

posts 18

6

Your Website or Blog URL:
Your themes version: 2.5
Your WP Version: 2.6

I'd like to use recent comments instead of recent posts in the tabbed interface. I've a feeling the solution is a fairly straightforward tag, but I've tried raiding a number of comments plugins for code, and I just can't seem to find a solution I'm happy with. Most of the simple tags result in odd formatting, and I lack the css skills to make this area integrate with the rest of the site.

Best case scenario: I'd like my tabbed recent comments to look like the new comments snapshot in the wp2.5 dashboard, where the first comment shows an excerpt, and then beneath it, the next 4 comments show author name only and a link to the post, with the comment link shown first. Does anyone have any tips or suggestions for how to make that happen?

Thanks very much.



Reply to Topic: Recent comments instead of recent posts in ui.tabs
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:

7 Guests

Maximum Online: 25

Forums:

Groups: 4

Forums: 9

Topics: 467

Posts: 1869

Members:

There are 187 members

There are 240 guests


Michael Oeser has made 630 posts

Top Posters:

Daishi - 45

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

  • Deine Mutter Sprüche: Klasse Artikel, die ganze Finanzwelt dreht doch komplett am...
  • bodybuilding: aufgrund dieser anleitung hab ich die featured artikel verstanden. dort...
  • bodybuilding: das ist ja mal ein super teil. bin gerade dabei anhand der anleitungen...
  • Renegado: hermosa plantilla, muy sobria y elegante, gracias. Sera una experiencia muy...
  • anne: Is there a way to make the list on the side look nested? something like this - ?...

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.


Bad Behavior has blocked 3584 access attempts in the last 7 days.