About bug in search...
 
Notifications
Clear all

wpForo 1.x.x [Solved] About bug in search by tag

3 Posts
2 Users
0 Likes
929 Views
rarara
Posts: 2
Topic starter
(@rarara)
New Member
Joined: 5 years ago

Hello. I'm rarara.

When searching by tag in the sidebar, it is not searched correctly.
For example, a word like “C#”.
The link will look like this:
https://xxxx/?wpfin=tag&wpfs=C#
It should be as follows:
https://xxxx/?wpfin=tag&wpfs=C%23

The solution is to change the location where the link string is created, for example, as shown below.
functions-template.php

<? php echo wpforo_home_url (). '? wpfin = tag & wpfs ='. $ tag?> ">

<? php echo wpforo_home_url (). '? wpfin = tag & wpfs ='. urlencode ($ tag)?> ">

Topic Tags
2 Replies
Sofy
Posts: 4233
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Thank you for letting us know. 

The issue will be fixed in the next version release. 

rarara
Posts: 2
Topic starter
(@rarara)
New Member
Joined: 5 years ago

Thank you very much. I will do my own modification until the version upgrade.