Closed (fixed)
Project:
Semantic Views
Version:
6.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
13 Feb 2012 at 15:17 UTC
Updated:
15 Apr 2017 at 00:35 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
drupal_was_my_past commentedThis is also true for 7.x-1.x-dev version. semanticviews-view-fields.tpl.php shouldn't have the colon hardcoded in, but should respect the Views "Place a colon after the label" setting under "Create a label".
Comment #2
jiddisch commentedHow can I remove the colon without jQuery?
Edited:
My solution was to copy semanticviews-view-fields.tpl.php from the module folder to my theme folder, and removed the colon from line 41.
Comment #3
rogerrogers commented#2 is a good temporary work-around.
Comment #4
martijn de witit also applies to version 7.x
my solution:
Make a copy of semanticviews-view-fields.tpl.php and replace a code line
replace:
<?php print $field->label; ?>:with this:
<?php print $field->label; ?><?php if ($field->handler->options['element_label_colon']): ?>:<?php endif; ?>Comment #5
martijn de witpatch for 7.X branch
Comment #6
martijn de witComment #7
immoreel commentedHey Hi,
I made a new patch, the one from Martijn de Wit wasn't relative to the module folder
Comment #8
martijn de wit@immoreel thnx! Sorry didn't notice it :)
Comment #10
Scyther commentedFixed for 7.x-1.x version. Still need fix for 6.x-1.x
Comment #11
Scyther commentedFixed in D6 version also