04/22/2015 at 9:07 am
#332058
Keymaster
@ Sam
If you are adding $entry->getContentBlock( ‘fields-id’ ); you are explicitly adding it to the template and should not matter what you have setup in the options. The options will only affect this line; $entry->getContentBlock( $atts['content'], $atts, $template );
That said, it should still show… there’s only one other thing I can think of, did you change the action hook name which displays the content block? The original line of code is:
add_action( 'cn_output_meta_field-income_level', array( __CLASS__, 'block' ), 10, 4 );
I’m guessing you need it to be based on what you said above:
add_action( 'cn_output_meta_field-fields-id', array( __CLASS__, 'block' ), 10, 4 );
