PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.5.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.5.4
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/applications/header.php +17 -8 6.5.15.5.4 View file →
@@ -4,9 +4,9 @@
4 4 }
5 5 ?>
6 6 <div id="frm_top_bar">
7 7 <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable' ) ); ?>" class="frm-header-logo">
8 - <?php FrmAppHelper::show_header_logo(); ?>
8 + <?php FrmAppHelper::show_header_logo(); ?>
9 9 </a>
10 10 <div id="frm_bs_dropdown">
11 11 <h1>
12 12 <span>
@@ -11,16 +11,25 @@
11 11 <h1>
12 12 <span>
13 13 <?php echo esc_html( $title ); ?>
14 14 </span>
15 + <?php do_action( 'frm_applications_header_inside_title_after_span', $context ); ?>
15 16 </h1>
16 - </div>
17 - <div id="frm-publishing">
18 - <?php do_action( 'frm_applications_header_inside_title_after_span', $context ); ?>
19 - <?php do_action( 'frm_applications_header_after_title', $context ); ?>
20 17 <?php if ( 'index' === $context && ! FrmAppHelper::pro_is_installed() ) { ?>
21 - <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'header' ) ); ?>" class="button button-secondary frm-button-secondary">
22 - <?php esc_html_e( 'Upgrade', 'formidable' ); ?>
23 - </a>
18 + <?php
19 + FrmAddonsController::show_conditional_action_button(
20 + array(
21 + 'addon' => false,
22 + 'upgrade_link' => FrmAppHelper::admin_upgrade_link(
23 + array(
24 + 'medium' => 'applications-header',
25 + 'content' => 'applications',
26 + )
27 + ),
28 + )
29 + );
30 + ?>
24 31 <?php } ?>
32 + <?php do_action( 'frm_applications_header_after_title', $context ); ?>
25 33 </div>
34 + <div style="clear: both;"></div>
26 35 </div>