diff --git a/webroot/sites/all/modules/bqo/bqo_general/bqo_general.module b/webroot/sites/all/modules/bqo/bqo_general/bqo_general.module
index 62a68b3..3e11b25 100644
--- a/webroot/sites/all/modules/bqo/bqo_general/bqo_general.module
+++ b/webroot/sites/all/modules/bqo/bqo_general/bqo_general.module
@@ -107,7 +107,9 @@ function bqo_general_related_questions($text) {
   return $text;
 }
 
-// Get the facebook config settings from fblikebuttom module settings.
+/**
+ * Get the facebook config settings from fblikebuttom module settings.
+ */
 function bqo_general_get_fb_config() {
   $conf = array(
     'layout' => variable_get('fblikebutton_layout', 'standard'),
@@ -124,8 +126,10 @@ function bqo_general_get_fb_config() {
   return $conf;
 }
 
-// Add the like button html to the view as another property,
-// pull it off as needed.
+/**
+ * Add the like button html to the view as another property,
+ * pull it off as needed.
+ */
 function bqo_general_views_post_build(&$view) {
   if($view->name == 'essay_actions') {
     $conf = bqo_general_get_fb_config();
@@ -135,3 +139,10 @@ function bqo_general_views_post_build(&$view) {
     $view->fb_button = $fb_button;
   }
 }
+
+/**
+ * Implementation of hook_views_data_alter().
+ */
+function bqo_general_views_data_alter(&$data) {
+  dpm($data);
+}
diff --git a/webroot/sites/all/modules/search_api_solr/schema.xml b/webroot/sites/all/modules/search_api_solr/schema.xml
index 0971ef6..18e9c2c 100644
--- a/webroot/sites/all/modules/search_api_solr/schema.xml
+++ b/webroot/sites/all/modules/search_api_solr/schema.xml
@@ -178,6 +178,7 @@
                 enablePositionIncrements="true"
                 /> -->
         <charFilter class="solr.HTMLStripCharFilterFactory" />
+        <filter class="solr.EdgeNGramFilterFactory" minGramSize="3" maxGramSize="30" />
         <filter class="solr.WordDelimiterFilterFactory"
                 generateWordParts="1"
                 generateNumberParts="1"
diff --git a/webroot/sites/all/themes/bqo/template.php b/webroot/sites/all/themes/bqo/template.php
index 05134d8..b2391af 100644
--- a/webroot/sites/all/themes/bqo/template.php
+++ b/webroot/sites/all/themes/bqo/template.php
@@ -12,6 +12,12 @@ function bqo_preprocess_page(&$variables, $hook) {
   drupal_add_js(drupal_get_path('theme', 'bqo'). '/js/modernizr.custom.32975.js','file');
   $variables['header_image'] = bqo_header_image();
   $variables['header_login'] = bqo_header_login();
+  if (isset($variables['theme_hook_suggestions'])) {
+    if (in_array('page__node__comment', $variables['theme_hook_suggestions'])) {
+      //drupal_set_title($title = 'test', $output = CHECK_PLAIN);
+      //drupal_add_html_head(array('#title' => 'not at test'), $key = md5('null'));
+    }
+  }
 }
 
 /**
@@ -82,3 +88,27 @@ function bqo_preprocess_comment(&$variables) {
   $variables['moderator'] = $moderator;
   $variables['full_name'] = $full_name;
 }
+
+function bqo_preprocess_views_exposed_form(&$vars, $hook) {
+  //if ($data)
+  dpm($vars);
+  dpm($hook);
+  unset($vars['form']['sort_bef_combine']['#options']['created ASC']);
+  $vars['form']['sort_bef_combine']['created ASC']['#title'] = 'testytest';
+  $vars['form']['sort_bef_combine']['#options']['created DESC'] == 'Oldest';
+
+  unset($vars['form']['sort_bef_combine']['#options']['created_1 ASC']);
+  $vars['form']['sort_bef_combine']['#options']['created DESC'] == 'Most Recent';
+
+  unset($vars['form']['sort_bef_combine']['#options']['comment_count ASC']);
+  $vars['form']['sort_bef_combine']['#options']['comment_count DESC'] == 'Most Comments';
+
+  unset($vars['form']['sort_bef_combine']['#options']['comment ASC']);
+  $vars['form']['sort_bef_combine']['#options']['comment DESC'] == 'Active Now';
+  dpm($vars);
+
+}
+
+function bqo_preprocess_views_view(&$vars) {
+  dpm($vars);
+}
