Skip to content

Instantly share code, notes, and snippets.

@vdchristelle
Created September 9, 2013 07:00
Show Gist options
  • Save vdchristelle/6492282 to your computer and use it in GitHub Desktop.
Save vdchristelle/6492282 to your computer and use it in GitHub Desktop.
GoogleAnalytics data komt niet binnen Opmerking van beneden, de Marketeers komen dikwijls tot de vaststelling dat de GA module niet werkt. Eén van de oorzaken kan onderstaand stukje code zijn: Dit stukje komt uit het template.php bestand in het basetheme. De 2 lijnen die in commentaar staan moeten ook in commentaar blijven. Fitnesspecialist was …
function basetheme_preprocess_html(&$vars) {
$vars['theme_folder'] = base_path() . path_to_theme();
// Function to cleanup html source a bit more
function indent($string) {
$spacing = " ";
$string = ltrim(str_replace('<link', $spacing . '<link', $string));
$string = ltrim(str_replace('<meta', $spacing . '<meta', $string));
$string = ltrim(str_replace('<script', $spacing . '<script', $string));
// $string = str_replace($_SERVER['HTTP_HOST'], '', $string);
// $string = str_replace('http://', '', $string);
return $string;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment