Recent Topics

1 Oct 28, 2005 05:43    

Right now, by default the linkblog is set up as follows:

Item Title
Description
"Permanlink Icon

This format gets pretty long depending on the descriptions, and the page just looks super long.

I have modified the _linkblog.php so that in only shows
The Permalink Icon and the Item Title as a URL

However, the problem I'm having right now is that if a blog ITEM has a "Link to url" value assigned to it, my URL does not point to my BLOG, but it points to the "Link to url" value.

Is there a way or property that shows just the value of the Item Title and not the Item Title & "Link to URL" value?

Thanks in advance,

Edgar,

2 Oct 28, 2005 23:36

I'm not sure of the answer, but in the backoffice under the Write tab the Title field is coded thusly:

<span class="line">

		<label for="post_title"><strong>Title:</strong></label>
		<input type="text" name="post_title" size="48" value="" id="post_title" tabindex="1" />
		</span>

So I'm guessing the title is being stored as "post_title". Perhaps someone can figure out a way for you to just pull that part from the DB.

3 Oct 29, 2005 08:25

echo '<a href="'.$Item->url.'">'.$Item->title.'</a>';

¥


Form is loading...