PluginProbe ʕ •ᴥ•ʔ
Popup Builder & Popup Maker for WordPress – OptinMonster Email Marketing and Lead Generation / 2.16.5
Popup Builder & Popup Maker for WordPress – OptinMonster Email Marketing and Lead Generation v2.16.5
2.16.24 trunk 2.13.8 2.14.0 2.14.1 2.15.0 2.15.1 2.15.2 2.15.3 2.16.0 2.16.1 2.16.10 2.16.11 2.16.12 2.16.13 2.16.14 2.16.15 2.16.16 2.16.17 2.16.18 2.16.19 2.16.2 2.16.20 2.16.21 2.16.22 2.16.3 2.16.4 2.16.5 2.16.6 2.16.7 2.16.8 2.16.9
optinmonster / views / disable-warning-css.php
optinmonster / views Last commit date
archie-loading.php 5 years ago constantcontact.php 4 years ago coupon-metabox.php 4 years ago disable-warning-css.php 4 years ago inline-campaign-shortcode-modal.php 4 years ago install-plugin-form.php 3 years ago jiggle-css.php 5 years ago logo.svg 5 years ago monsterlink-campaign-shortcode-modal.php 4 years ago not-connected-buttons.php 4 years ago plugin-banner.php 4 years ago product-metabox.php 4 years ago seedprod-settings-page.php 3 years ago shortcode-modal-css.php 4 years ago shortcode-modal.php 4 years ago trustpulse-banner.php 4 years ago trustpulse-settings-page.php 3 years ago upgrade-link-css.php 4 years ago woocommerce-marketing-card-css.php 5 years ago woocommerce-marketing-card.php 5 years ago
disable-warning-css.php
34 lines
1 <?php
2 /**
3 * CSS to override default message for
4 *
5 * @since 2.2.0
6 */
7
8 if ( empty( $data->labels->singular_name ) ) {
9 return;
10 }
11
12 $message = sprintf(
13 /* translators: %s - The name of the post-type being edited. */
14 esc_attr__( 'OptinMonster campaigns have been disabled for this %s', 'optin-monster-api' ),
15 $data->labels->singular_name
16 );
17
18 $message2 = sprintf(
19 /* translators: %s - The name of the post-type being edited. */
20 esc_attr__( 'Campaigns disabled for this %s', 'optin-monster-api' ),
21 $data->labels->singular_name
22 );
23
24 /*
25 * Double selectors added for extra specificity (instead of using !important)
26 */
27 ?>
28 body.om-campaigns-disabled.om-campaigns-disabled [data-type="optinmonster/campaign-selector"]:before {
29 content: '<?php echo esc_attr( $message ); ?>';
30 }
31 body.om-campaigns-disabled.om-campaigns-disabled .om-format-popover .components-popover__content:after {
32 content: '<?php echo esc_attr( $message2 ); ?>';
33 }
34