The screen shot at the end of the previous response references this file which is the "field options" for the modified slider module. . I asked how to make these fields editable or remove them and got the reply below.
Again, I am sort of struggling thru this because the support literally takes eons and still requires digging to know how to follow the directives. For me, anyway. So if anyone figures out some exact step-by-step directions to edit the css and module files, that would be great.
Because we have a default configuration in the module
to remove it outside the site please follow these steps
Please go to templates\sj_elisting\html\mod_sj_sobipro_extraslider\default.php find code:
<?php
$field_arr = array($params->get('field_area', 'field_area'), $params->get('field_bathrooms','field_bathrooms'),$params->get('field_bedrooms', 'field_bedrooms'), $params->get('field_garage', 'field_garage') );
if(!empty($field_arr)) {
foreach($field_arr as $field){
if(!empty($field)){
echo '<div class="'.$entry->getField($field)->get('cssClass').'">';
echo '<strong>' .$entry->getField($field)->get('name').'</strong>: ';
echo SPExtraSliderHelper::_getFieldValues($entry, $field);
echo $entry->getField($field)->get('suffix') .'</div> ';
}
}
}
?>
=> edit to:
<?php
/*
$field_arr = array($params->get('field_area', 'field_area'), $params->get('field_bathrooms','field_bathrooms'),$params->get('field_bedrooms', 'field_bedrooms'), $params->get('field_garage', 'field_garage') );
if(!empty($field_arr)) {
foreach($field_arr as $field){
if(!empty($field)){
echo '<div class="'.$entry->getField($field)->get('cssClass').'">';
echo '<strong>' .$entry->getField($field)->get('name').'</strong>: ';
echo SPExtraSliderHelper::_getFieldValues($entry, $field);
echo $entry->getField($field)->get('suffix') .'</div> ';
}
}
}
*/
?>