02/24/2014 at 8:17 pm
#281005
Keymaster
@ jean
The likely issue is that the family relations drop downs are taking a really long time to render in the background of the browser. If you are not using the family entry type, you could remove the code that generates it.
Change the following two line:
echo $this->getEntrySelect( 'family_member[::FIELD::][entry_id]' , NULL , 'family-member-name' );
echo $this->buildSelect( 'family_member[::FIELD::][relation]', $connections->options->getDefaultFamilyRelationValues() , NULL , 'family-member-relation' );
To this:
//echo $this->getEntrySelect( 'family_member[::FIELD::][entry_id]' , NULL , 'family-member-name' );
//echo $this->buildSelect( 'family_member[::FIELD::][relation]', $connections->options->getDefaultFamilyRelationValues() , NULL , 'family-member-relation' );
They can be found here.
I hope that helps. Let me know.
