Help or hint icons not appearing nopCom 3.80

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Hace 7 años
I have updated the configure page of my plugin and changed all the <table><tr><td> tags for <div> using classes panel-group, panel panel-default, panel-body, form-group etc...

Installed all string resources ex: plugins.shipping.correios.user.hint and so for...

The labels appear normally but the blue help icons still do not appear.

Have another source that I need to see?
Hace 7 años
u need to set a Hint resource string for these fields

resource.field.Hint
Hace 7 años
Hi Hezyz,

Exactly, I have added all the resource strings for the plugin, go to Languages/resource strings and I made sure that all the hint language features were present.
But still so no hint icon appears, even using the same css styles that everyone uses.

     <div class="panel-group">
        <div class="panel panel-default">
            <div class="panel-body">
                <div class="form-group">
                    <div class="col-md-3">
                        @Html.NopLabelFor(model => model.Url)
                    </div>
                    <div class="col-md-9">
                        @Html.EditorFor(model => model.Url)
                        @Html.ValidationMessageFor(model => model.Url)
                    </div>
                </div>

plugins.shipping.correios.url  
plugins.shipping.correios.url.hint
plugins.shipping.correios.user  
plugins.shipping.correios.user.hint  
plugins.shipping.correios.aditionalshippingcost
plugins.shipping.correios.aditionalshippingcost.hint
plugins.shipping.correios.aditionalshippingcostusepercent
plugins.shipping.correios.aditionalshippingcostusepercent.hint
Hace 7 años
Use @Html.NopEditorFor

(and be sure your Model properties are decorated with NopResourceDisplayName- e.g.

        [NopResourceDisplayName("Plugins.YourPlugin.SomeName")][/b]
        public string SomeName{ get; set; }
Hace 7 años
Hi Hezyz,

Still not working...

NopLabelFor, NopEditorFor

[NopResourceDisplayName("URL")]

when discover I speak what was going on.

But thank you, with certainly the above is necessary.
Hace 7 años
? [NopResourceDisplayName("URL")] ?

Is "URL" the full (qualified) name of your resource?  And, is there an "URL.Hint" to go with it?
Hace 7 años
Hi New York,

Yes, the full qualified name is "URL" that's the name of data on model.
But all the other resources for the plugin have a .hint too and no hint icon is showed.
Hace 7 años
Hi New York,

I try to edit my last post but the time for that has expired...

You have reason, that is not the full qualified name of the resource, so the system show only the label e.g "URL".
I have use that plugin for years and forgot of nopCommerce evolution in this area too.

Thanks to All by the help.

Best Regards.

leodemario
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.