These functions, see below, do not seem to work.

function polished_preprocess(&$vars, $hook) {
$vars['sample_variable'] = t('Lorem ipsum.');
}
// */

Comments

himerus’s picture

Assigned: Unassigned » himerus
Status: Active » Fixed

Unless your theme is named polished, you will need to rename this function, and any functions.
This is my oversight as it was a commented out function that was never renamed to omgea_starterkit_preprocess.

Any mentions of omega_starterkit_ and polished_ should be replaced with your_theme_

function yourthemename_preprocess(&$vars, $hook) {
  $vars['sample_variable'] = t('Lorem ipsum.');
} 

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.