In mp_marketplace.admin.inc function mp_marketplace_selling_overview($user), there are the two following lines:

$output .= '<h1 class="title">'. t('Sales Summary') . '</h1>';

and

drupal_set_title(t('Sales Summary'));

Which result in the title basically showing up twice.. removing the first line would solve the issue. Please don't make me construct a patch in order for you to fix this :)

Cheers

Comments

arski’s picture

PS. the whole thing should really be wrapped in a theme function as well, so that people could edit/remove the "below is a summary of your bla bla" text as well.