Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion classes/views/frm-forms/add_field_links.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,16 @@
<a href="#" class="frm_add_field frm_animate_bg" title="<?php echo esc_attr( $field_label ); ?>">
<?php FrmAppHelper::icon_by_class( FrmFormsHelper::get_field_link_icon( $field_type ) ); ?>
<span><?php echo esc_html( $field_label ); ?></span>
<?php
if ( 'credit_card' === $field_key && ! FrmTransLiteAppHelper::payments_table_exists() ) {
FrmAppHelper::show_pill_text();
}
?>
</a>
</li>
<?php
unset( $field_key, $field_type );
}
}//end foreach
?>
</ul>
<div class="clear"></div>
Expand Down
4 changes: 4 additions & 0 deletions css/frm_admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -3019,6 +3019,10 @@ body.frm-body-with-open-modal {
vertical-align: text-bottom;
}

.frm_add_field span + .frm-meta-tag {
margin-left: 0;
}

Comment thread
Crabcyborg marked this conversation as resolved.
/* Start entry statuses */
.frm-entry-status {
font-weight: 500;
Expand Down