Closed aliciacatalina closed 8 years ago
I had a similar problem and tracked it to a line in MetaBox.php that uses jQuery's :first selector.
$('[class*=docopy-]').click(function(e) { ... var the_group = $('.wpa_group-'+ the_name +':first.tocopy', p); ... }
I changed the line to use jQuery filter instead as follows: var the_group = $('.wpa_group-'+ the_name +'.tocopy', p).filter(':first');
Disco!
cleaning old issues .. if this is still an issue please reopen
I am deploying my Wordpress site to a Google App Engine, and the repeat field stopped working. I have this on my meta-page.php <?php global $wpalchemy_media_access; ?>
the_field('datos'); ?> the_field('url'); ?> setGroupName('media-n1'.$mb->get_the_index())->setInsertButtonLabel('Insertar')->setTab('type'); ?> getField(array('name'=>$mb->get_the_name(),'value'=>$mb->get_the_value(),'readonly'=>'readonly')); ?> getButton(array('label'=>'Adjuntar un archivo')); ?>
the_group_close(); ?>Eliminar campos
Add More