support.php (1769B)
1 <?php 2 /** 3 * Support section. 4 * 5 * @package Meta Box 6 */ 7 8 ?> 9 <div id="support" class="gt-tab-pane"> 10 <p class="about-description"> 11 <?php 12 $allowed_html = array( 13 'a' => array( 14 'href' => array(), 15 ), 16 ); 17 // Translators: %s - link to documentation. 18 echo wp_kses( sprintf( __( 'Still need help with Meta Box? We offer excellent support for you. But don\'t forget to check our <a href="%s">documentation</a> first.', 'meta-box' ), 'https://docs.metabox.io?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ), $allowed_html ); 19 ?> 20 </p> 21 <div class="two"> 22 <div class="col"> 23 <h3><?php esc_html_e( 'Free Support', 'meta-box' ); ?></h3> 24 <p><?php esc_html_e( 'If you have any question about how to use the plugin, please open a new topic on WordPress.org support forum or open a new issue on Github (preferable). We will try to answer as soon as we can.', 'meta-box' ); ?><p> 25 <p><a class="button" target="_blank" href="https://github.com/wpmetabox/meta-box/issues"><?php esc_html_e( 'Go to Github', 'meta-box' ); ?> →</a></p> 26 <p><a class="button" target="_blank" href="https://wordpress.org/support/plugin/meta-box"><?php esc_html_e( 'Go to WordPress.org', 'meta-box' ); ?> →</a></p> 27 </div> 28 29 <div class="col"> 30 <h3><?php esc_html_e( 'Premium Support', 'meta-box' ); ?></h3> 31 <p><?php esc_html_e( 'For users that have bought premium extensions, the support is provided in the Meta Box Support forum. Any question will be answered with technical details within 24 hours.', 'meta-box' ); ?><p> 32 <p><a class="button" target="_blank" href="https://metabox.io/support/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Go to support forum', 'meta-box' ); ?> →</a></p> 33 </div> 34 </div> 35 </div>