Then comes the question, how to enter a search on wapkiz and wapaxo sites?
In a brief tutorial, in a few steps I will teach you on "How to insert search forms and search pages on wapkiz and wapaxo".1. Entering the search form.
Copy the code and paste it on your website, in the header if possible.
<form action="/page-1.html?to-search=" method="get"> <input type="text" value="" name="to-search" placeholder="Search here"> <input type="submit" value="Search"> </form>
Where:
action = "page-1.html?to-search=" - - > is the link of the page that will show the search result. In the form above, the page result will be shown on page 1, and the word "?to-search=" is the tag that will carry the word in the "name" to the next page, this I will explain on the next page.
name = "to-search" - - > is the search value, it will be the value that will be insert ed in the input value so that it is loaded in the url.
2. Configuring the Search results page.
On the results page, example on page 1, insert the following code.
For files
[fm]search=:to-search:, l=12, o=u, no=No found files||%name%[/fm]
For blogs
[blog]search=:to-search:, l=12, o=u, no=No found blogs||%title%[/blog]
search = :to-search: - - > is the value that will be extracted in the page url, which is the same one entered in the search form.
This works for blogs, users and files.