Vivvo CMS Support Forum Home | Free Trial | Online Demo | Docs and Manuals | Order Now   

Go Back   Vivvo CMS Support Forums > Vivvo 4 > Troubleshooting

Troubleshooting Problems, need help? Have a tip or advice? Post it here.

Reply
 
Thread Tools Display Modes
Old 08-07-2008, 03:50 PM   #1
liquidws
Senior Vivvo User
 
Join Date: May 2008
Posts: 369
Rep Power: 6
liquidws is on a distinguished road
Default RSS links, Digg

a few questions..

1. on image1, (these are rss feeds) the title link of the article looks like it should lead to a full article on my site, but on that article (image2) only has the abstract (same info on image1 teaser). is there a way to have the whole rss article appear on my site (image2)? the way it is now is it's useless to have that abstract article (image2) on the site.

am i doing something wrong? how can i change it?

is it possible to make that title link #1 on image1 a direct link to the source instead (just in case i want to do that)?

2. (image1) this link is a link to the full article from the main source website. how can i make this a popup?

3. i would like to remove "delicious" and "digg" links, but when i tried it caused all kinds of problems with the layout and look of the page.. what is the correct way to remove these?

4. is there a setting to have an email sent to me when someone replies to one of my threads (or posts)? or even mark another thread that i am interested in reading? just curious


again, thanks in advance
Attached Images
File Type: jpg image1.jpg (53.6 KB, 29 views)
File Type: jpg image2.jpg (49.4 KB, 23 views)
liquidws is offline   Reply With Quote
Old 08-07-2008, 04:42 PM   #2
Micha
Administrator
 
Micha's Avatar
 
Join Date: Feb 2006
Location: Belgrade
Posts: 2,661
Rep Power: 10
Micha will become famous soon enough
Default

Quote:
1. on image1, (these are rss feeds) the title link of the article looks like it should lead to a full article on my site, but on that article (image2) only has the abstract (same info on image1 teaser). is there a way to have the whole rss article appear on my site (image2)? the way it is now is it's useless to have that abstract article (image2) on the site.

am i doing something wrong? how can i change it?

is it possible to make that title link #1 on image1 a direct link to the source instead (just in case i want to do that)?
You can modify your summary/default.tpl template and change the following code from

Code:
<h2><a href="{article.get_href}"><vte:value select="{article.get_title}" /></a></h2>
to

Code:
<vte:if test="!{article.get_link}">
  <vte:if test="{article.body}">
    <h2><a href="{article.get_href}"><vte:value select="{article.get_title}" /></a></h2>
  </vte:if>
  <vte:else>
    <h2><a class="visit" href="{article.get_link}"><vte:value select="{article.get_title}" /></a></h2>
  </vte:else>
</vte:if>
That way, your title will point to article source.

Quote:
2. (image1) this link is a link to the full article from the main source website. how can i make this a popup?
I suppose so, try to google some simple JS for pop-ups, and apply it to this line of code in your summary/default.tpl template:
Code:
<a class="visit" href="{article.get_link}"><img src="{VIVVO_THEME}img/external.png" alt="{LNG_VISIT_WEBSITE}"/></a>
Easy solution would be to add target="_blank" to that a href, so the article appears in new browser window/tab.

Quote:
3. i would like to remove "delicious" and "digg" links, but when i tried it caused all kinds of problems with the layout and look of the page.. what is the correct way to remove these?
Go to your article/default.tpl template and remove this line:
Code:
<vte:include file="{VIVVO_TEMPLATE_DIR}box/article_social_bookmarks.tpl" />
Quote:
4. is there a setting to have an email sent to me when someone replies to one of my threads (or posts)? or even mark another thread that i am interested in reading? just curious
Currently not.
__________________
--[Read Forum Rules and Guidelines before you post!!!]--

Djole, Djole, bas si bezobrazan sto si se pravio da si mali zekan. Zato cu te dobro kazniti...
Micha is offline   Reply With Quote
Old 08-08-2008, 04:35 AM   #3
casca
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by Micha View Post
You can modify your summary/default.tpl template and change the following code from

Code:
<h2><a href="{article.get_href}"><vte:value select="{article.get_title}" /></a></h2>
to

Code:
<vte:if test="!{article.get_link}">
  <vte:if test="{article.body}">
    <h2><a href="{article.get_href}"><vte:value select="{article.get_title}" /></a></h2>
  </vte:if>
  <vte:else>
    <h2><a class="visit" href="{article.get_link}"><vte:value select="{article.get_title}" /></a></h2>
  </vte:else>
</vte:if>
That way, your title will point to article source.



I suppose so, try to google some simple JS for pop-ups, and apply it to this line of code in your summary/default.tpl template:
Code:
<a class="visit" href="{article.get_link}"><img src="{VIVVO_THEME}img/external.png" alt="{LNG_VISIT_WEBSITE}"/></a>
Easy solution would be to add target="_blank" to that a href, so the article appears in new browser window/tab.



Go to your article/default.tpl template and remove this line:
Code:
<vte:include file="{VIVVO_TEMPLATE_DIR}box/article_social_bookmarks.tpl" />


Currently not.
Is there a way to just get the full article in the rss feed to import into the article it creates on the website?

(i.e. RSS Feed comes in from Site A and summary gets imported into Article A on SITE B. Is there a way to get the full article to be imported into SITE B so when the reader clicks it we don't leave the website, but instead just provide the content right there on SITE B instead? (With full credit to whatever site of course)
  Reply With Quote
Old 08-08-2008, 08:07 AM   #4
Micha
Administrator
 
Micha's Avatar
 
Join Date: Feb 2006
Location: Belgrade
Posts: 2,661
Rep Power: 10
Micha will become famous soon enough
Default

Quote:
Is there a way to just get the full article in the rss feed to import into the article it creates on the website?

(i.e. RSS Feed comes in from Site A and summary gets imported into Article A on SITE B. Is there a way to get the full article to be imported into SITE B so when the reader clicks it we don't leave the website, but instead just provide the content right there on SITE B instead? (With full credit to whatever site of course)
I think this is more up to RSS that some site provides.
For example, if the Site A provides something like this in RSS
- Title
- Description
- Body
Than you would be able to import full article into your site.
__________________
--[Read Forum Rules and Guidelines before you post!!!]--

Djole, Djole, bas si bezobrazan sto si se pravio da si mali zekan. Zato cu te dobro kazniti...
Micha is offline   Reply With Quote
Old 08-08-2008, 11:56 AM   #5
casca
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by Micha View Post
I think this is more up to RSS that some site provides.
For example, if the Site A provides something like this in RSS
- Title
- Description
- Body
Than you would be able to import full article into your site.
I see, I kind of thought it might not be available... I'm using the link method above that you outlined, thank you (I added a target='new' in there so it opened another page when someone clicked it).
  Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Order now:

Order your copy of Vivvo now and get:
bullet Six months free upgrades
bullet Free support
bullet Full source code
bullet Immediate download
bullet Starting at only $295.00
Order now

Support HelpDesk:

You can submit a trouble ticket in the support area at any time, using your client area email and password.

Vivvo CMS Resource Center:

The Vivvo CMS Resource Center is your window to a variety of resources that showcase Vivvo's features and technologies. So whether you're brand new to Vivvo or a seasoned user, you can find the information you need right here!

Latest Additions:

Contact us:

Business hours
Mon-Fri 9:00AM - 6:00PM GMT+1
(Europe)
Telephone Sales
381 11 311-50-20
Email inquiries
sales@vivvo.net
(Sales inquiries)
support@vivvo.net
(Support inquiries)

All times are GMT +1. The time now is 08:04 PM.
Contact Us - Vivvo Home - Archive - Privacy Statement - Top

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.