| 1 |
<?php do_action('fluentform_global_menu'); ?> |
| 2 |
<div class="ff_form_wrap"> |
| 3 |
<div class="ff_form_wrap_area"> |
| 4 |
<h2><?php _e('Help & Documentation', 'fluentform'); ?></h2> |
| 5 |
<div class="ff_documentaion_wrapper"> |
| 6 |
<?php do_action('fluentform_before_documentation_wrapper'); ?> |
| 7 |
|
| 8 |
<div class="ff_doc_top_blocks"> |
| 9 |
<div class="ff_block block_1_3"> |
| 10 |
<div class="ff_block_box text-center"> |
| 11 |
<img src="<?php echo $icon_path_url; ?>img/support.png"/> |
| 12 |
<h3>Need Expert Support?</h3> |
| 13 |
<p>Our EXPERTS would like to assist you for your query and any customization.</p> |
| 14 |
<p><a target="_blank" class="button button-primary" |
| 15 |
href="https://wpmanageninja.com/support-tickets/">Contact |
| 16 |
Support</a></p> |
| 17 |
</div> |
| 18 |
</div> |
| 19 |
<div class="ff_block block_1_3"> |
| 20 |
<div class="ff_block_box text-center"> |
| 21 |
<img src="<?php echo $icon_path_url; ?>img/fb_group.png"/> |
| 22 |
<h3>Join our facebook community</h3> |
| 23 |
<p>We have a strong community where we discuss ideas and help each other.</p> |
| 24 |
<p><a target="_blank" class="button button-primary" |
| 25 |
href="https://www.facebook.com/groups/fluentforms/"> |
| 26 |
Join Facebook Group</a></p> |
| 27 |
</div> |
| 28 |
</div> |
| 29 |
<div class="ff_block block_1_3"> |
| 30 |
<div class="ff_block_box text-center"> |
| 31 |
<img src="<?php echo $icon_path_url; ?>img/bug.png"/> |
| 32 |
<h3>Found a Bug?</h3> |
| 33 |
<p>Please report us and we promise we will fix that as soon as humanly possible</p> |
| 34 |
<p><a target="_blank" class="button button-primary" |
| 35 |
href="https://github.com/fluentform/fluentform/issues">Report Bug on Github</a></p> |
| 36 |
</div> |
| 37 |
</div> |
| 38 |
</div> |
| 39 |
<div class="ff_doc_top_blocks"> |
| 40 |
<div class="ff_block block_2_3"> |
| 41 |
<div class="ff_block_box text-center"> |
| 42 |
<h2>Fluent Forms Video Tutorials</h2> |
| 43 |
<div class="videoWrapper"> |
| 44 |
<iframe width="1280" height="720" src="https://www.youtube.com/embed/M_r-4Ernjj0?list=PLXpD0vT4thWG7KlcCpGWDSs0t6Wvs7xIJ" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
| 45 |
</div> |
| 46 |
</div> |
| 47 |
</div> |
| 48 |
|
| 49 |
<div class="ff_block block_1_3"> |
| 50 |
<div class="ff_block_box text-center"> |
| 51 |
<img src="<?php echo $icon_path_url; ?>img/love.png"/> |
| 52 |
<h3>Love this Plugin?</h3> |
| 53 |
<p>Please write a review in wp.org plugin repository. We appreciate it!</p> |
| 54 |
<p><a target="_blank" class="button button-primary" |
| 55 |
href="https://wordpress.org/support/plugin/fluentform/reviews/#new-post">Write Review</a> |
| 56 |
</p> |
| 57 |
</div> |
| 58 |
<div style="margin-top: 20px;" class="ff_block_box"> |
| 59 |
<h3>User Guides</h3> |
| 60 |
<p>Please check the following <b>Tutorials and Documentations</b> for getting started with |
| 61 |
Fluent Form</p> |
| 62 |
<ul> |
| 63 |
<?php foreach ($user_guides as $user_guide): ?> |
| 64 |
<li><a target="_blank" |
| 65 |
href="<?php echo $user_guide['link']; ?>"><?php echo $user_guide['title']; ?></a> |
| 66 |
</li> |
| 67 |
<?php endforeach; ?> |
| 68 |
</ul> |
| 69 |
</div> |
| 70 |
</div> |
| 71 |
</div> |
| 72 |
|
| 73 |
<?php do_action('fluentform_after_documentation_wrapper') ?> |
| 74 |
|
| 75 |
</div> |
| 76 |
</div> |
| 77 |
</div> |
| 78 |
|