4

I'm trying to create a link in one Joomla article that points to another article, but can't see how this should be done.

Could you please tell me how to do it?

TylerH
  • 20,799
  • 66
  • 75
  • 101
Yarin
  • 173,523
  • 149
  • 402
  • 512

3 Answers3

10

You can link to it like this:

index.php?option=com_content&view=article&id=ARTICLE_ID
nbro
  • 15,395
  • 32
  • 113
  • 196
hummingBird
  • 2,495
  • 3
  • 23
  • 43
  • 4
    You might want to also add ItemId=ID to set the correct menu item to be highlighted. – Martin Nov 02 '10 at 09:32
  • @Christopher :) removing italic html tag? really :) ... I don't know if Joomla still uses this logic. In any case, you should have explained what exactly you changed. This said, it does look better this way, but we shouldn't have revived it – hummingBird Jul 11 '15 at 18:26
3

Use the JCE Editor. Then follow these steps.

  1. Select the 'link' option
  2. Select browse/content
  3. Select the content item
  4. Select 'insert'.

This is one method, but there are many others. The example uses Joomla 2.5 but the same process is used in Joomla 3.0.

nbro
  • 15,395
  • 32
  • 113
  • 196
Mr. B
  • 2,677
  • 6
  • 32
  • 42
1

To create internal linking between different div or p just create links like this

<a href="index.php/component/content/article?id=96#div1">Go to div one</a>

Note: must add full URL of current article and then add #name.

<div><a name="div1">Here is div one</a></div>
Shiplu
  • 460
  • 6
  • 13