I have created some fields that are visible on the record, but not in the profile. But when I go into the profile, I can see them and change them.
They can be viewed, but not make them editable?
image attached
jQuery(document).ready(function($)
{
$('#member-registration,#member-profile').submit(function() {
var tot = 0;
if ($("[name ='jform[pregunta-1]']:checked").length)
tot += parseInt($("[name ='jform[pregunta-1]']:checked").val());
if ($("[name ='jform[pregunta-2]']:checked").length)
tot += parseInt($("[name ='jform[pregunta-2]']:checked").val());
if ($("[name ='jform[pregunta-3]']:checked").length)
tot += parseInt($("[name ='jform[pregunta-3]']:checked").val());
$("[name ='jform[sumatotal]']").val(tot);
alert(val);
});
});
jQuery(document).ready(function($)
{
$('#member-registration,#member-profile').submit(function() {
var tot = 0;
if ($("[name ='jform[pregunta-1]']:checked").length)
tot += parseInt($("[name ='jform[pregunta-1]']:checked").val());
if ($("[name ='jform[pregunta-2]']:checked").length)
tot += parseInt($("[name ='jform[pregunta-2]']:checked").val());
if ($("[name ='jform[pregunta3]']:checked").length)
tot += parseInt($("[name ='jform[pregunta3]']:checked").val());
$("[name ='jform[sumatotal]']").val(tot);
alert(tot);
});
});