Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    I have a related issue. I have recently installed the plugin and used it to migrate ACF content from a Dev site to Staging site. I have migrated around 20 quite complex posts (with custom page hierarchies) and its been highly successful. I was actually delighted to find that the media had also been migrated without be having to do anything.

    I then switched to a different custom post type and the media was not migrated.

    I’m a bit baffled as to why it would migrate some and not others. Can you explain?

    • This reply was modified 1 month, 4 weeks ago by ajroylance.

    I’m also trying to add this but I have complex code in the “Content” section. What am I doing wrong?

    <?php if( get_field('references') ): ?>
          <div class="box_conditions left">
    	<div id="title_references">References</div>
    	   <?php echo do_shortcode('[accordion clicktoclose="true"][accordion-item title="References"]	
    	<?php 
    	// check if the repeater field has rows of data
    	 if( have_rows('references') ):
    	// loop through the rows of data
    	while ( have_rows('references') ) : the_row();?>
    	<div class="col">
    	<div class="cell_ref"><?php the_sub_field('reference_name');?></div>
    	</div>								
    	<?php endwhile;?>
    	<?php else :
    		// no rows found
    	endif; ?>
    	[/accordion-item][/accordion]'); ?>
    	<?php endif; ?>
    • This reply was modified 6 years, 9 months ago by ajroylance.
Viewing 2 replies - 1 through 2 (of 2 total)