- Posts: 4
 - Thank you received: 0
 
            Support for SermonSpeaker 4.x is canceled as it is for Joomla 2.5. I will gladly assist you with minor issues but I will not fix any bugs anymore in this releases.
The fix is to upgrade to SermonSpeaker 5.x and Joomla 3.x, which is better anyway.
    
    The fix is to upgrade to SermonSpeaker 5.x and Joomla 3.x, which is better anyway.
Filter missing Book label
            
        
                26 Dec 2012 13:34         -  26 Dec 2012 13:36        #2824
        by Iasmin
    
    
    
            
            
            
            
                                
    
                                                
    
        Filter missing Book label was created by Iasmin            
    
        Hello there,
First of all I want to thank you for this great component! May God bless you!
I want to say that the Sermons table layout has a problem with the filter: it is missing the Book label and it puts the Book with the Date label.
This is what the file components/com_sermonspeaker/views/sermons/tmpl/table.php currently is in version 4.4.9:
This is what it should be:
Thank you and may God bless you guys!
Iasmin
    First of all I want to thank you for this great component! May God bless you!
I want to say that the Sermons table layout has a problem with the filter: it is missing the Book label and it puts the Book with the Date label.
This is what the file components/com_sermonspeaker/views/sermons/tmpl/table.php currently is in version 4.4.9:
Code:
			<div class="filter-select">
				<label class="filter-select-lbl" for="filter-select"><?php echo JText::_('COM_SERMONSPEAKER_FIELD_DATE_LABEL').' '; ?></label>
				<select name="book" id="filter_books" class="inputbox" onchange="this.form.submit()">
					<?php echo JHtml::_('select.options', $this->books, 'value', 'text', $this->state->get('scripture.book'), true);?>
				</select>
				<select name="month" id="filter_months" class="inputbox" onchange="this.form.submit()">
					<option value="0"><?php echo JText::_('COM_SERMONSPEAKER_SELECT_MONTH'); ?></option>
					
					<?php echo JHtml::_('select.options', $this->months, 'value', 'text', $this->state->get('date.month'), true);?>
				</select>
				<select name="year" id="filter_years" class="inputbox" onchange="this.form.submit()">
					<option value="0"><?php echo JText::_('COM_SERMONSPEAKER_SELECT_YEAR'); ?></option>
					<?php echo JHtml::_('select.options', $this->years, 'year', 'year', $this->state->get('date.year'), true);?>
				</select>
			</div>
This is what it should be:
Code:
			<div class="filter-select">
				<label class="filter-search-lbl" for="filter_books"><?php echo JText::_('COM_SERMONSPEAKER_BOOK').' '; ?></label>
				<select name="book" id="filter_books" class="inputbox" onchange="this.form.submit()">
					<?php echo JHtml::_('select.options', $this->books, 'value', 'text', $this->state->get('scripture.book'), true);?>
				</select>
				<label class="filter-select-lbl" for="filter-select"><?php echo JText::_('COM_SERMONSPEAKER_FIELD_DATE_LABEL').' '; ?></label>
				<select name="month" id="filter_months" class="inputbox" onchange="this.form.submit()">
					<option value="0"><?php echo JText::_('COM_SERMONSPEAKER_SELECT_MONTH'); ?></option>
					
					<?php echo JHtml::_('select.options', $this->months, 'value', 'text', $this->state->get('date.month'), true);?>
				</select>
				<select name="year" id="filter_years" class="inputbox" onchange="this.form.submit()">
					<option value="0"><?php echo JText::_('COM_SERMONSPEAKER_SELECT_YEAR'); ?></option>
					<?php echo JHtml::_('select.options', $this->years, 'year', 'year', $this->state->get('date.year'), true);?>
				</select>
			</div>
Thank you and may God bless you guys!
Iasmin
        Last edit: 26 Dec 2012 13:36  by Iasmin.        Reason: Added the file path    
            Please Log in or Create an account to join the conversation.
- Thomas Hunziker
 - 
            
                                 - Offline
 - Administrator
 - 
            
         
            
        
                26 Dec 2012 13:50                #2825
        by Thomas Hunziker
    
    
            
            
            
            
            
                                
    
                                                
    
        Replied by Thomas Hunziker on topic Filter missing Book label            
    
        Thank you!
I already found this myself shortly after I released 4.4.9, so it will be fixed in the next release.
    I already found this myself shortly after I released 4.4.9, so it will be fixed in the next release.
Please Log in or Create an account to join the conversation.
            
        
                26 Dec 2012 13:51                #2826
        by Iasmin
    
    
            
            
            
            
            
                                
    
                                                
    
        Replied by Iasmin on topic Filter missing Book label            
    
        Thank you!
May God bless you
    May God bless you
Please Log in or Create an account to join the conversation.
        Time to create page: 0.202 seconds