It is Wordfence that is preventing saving the form.
This code returns a “Forbidden” message with WordFence activated.
/*if ( is_numeric ( $thisrank ) ) :
$rank = 0;
foreach( get_cfc_meta( 'logotable', $post->ID ) as $key => $value ) :
$check = get_cfc_field( 'logotable','rank', false, $key );
if ( $check == $thisrank ) :
$rank = $check;
$img_obj = get_cfc_field( 'logotable','logo-image', false, $key );
$logo = '<img class="nobo aligncenter wp-image-' . $img_obj['id'] . ' size-full"
id="' . $img_obj['id'] . '"
src="' . $img_obj['sizes']['csm-logo-table'] . '"
height="' . $img_obj['height'] . '"
width="' . $img_obj['width'] . '"
alt="' . $img_obj['alt'] . '"
title="' . $img_obj['title'] .'" />';
endif;
endforeach;
if ( $rank != 0 ) :
$out = <<<EOD
<table class="alignleft nobo logotable" style="table-layout:fixed;width:374px;height:90px;">
<tbody>
<tr class="nobo">
<td class="nobo rank-number" style="font-size:67px;font-weight:bold;color:#000;width:134px;height:90px;line-height:90px;vertical-align: middle;">#$rank</td>
<td class="nobo rank-logo" style="width:240px;height:90px;vertical-align:middle;">$logo</td>
</tr>
</tbody>
</table><!-- .logotable -->
EOD;
else :
$out = <<<EOD
<table class="alignleft nobo logotable" style="table-layout:fixed;width:374px;height:90px;">
<tbody>
<tr class="nobo">
<td class="nobo rank-number" style="font-size:67px;font-weight:bold;color:#000;width:134px;height:90px;line-height:90x;vertical-align:middle;">Err</td>
<td class="nobo rank-logo" style="width:240px;height:90px;vertical-align:middle;">Requested rank value does not exist. Please add it in the editor.</td>
</tr>
</tbody>
</table><!-- .logotable -->
EOD;
endif; // $rank != 0
else :
$out = <<<EOD
<table class="alignleft nobo logotable" style="table-layout:fixed;width:314px;height:110px;">
<tbody>
<tr class="nobo">
<td class="nobo rank-number" style="font-size:67px;font-weight:bold;color:#000;width:134px;height:90px;line-height:90px;vertical-align:middle;">Err</td>
<td class="nobo rank-logo" style="width:240px;height:90px;vertical-align:middle;">Rank must be numeric.</td>
</tr>
</tbody>
</table><!-- .logotable -->
EOD;
endif; //is_numeric($thisrank) */
Here is the Wordfence setting token
fae10262e6faf3ed80613a2e5d84af2f0966b75a7d5b003c48abba25d7f3e314da73948d290d8dd90e2dff22e85e92ab147baea4299b03dbc6270bfcb99146f8