| 1 |
<h2><?php _e('Help & Documentation','fluentform');?></h2> |
| 2 |
<div class="ff_form_wrap wrap"> |
| 3 |
<div class="ff_documentaion_wrapper"> |
| 4 |
<?php do_action('fluentform_before_documentation_wrapper'); ?> |
| 5 |
|
| 6 |
<div class="ff_doc_top_blocks"> |
| 7 |
<div class="ff_block block_1_3"> |
| 8 |
<div class="ff_block_box text-center"> |
| 9 |
<img src="<?php echo $icon_path_url; ?>img/support.png" /> |
| 10 |
<h3>Need And Expert Support?</h3> |
| 11 |
<p>Our EXPERTS would like to assist you for your query and any customization.</p> |
| 12 |
<p><a target="_blank" class="button button-primary" href="https://wpfluentform.com/contact">Contact Support</a></p> |
| 13 |
</div> |
| 14 |
</div> |
| 15 |
<div class="ff_block block_1_3"> |
| 16 |
<div class="ff_block_box text-center"> |
| 17 |
<img src="<?php echo $icon_path_url; ?>img/bug.png" /> |
| 18 |
<h3>Found a Bug?</h3> |
| 19 |
<p>Please report us and we promise we will fix that as soon as humanly possible</p> |
| 20 |
<p><a target="_blank" class="button button-primary" href="https://github.com/fluentform/fluentform/issues">Report Bug on Github</a></p> |
| 21 |
</div> |
| 22 |
</div> |
| 23 |
<div class="ff_block block_1_3"> |
| 24 |
<div class="ff_block_box text-center"> |
| 25 |
<img src="<?php echo $icon_path_url; ?>img/love.png" /> |
| 26 |
<h3>Love this Plugin?</h3> |
| 27 |
<p>Please write a review in wp.org plugin repository. We appreciate it!</p> |
| 28 |
<p><a target="_blank" class="button button-primary" href="https://wordpress.org/support/plugin/fluentform/reviews/#new-post">Write Review</a></p> |
| 29 |
</div> |
| 30 |
</div> |
| 31 |
<div class="ff_block block_1_3"> |
| 32 |
<div class="ff_block_box"> |
| 33 |
<h3>User Guides</h3> |
| 34 |
<p>Please check the following <b>Tutorials and Documentation</b> for getting started with FluentForm</p> |
| 35 |
<ul> |
| 36 |
<?php foreach ($user_guides as $user_guide): ?> |
| 37 |
<li><a target="_blank" href="<?php echo $user_guide['link']; ?>"><?php echo $user_guide['title']; ?></a></li> |
| 38 |
<?php endforeach; ?> |
| 39 |
</ul> |
| 40 |
</div> |
| 41 |
</div> |
| 42 |
</div> |
| 43 |
|
| 44 |
<?php do_action('fluentform_after_documentation_wrapper') ?> |
| 45 |
|
| 46 |
</div> |
| 47 |
</div> |
| 48 |
|