Using yget in 9.9.5.
When viewing a story, all the category links point back to upcoming; would expect to them to point to Published News. Am I missing something in configuraton?
Thanks for any help.
ortho


![]() |
| | Thread Tools | Display Modes |
| |||
|
Using yget in 9.9.5. When viewing a story, all the category links point back to upcoming; would expect to them to point to Published News. Am I missing something in configuraton? Thanks for any help. ortho |
| |||
|
I think this is the problem and solution. In yget\sidebar_modules\categories.tbl, change "published" to "upcoming' as follows: Code: {if $pagename eq "published"}
<a href="{$URL_maincategory, $cat_array[thecat].safename}" style="padding-bottom:5px;">{$cat_array[thecat].name}</a>
{else}
<a href="{$URL_queuedcategory, $cat_array[thecat].safename}" style="padding-bottom:5px;">{$cat_array[thecat].name}</a>
{/if} Code: {if $pagename neq "upcoming"}
<a href="{$URL_maincategory, $cat_array[thecat].safename}" style="padding-bottom:5px;">{$cat_array[thecat].name}</a>
{else}
<a href="{$URL_queuedcategory, $cat_array[thecat].safename}" style="padding-bottom:5px;">{$cat_array[thecat].name}</a>
{/if} |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Control of meta description - categories | Divisive Cotton | Questions and Comments | 71 | 03-29-2011 10:03 PM |
| [SOLVED] Upcoming Specific Category RSS Feeds | blaze | Questions and Comments | 4 | 12-06-2010 10:07 PM |
| Upcoming News and Category | feedoholic | Questions and Comments | 2 | 02-19-2009 05:52 AM |
| Category Links to Upcoming vs Index | spartacus | Questions and Comments | 6 | 04-02-2008 02:10 PM |
| [SOLVED] Upcoming news links dont work. | stii | Questions and Comments | 3 | 08-15-2007 08:31 PM |