I am creating a more static page with lots of subpages in different levels. Is there a module that lets me create kind of a sitemap to align and create new pages (like typo3), and automatically updates a menu tree?
Thank you very much for you help!
I have really enjoyed working with Drupal and my new site is coming along nicely. I recently encountered a problem with a Views module-generated table.
First, I output the View page as a table. I am using this table on my home page, which is based on the Bluemarine theme with one column used on the left. It remains a fluid-width theme... I did not change the column CSS at all.
I'm hoping someone can help me. I was in maintenance mode and I logged out as Admin. Now I can't log back in. Every time I visit the site, I get the "Site off-line" message because it's in maintenance mode since I did not take off maintenance mode before I logged off as Admin.
I went into the modules/login_destination/login_destination.module and changed the following function to go to where I want authenticated users to go. Its the path variable that gets customized:
function login_destination_get_destination() {
// customize the path as desired.
$path = 'front_page';
return url($_GET['q'], "destination=$path");
}
I've installed the E-Commerce module. But I don't need its full function, I just want to implement a "Product Gallery". I want to list the products' name, description and image. That's enough. However, with E-Commerce, all product have a price while I don't want to disclose the price info.
Does anyone know how can I create a product without a price? Thank you very much!