Quote:
Originally Posted by bosanci28
Testing this right now!
I thing i found, while posting ,at the entering the "keywords" if you try to put 2 words,will not let you !
It only works if i copy and paste "my city" then comma and the next keyword.
|
The normal for Tags and Keywords is: One word. Anyway try something that most probably will works. Edit Templates:
- mediagallery_search_block
- mediagallery_addedit (2 Times)
Change:
Code:
<script>
$(document).ready(function(){
$("#tags").tag({
width: '90%',
height: 50,
inputName: 's_keywords',
key: ['enter', 'space', 'comma'],
clickRemove: true
});
{vb:raw addtags}
});
</script>
To:
Code:
<script>
$(document).ready(function(){
$("#tags").tag({
width: '90%',
height: 50,
inputName: 's_keywords',
key: ['enter', 'comma'],
clickRemove: true
});
{vb:raw addtags}
});
</script>
Now when user hits spaces will not becomes tag. Tag should be after hitting Enter or Comma.