CategoryCard.jsx
4 days ago
FAQs.jsx
4 days ago
PaidSupport.jsx
4 days ago
SearchBox.jsx
4 days ago
SupportForum.jsx
4 days ago
TicketModal.jsx
4 days ago
Videos.jsx
4 days ago
SupportForum.jsx
58 lines
| 1 | /** |
| 2 | * External Dependencies |
| 3 | */ |
| 4 | import { __ } from '@wordpress/i18n'; |
| 5 | |
| 6 | /** |
| 7 | * Internal Dependencies |
| 8 | */ |
| 9 | import { Card } from '@admin/components/Card'; |
| 10 | |
| 11 | export function SupportForum() { |
| 12 | const p1 = __( |
| 13 | 'Upgrade to <strong>A2 Pro</strong> to get:', |
| 14 | 'advanced-ads' |
| 15 | ); |
| 16 | |
| 17 | return ( |
| 18 | <Card className="advads-card bg-gray-100 flex flex-col"> |
| 19 | <div> |
| 20 | <h3 className="mt-0 mb-2"> |
| 21 | { __( 'Need more help?', 'advanced-ads' ) } |
| 22 | </h3> |
| 23 | <p> |
| 24 | { __( |
| 25 | 'On the free plan, support is available via guides and community forums.', |
| 26 | 'advanced-ads' |
| 27 | ) } |
| 28 | </p> |
| 29 | <p dangerouslySetInnerHTML={ { __html: p1 } } /> |
| 30 | <ul className="list-disc list-inside"> |
| 31 | <li> |
| 32 | { __( |
| 33 | 'Priority support from our team', |
| 34 | 'advanced-ads' |
| 35 | ) } |
| 36 | </li> |
| 37 | <li> |
| 38 | { __( |
| 39 | 'Help directly inside the plugin', |
| 40 | 'advanced-ads' |
| 41 | ) } |
| 42 | </li> |
| 43 | <li>{ __( 'Faster issue resolution', 'advanced-ads' ) }</li> |
| 44 | </ul> |
| 45 | </div> |
| 46 | |
| 47 | <div className="mt-auto"> |
| 48 | <a |
| 49 | href="https://wpadvancedads.com/checkout/?edd_action=add_to_cart&download_id=95170&utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_need_help_upgrade" |
| 50 | className="button advads-button-secondary is-block mt-6" |
| 51 | > |
| 52 | { __( 'Upgrade to Premium', 'advanced-ads' ) } |
| 53 | </a> |
| 54 | </div> |
| 55 | </Card> |
| 56 | ); |
| 57 | } |
| 58 |