The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Changing search query URL from number string to actual terms
As I'm sure most of you know, vBulletin displays a random string of numbers after you perform a search in the default search box.
Is there any way to change it such that instead of displaying a random string of numbers that it will display the actual terms being searched? I would like to have access to this information in my Google analytics to see what topics people are searching for. Would implementing Google Custom Search accomplish this? Thanks, Andrew |
#2
|
|||
|
|||
You could edit the file search.php and around line 366, make this change (add the part in red):
Code:
if (!VB_API) { $vbulletin->url = 'search.php?' . $vbulletin->session->vars['sessionurl'] . "searchid=" . $results->get_searchid(); if (isset($searchterms['query'])) $vbulletin->url .= "&terms=".$searchterms['query']; } else I've only tested it by running one query, so I'm not 100% sure there aren't any problems with it. |
Благодарность от: | ||
cellarius |
#3
|
|||
|
|||
Thanks a lot kh99
Hopefully others can chime in and confirm that what you've posted has been working for them. I will also run it by my developer. |
#4
|
|||
|
|||
Edit: nvm.
|
#5
|
||||
|
||||
That string is your search query stored in the database. I don't think there is an easy way to remove it.
|
#6
|
|||
|
|||
I don't want to remove it. I just want it to display the actual search query in the URL after the submit search button is clicked. That way Google Analytics can tell me that "camera" was searched instead of "124859".
|
#7
|
||||
|
||||
That's what kh99 code change will achieve, from looking at it. If you want to know whether it works or not, you will have to run some tests yourself. You can always do that on a test copy of your board. You're the one looking for something, and a solution has been offered. You can't expect others to do your testing for you.
|
#8
|
|||
|
|||
Quote:
Does anyone use the Google search bar on their forum? |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|