Hai, how can i remove/disable input box on user profile?
thank
I already solve this problem with this code...
First i go
oc-content/themes/stela/user-profile.php
Then i find this code at bottom of file above this line:
<?php osc_current_web_theme_path('footer.php') ; ?>
And i place following code
<script>
$("#s_name").attr('disabled','disabled');
$("#s_website").attr('disabled','disabled');
$("#s_phone_mobile").attr('disabled','disabled');
</script>
Thank you