PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.0
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.0
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/views/addons/list.php +8 -12 6.35.0 View file →
@@ -42,23 +42,19 @@
42 42 <div id="the-list" class="frm-addons">
43 43 <?php foreach ( $addons as $slug => $addon ) { ?>
44 44 <div class="frm-card plugin-card-<?php echo esc_attr( $slug ); ?> frm-no-thumb frm-addon-<?php echo esc_attr( $addon['status']['type'] ); ?>">
45 45 <div class="plugin-card-top">
46 + <?php if ( strtotime( $addon['released'] ) > strtotime( '-90 days' ) ) { ?>
47 + <div class="frm_ribbon">
48 + <span>New</span>
49 + </div>
50 + <?php } ?>
46 51 <h2>
47 - <?php
48 - echo esc_html( $addon['title'] );
49 -
50 - if ( ! empty( $addon['is_new'] ) ) {
51 - FrmAppHelper::show_pill_text();
52 - }
53 - ?>
52 + <?php echo esc_html( $addon['title'] ); ?>
54 53 </h2>
55 54 <p>
56 - <?php
57 - echo FrmAppHelper::kses( $addon['excerpt'], array( 'a' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
58 -
59 - $show_docs = isset( $addon['docs'] ) && ! empty( $addon['docs'] ) && $addon['installed'];
60 - ?>
55 + <?php echo esc_html( $addon['excerpt'] ); ?>
56 + <?php $show_docs = isset( $addon['docs'] ) && ! empty( $addon['docs'] ) && $addon['installed']; ?>
61 57 <?php if ( $show_docs ) { ?>
62 58 <br/><a href="<?php echo esc_url( $addon['docs'] ); ?>" target="_blank" aria-label="<?php esc_attr_e( 'View Docs', 'formidable' ); ?>">
63 59 <?php esc_html_e( 'View Docs', 'formidable' ); ?>
64 60 </a>