Please help me solve an issue with the navigation menu links. The links are incorrect when I click on "Next Page" or "Page 2."
For example, on the 'Home' menu or the first page, the correct link is as follows:
Code: |
https://mywebsite.com/index.php?option=com_booklibrary&task=showCategory&catid=69&Itemid=140
|
However, when I click "Next Page," the link is incorrect and appears like this:
Code: |
https://mywebsite.com/index.php?option=com_booklibrary&view=categories&layout=categories&task=showCategory&Itemid=140&limitstart=10
|
The correct link should include the missing 'catid':
Code: |
https://mywebsite.com/index.php?option=com_booklibrary&view=categories&layout=categories&task=showCategory&catid=69&Itemid=140&limitstart=10
|
Additionally, there is a similar issue with the search results navigation. When I search for the keyword "php," the first result has the correct link:
Code: |
https://mywebsite.com/index.php?searchtext=php&option=com_booklibrary&task=search&Itemid=140&searchtype=simplesearch
|
But when I click "Next Page," the link is wrong and shows the message "Nothing Found":
Code: |
https://mywebsite.com/index.php?option=com_booklibrary&view=categories&layout=categories&task=search&Itemid=140&limitstart=10
|
The correct link should be:
Code: |
https://mywebsite.com/index.php?searchtext=php&option=com_booklibrary&task=search&Itemid=140&searchtype=simplesearch&limitstart=10
|