Menu
  • HOME
  • TAGS

Is there a way to drill down/search directory in dotcms?

path,dotcms

You can (since dotcms 3.2.1) search by url from the content search screen. See searching for pages under /about-us on the http://demo.dotcms.com site: ...

“-includeresource” in JAR Manifest inside Gradle build file

java,jar,osgi,dotcms

-includeresource is an bnd instruction. Per the documentation, it is used to: Include resources from the file system ...

How to get a plain list of files in velocity on a dotCMS system?

velocity,dotcms

I got it working using the following code. #set($files = $navtool.nav) #set($children = $files.children) #foreach($ch in $children) $ch.title $ch #end $ch.title outputs just the file (without the extension) $ch outputs the filename as a link to the file...

dotCMS content missing after Save / Publish

html,dotcms

You probably missed a closing tag on that <title>. Go to your website and check the title. You can always rename your current page to something like page-name-old and create a new page called page-name(the original page name). If you can't remember what your old page code was, just view...

How to add multiple pages to single page navigation bar in dotCMS

content-management-system,dotcms

In the page properties, check the box "show on menu" for both your pages. Then you can use the navigation tool ($navtool) to build your navigation. See this page in the documentation: http://dotcms.com/docs/latest/NavigationTool...

How to see what pages are using a specific template

web,dotcms

Go into your Website tab and navigate to HTML pages. Once you're there, in the drop down menu select "Filter By Template: ", then in the blank, type your template name there and click search. This will give you a list of all pages running on that template....