PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.32.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.32.1
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
formidable / classes / views / frm-settings / settings_cta.php

settings_cta.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.32.1, at classes/views/frm-settings/settings_cta.php

24 lines 832 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5 ?>
6 <div id="frm-dismissable-cta" class="frm-modal settings-lite-cta" style="margin-top: 40px;">
7 <div class="postbox" style="border:none;">
8 <div class="inside">
9 <a href="#" class="dismiss" style="position:absolute;z-index:999;right: calc(var(--gap-md) + 8px);top:calc(var(--gap-md) + 12px);" title="<?php esc_attr_e( 'Dismiss this message', 'formidable' ); ?>">
10 <?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => 'Dismiss' ) ); ?>
11 </a>
12
13 <div class="cta-inside">
14 <?php
15 if ( ! FrmAppHelper::pro_is_installed() ) {
16 $dashboard_helper = FrmDashboardController::get_dashboard_helper();
17 $dashboard_helper->get_bottom_widget();
18 }
19 ?>
20 </div>
21 </div>
22 </div>
23 </div>
24