iJoomla Forum

iJoomla Magazine => Support Questions => Topic started by: tm2000 on May 07, 2008, 11:44:35 AM



Title: Want the Article Title to Show - Just *Not* Clickable
Post by: tm2000 on May 07, 2008, 11:44:35 AM
Can someone point to me where I can change this within the code?  Just want the title to show, not a link..

Thought it would be here:
/home/user999/public_html/components/com_magazine/magazine.html.php

just can't find it.. Thanks!!!


Title: Re: Want the Article Title to Show - Just *Not* Clickable
Post by: tm2000 on May 07, 2008, 12:00:12 PM
OK, got Vertical to unlink by changing around line 1771:

from:
Code:
echo "<a href=".$art_url." class=".$css_section_box."><b>".(stripslashes($article[0]->title))."</b></a><br />";

to:
Code:
echo "<class=".$css_section_box."><b>".(stripslashes($article[0]->title))."</b><br />";

Now looking for Horizontal and the IMAGES...



Title: Re: Want the Article Title to Show - Just *Not* Clickable
Post by: tm2000 on May 07, 2008, 12:26:31 PM
Got it, will post the changes in a bit for all...


Title: Re: Want the Article Title to Show - Just *Not* Clickable
Post by: RicardoCorai on May 07, 2008, 02:08:42 PM
Which iJoomla Magazine version are you using?
Try editing this (line 1903 - 2413):
Code:
//angek: magazine-7: start:

      echo "<a href=".$art_url." class=\"".$css_section_box."\"><b>".(stripslashes($article[0]->title))."</b></a><br />";

//angek: magazine-7: end:

Code:
//angek: magazine-7: start:

      $text = "<a href=".$art_url." class='".$css_section_article."'><b>".(stripslashes($article[0]->title))."</b></a><br />";

//angek: magazine-7: end:


Title: Re: Want the Article Title to Show - Just *Not* Clickable
Post by: konabear on June 16, 2008, 03:37:32 PM
Hi,

I am using version 2.1.06 and I would like my article titles to be linkable.  Right now they are not. I thought it would be something I could just toggle on in the back end, but I can't find it.

Could someone please point me in the right direction?

Thanks!   :)


Title: Re: Want the Article Title to Show - Just *Not* Clickable
Post by: RicardoCorai on June 17, 2008, 09:48:16 AM
Hi,
All articles´ titles are linkable. Check if you are using heading instead of title article. If so, headings are not linkable.
Best regards,


Title: Re: Want the Article Title to Show - Just *Not* Clickable
Post by: konabear on June 17, 2008, 08:47:54 PM
You are quite right. I am using the headings. Thanks for the info.

 ;)