Ho do I change the page title from "Newsletter Subscription" to something else and how do I change the form path from www.example.com/mailchimp/subscribe to www.example.com/whateveriwant?

Thanks in advance!

Comments

levelos’s picture

Status: Active » Closed (fixed)

You can change the menu title by editing the default menu item. You can't change the path unless you write your own module.

douglas.a.hatch’s picture

Where does one change the default menu title? I've been pouring over the code, but can't seem to find it.

kbeck303’s picture

Issue tags: +Page title, +mailchimp

I've been trying to figure out how to change the displayed <$title>.

#2 - The menu items seems to only changes navigation.

my fix was to:
1. Create a new page template specifically for MailChimp Subscription Page - page-mailchimp-subscribe.tpl.php
2. Add new page title


<?php if ($title): ?><h1 class="title"><?php print t('Custome Page Title Here'); ?></h1><?php endif; ?>

This worked for me. See http://drupal.org/node/190815#page-suggestion for other page template suggestions