Codefix
Forum Replies Created
-
Thank you for your replay @sazdhossain.
I think a CAPTCHA should work but I have to test it and I’m working on it to see why they created as vendors.It’s done, thank you for your support.
It worked perfectly thanks.
Hello, I had the same problem and I figured out the WPML Compatibility is one of the pro features of this plugin so in order to translate the stings with WPML you have to buy the pro version.
Forum: Plugins
In reply to: [Directory Listings WordPress plugin - uListing] html box issueOk I found the problem.
It’s a BUG and for fixing it we have to edit 2 files first one is ‘textarea-field.js’ in “assets/js/admin/src/components/listing-types/tabs/builder/control-panel” plugins directory and in that file find this code:<div class="form-group"> <label class="ulisting-checkbox"> <input type="checkbox" :true-value="1" :false-value="0" v-model="data[field.name]" /> <span></span> {{field.label}} </label> </div>
AND REPLACE IT WITH THIS CODE:
<div class="form-group"> <label>{{field.label}}</label> <textarea class="form-control" v-model="data[field.name]"></textarea> </div>
and save the file.
The second file as ‘app.js’ in ‘assets/js/admin/dist’ plugins directory and in that file find this CODE:"textarea-field":{data:function(){return{}},mounted:function(){},methods:{},props:{id:{default:0},data:{default:""},field:{default:""}},watch:{data:function(t){this.$emit("input",t)}},template:'\n\t\t<div class="form-group">\n\t\t\t<label class="ulisting-checkbox">\n\t\t\t\t<input type="checkbox" :true-value="1" :false-value="0" v-model="data[field.name]" />\n\t\t\t\t<span></span>\n\t\t\t\t{{field.label}}\n\t\t\t</label>\n\t\t</div>\n\t'}
AND REPLACE IT WITH THIS CODE:
"textarea-field":{data:function(){return{}},mounted:function(){},methods:{},props:{id:{default:0},data:{default:""},field:{default:""}},watch:{data:function(t){this.$emit("input",t)}},template:'\n\t\t<div class="form-group">\n\t\t\t<label>{{field.label}}</label>\n\t\t\t\t<textarea class="form-control" v-model="data[field.name]"></textarea>\n\t\t</div>\n\t'}
AND SAVE THE FILE.
I hope the developer team fix this problem in the next update.Thanks for the replay @champsupertramp.
I know that I can change the redirection in the user role setting but I want to redirect user to the page that he/she was visiting before registration like “refresh active page” option in login section is there any option for that?