Hi!
I've recently cobbled together a ListPages layout that I like far better than the default landing page for search queries and /tag result pages. Is there a way to implement this layout so that search results (etc) are displayed using it?
Hi,
I had a look on your start page ( http://mogaipedia.wikidot.com/start ) , your Random page ( http://mogaipedia.wikidot.com/wiki:random ) , and all Gender pages ( http://mogaipedia.wikidot.com/wiki:all-mogai-genders ).
I miss a list of all categories as we have it here on the community site ( not the list-all-pages) have a llok on the source http://community.wikidot.com/system:list-all-categories
and the all trags list is very good hidden in the left menu side bar…( http://mogaipedia.wikidot.com/system:page-tags/tag/aesthetigender )
Why do you not put a tag cloud ( with the link to all tags) like our left side menu on your wiki?
Than a search is not really necessary to difference between tags also. - you have mostly used the wiki: category only.. -
But well done your wiki!
Service is my success. My webtips:www.blender.org (Open source), Wikidot-Handbook.
Sie können fragen und mitwirken in der deutschsprachigen » User-Gemeinschaft für WikidotNutzer oder
im deutschen » Wikidot Handbuch ?
Hi there! Thanks so much for your response!
The tag cloud with a link to all tags is a brilliant idea! I'll definitely do that! I do only use the wiki: category because by the time I had figured out the way the categories were meant to work within wikidot, I was several hundred pages into the wiki itself, and going back to change everything sounded like a nightmare and a good way to wind up with a bunch of broken links!
Is there a way to change the result page formatting for just a normal search, however?
Is there a way to change the result page formatting for just a normal search, however?
I see in wikidot coding no chance to change the content of the outcome - only the CSS you can change ( on the fly) with a "module CSS" at the beginning - if you use the explorer (or firefox "development tools") in the menu left top - ( inspector , web-console an so on).
There you can see the "div" and their names of the rendered resulting page and can change the behaviour of the layout …
Search page: http://mogaipedia.wikidot.com/search:site/q/tags%3Apronouns ( as an example :) )
Service is my success. My webtips:www.blender.org (Open source), Wikidot-Handbook.
Sie können fragen und mitwirken in der deutschsprachigen » User-Gemeinschaft für WikidotNutzer oder
im deutschen » Wikidot Handbuch ?
Awesome! I'm playing around with this portion of the source code for my wiki:
<div class="search-results">
<div class="item">
<div class="title">
<a href="http://mogaipedia.wikidot.com/wiki:pronouns">Pronouns</a>
</div>
<div class="preview">
How would I merge that with my listpages module effectively?
[[module css]]
.footnotes-footer {
display:none;
}
[[/module]]
[[module ListPages tag="Neurogender" separate="true" order="name"]]
[[div style="float:left; width:305px; height:300px; border:1px solid gray; background:#eee; margin:10px 10px 0 0"]]
[[table style="width:100%;height:100%;table-layout:fixed;"]]
[[row style="height:40px"]][[cell style="background:#9ba;"]]
**%%linked_title%%**
[[/cell]][[/row]]
[[row style="height:160px"]][[cell style="font-size:80%; vertical-align:top"]]
[[div style="height:220px; overflow:hidden"]]
%%content%%
[[/div]]
[[/cell]][[/row]]
[[row style="height:30px"]][[cell style="font-size:5%; background:#cdc; green;"]]
[[div style="height:30px; overflow:hidden"]]
%%tags_linked%%
[[/div]]
[[/cell]][[/row]]
[[/table]]
[[/div]]
[[/module]]
You can put the "search module" of the search page ( the source ) onto your listpages output ! ( before or after the listpages codes.-..)
or otherway round … there is no restriction..
With the CSS structure of the rendered pages I am not a guru, I think I cannot help you in this case.
Perhaps another one read this?
Service is my success. My webtips:www.blender.org (Open source), Wikidot-Handbook.
Sie können fragen und mitwirken in der deutschsprachigen » User-Gemeinschaft für WikidotNutzer oder
im deutschen » Wikidot Handbuch ?
Thanks so much for your help! I tried that, but received an error telling me that listpages doesn't work recursively. Any clue what I could be doing wrong?