About bug in search...
 
Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

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

3 Posts
2 Users
0 Reactions
1,380 Views
rarara
Posts: 2
Topic starter
(@rarara)
New Member
Joined: 6 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: 5486
 Sofy
Admin
(@sofy)
Support Team
Joined: 8 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: 6 years ago

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