Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
sobrenome Posted May 26, 2015 Posted May 26, 2015 I would like to add a description to the Title filed, just like the one on Tags field. Which would be the easiest way to do it?
Subzero-mb Posted June 3, 2015 Posted June 3, 2015 I think this is not possible. You want to submit a new topic in your forum with Title, tags, description and post? What is the sense to do that? Where do you want to display this description? In the topic itself or in the list of topics of this subforum?
opentype Posted June 3, 2015 Posted June 3, 2015 He just wants a description in the form itself. There is one for tags, but not for the title field.
Subzero-mb Posted June 3, 2015 Posted June 3, 2015 Sorry @sobrenome I did not understand you. Do that is not so complicate it. In the ACP go to "Customization - Themes - Your theme" and select the template "Text" inside of "core - global - forms". Then you have to look inside of the template for this code: {{if isset( $autoComplete['desc'] )}} <span class='ipsFieldRow_desc'> {$autoComplete['desc']|raw} </span> {{endif}} and change it for this one: {{if isset( $autoComplete['desc'] )}} <span class='ipsFieldRow_desc'> {$autoComplete['desc']|raw} </span> {{else}} <span class='ipsFieldRow_desc'> Title description for sobrenome </span> {{endif}} Of course you can put a language variable instead to write directly the description in the template. This is the result:
sobrenome Posted June 3, 2015 Author Posted June 3, 2015 Is there a way to test the field to make sure that it is the title field?And what if I want to add a Font Awsome icon (?) beside the form fields to trigger a modal window on click to explain better how to fill the field with the best pratices?thanks a lot!
Subzero-mb Posted June 3, 2015 Posted June 3, 2015 Yes it is a way. You are right, the way I gave you put the description not only in the title field but also in another inputs like password and username in the ACP lol With this code the description will appear just in the title field:{{if isset( $autoComplete['desc'] )}} <span class='ipsFieldRow_desc'> {$autoComplete['desc']|raw} </span> {{elseif $name == 'topic_title'}} <span class='ipsFieldRow_desc'> Title description for sobrenome </span> {{endif}}Regarding the icon (?) with the modal I am sure you can do it, you just need to include the icon and the href after the description, but I am not sure about the code to display the modal, maybe some colleague...
sobrenome Posted June 3, 2015 Author Posted June 3, 2015 Very nice! For field description, that's perfect!But still don't know how to add html after certain form field. I preffer to add the icon beside the form field instead of beside the description.
Subzero-mb Posted June 4, 2015 Posted June 4, 2015 Here you have it (last time, next one you should try it haha) {{$valueAsArray = is_array( $value ) ? $value : explode( ',', $value );}} {{if ( isset( $autoComplete['freeChoice'] ) && !$autoComplete['freeChoice'] ) || ( isset( $autoComplete['prefix'] ) and $autoComplete['prefix'] ) }} <div {{if isset( $autoComplete['freeChoice'] ) && !$autoComplete['freeChoice']}}class="ipsJS_show"{{endif}} {{if isset( $autoComplete['prefix'] ) and $autoComplete['prefix']}}data-controller='core.global.core.prefixedAutocomplete'{{endif}}> {{endif}} {{if $name == 'topic_title'}}HTML Before{{endif}} <input type="{$type}" name="{$name}" value="{{if is_array( $value )}}{expression="implode( ',', $value )"}{{else}}{$value}{{endif}}" id="elInput_{{if ! empty($htmlId)}}{$htmlId}{{else}}{$name}{{endif}}" {{if $required === TRUE}}aria-required='true'{{endif}} {{if $maxlength !== NULL}}maxlength="{$maxlength}"{{endif}} {{if $size !== NULL}}size="{$size}"{{endif}} {{if $disabled}}disabled aria-disabled='true'{{endif}} {{if $autoComplete !== NULL}} data-ipsAutocomplete {{if isset( $autoComplete['freeChoice'] ) && !$autoComplete['freeChoice']}}data-ipsAutocomplete-freeChoice='false'{{endif}} {{if isset( $autoComplete['forceLower'] ) && $autoComplete['forceLower']}}data-ipsAutocomplete-forceLower{{endif}} {{if isset( $autoComplete['maxItems'] )}}data-ipsAutocomplete-maxItems='{$autoComplete['maxItems']}'{{endif}} {{if !empty($autoComplete['unique'])}} data-ipsAutocomplete-unique {{endif}} {{if isset($autoComplete['source']) AND is_array( $autoComplete['source'] )}} list='{$name}_datalist' {{elseif !empty($autoComplete['source'])}} data-ipsAutocomplete-dataSource="{url="{$autoComplete['source']}"}" data-ipsAutocomplete-queryParam='input' {{endif}} {{if !empty($autoComplete['resultItemTemplate'])}} data-ipsAutocomplete-resultItemTemplate="{$autoComplete['resultItemTemplate']}" {{endif}} {{if isset( $autoComplete['minLength'] )}}data-ipsAutocomplete-minLength='{$autoComplete['minLength']}'{{endif}} {{if isset( $autoComplete['maxLength'] )}}data-ipsAutocomplete-maxLength='{$autoComplete['maxLength']}'{{endif}} {{if isset( $autoComplete['minAjaxLength'] )}}data-ipsAutocomplete-minAjaxLength='{$autoComplete['minAjaxLength']}'{{endif}} {{endif}} {{if $placeholder !== NULL}}placeholder='{$placeholder}'{{endif}} {{if $regex !== NULL}}pattern="{$regex}"{{endif}} > {{if $name == 'topic_title'}}HTML After{{endif}} This is at the beggining of the same template "Text", you can see there where you can include html after or before. Here you have the result: Send me one beer ticket by mail
sobrenome Posted June 4, 2015 Author Posted June 4, 2015 LolYou deserve more than a beer!I am very anxious to upgrade my community to IPS 4, but there are a few bugs in Pages yet that do not allow me.Thank you very much for helping me to provide a better user experience for my visitors.
sobrenome Posted June 5, 2015 Author Posted June 5, 2015 Unfortunately the description text does not lie under the form field, but beside it: If there is a loop searching for descriptions related to form fields, it must have a way to add new descriptions to other fields without changing the template, but feeding some table on database. Is that correct?
Subzero-mb Posted June 5, 2015 Posted June 5, 2015 For this problem simply include a <br/> before the title description or incude the description between <p> </p> Regarding the loop you are right, but I also don't know where to include these descriptions in the ACP
sobrenome Posted June 5, 2015 Author Posted June 5, 2015 Should be nice if someone from IPS could give us a hint so the implementation would be easier and less invasive, making the enviroment more relible in upgrades.
Ahmad E. Posted June 5, 2015 Posted June 5, 2015 Should be nice if someone from IPS could give us a hint so the implementation would be easier and less invasive, making the enviroment more relible in upgrades.So far I know you can only import language strings with a plugin/app.See the attached plugin it does really nothing except for adding one language string which is the topic title description.Open the .xml file in an editor and change This is a test topic titleto the topic title description that you want, after that install the plugin.I'm not too sure if there is another way of importing language strings but this should work fine until all the docs are pushed out. Import Lang.xml
sobrenome Posted June 6, 2015 Author Posted June 6, 2015 Ok, this way I will create a language string. But I still have to change the template to show it, right?
Ahmad E. Posted June 6, 2015 Posted June 6, 2015 Ok, this way I will create a language string. But I still have to change the template to show it, right?nope, you shouldn't have to do anything else than importing it
Recommended Posts
Archived
This topic is now archived and is closed to further replies.