alert-coming-soon.php
12 lines
| 1 | <?php |
| 2 | |
| 3 | ?> |
| 4 | <div class="pro__alert__wrap"> |
| 5 | <div class="pro__alert__card"> |
| 6 | <img src="<?php echo EMBEDPRESS_SETTINGS_ASSETS_URL; ?>img/alert.svg" alt=""> |
| 7 | <h2><?php esc_html_e( "Opps...", "embedpress" ); ?></h2> |
| 8 | <p><?php printf( __( 'This feature is coming soon to the <a href="%s" target="_blank">Premium</a> Version', "embedpress" ), 'https://wpdeveloper.com/in/upgrade-embedpress'); ?></p> |
| 9 | <a href="#" class="button radius-10"><?php esc_html_e( "Close", "embedpress" ); ?></a> |
| 10 | </div> |
| 11 | </div> |
| 12 |