Forum for discussing general topics related to Couch.
15 posts Page 2 of 2
I've used those tags listed in your response however only the title is showing up, content and image are still missing.

OK, I logged-in and had a look.

I can see that you have defined two editable regions - 'thoughts_content' (richtext) and 'thoughts_image' (image).

In the body of your template you are using the image region as follows -
Code: Select all
<img class="listing" <img class="thumb" src="<cms:show thoughts_image />" alt=""/>

First problem with the code above is that it is invalid HTML - you are trying to nest one IMG tag into another IMG tag (the outer one is incomplete).

The code should have been simply -
Code: Select all
<img class="thumb" src="<cms:show thoughts_image />" alt=""/>

But you won't still get to see an image because you have not uploaded an image in the admin-panel (you have only filled the 'thoughts_content' richtext region with an image. The actual 'thoughts_image' region below that is empty).

Please make the change suggested above and upload an image and you should see it.

Coming to why even the contents of the text (i.e. 'thoughts_content') region is not shown.
For that please take a look at what you are using to display it -
Code: Select all
<cms:show blog_content />

There is no defined region named 'blog_content' and so you see nothing.

It should have been -
Code: Select all
<cms:show thoughts_content />


Hope it helps.
matter of fact I see two images, same image repeated two times now, but still no content, also I was wondering if I buy the license do I have to start from scratch or can I remove the credit link or at least modify it without replacing all the changes I've done till now?


KK wrote:
I've used those tags listed in your response however only the title is showing up, content and image are still missing.

OK, I logged-in and had a look.

I can see that you have defined two editable regions - 'thoughts_content' (richtext) and 'thoughts_image' (image).

In the body of your template you are using the image region as follows -
Code: Select all
<img class="listing" <img class="thumb" src="<cms:show thoughts_image />" alt=""/>

First problem with the code above is that it is invalid HTML - you are trying to nest one IMG tag into another IMG tag (the outer one is incomplete).

The code should have been simply -
Code: Select all
<img class="thumb" src="<cms:show thoughts_image />" alt=""/>

But you won't still get to see an image because you have not uploaded an image in the admin-panel (you have only filled the 'thoughts_content' richtext region with an image. The actual 'thoughts_image' region below that is empty).

Please make the change suggested above and upload an image and you should see it.

Coming to why even the contents of the text (i.e. 'thoughts_content') region is not shown.
For that please take a look at what you are using to display it -
Code: Select all
<cms:show blog_content />

There is no defined region named 'blog_content' and so you see nothing.

It should have been -
Code: Select all
<cms:show thoughts_content />


Hope it helps.
matter of fact I see two images, same image repeated two times now
I see that you have revoked the FTP creds you had granted me. So I don't know how to tell you what is wrong now.

As for the license, it is a simple one-line change in the config file and does not affect your existing code in any way.
yes had to change for security reasons please find new password in PM
KK wrote:
matter of fact I see two images, same image repeated two times now
I see that you have revoked the FTP creds you had granted me. So I don't know how to tell you what is wrong now.

As for the license, it is a simple one-line change in the config file and does not affect your existing code in any way.
Thank you.
I see two images, same image repeated two times now, but still no content
That is because you are using the same image in the content also.

Please add some text or some other image in the richtext editor (i.e. your content) and you'll see it on the frontend.

Thanks.
15 posts Page 2 of 2
cron