| 1 |
<?php |
| 2 |
/** |
| 3 |
* The template for Currencies conversion presentation. |
| 4 |
* |
| 5 |
* This is the template for currencies conversion presentation |
| 6 |
* |
| 7 |
*/ |
| 8 |
|
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
exit; // Exit if accessed directly. |
| 11 |
} |
| 12 |
?> |
| 13 |
<!-- This file should primarily consist of HTML with a little bit of PHP. --> |
| 14 |
|
| 15 |
<div class="wrap wdk-wrap"> |
| 16 |
<h1 class="wp-heading-inline"><?php echo __('How to change currency?', 'wpdirectorykit'); ?></h1> |
| 17 |
<p class="presentation-desc">Currency is just prefix/suffix on related price field in wpdirectorykit plugin.</p> |
| 18 |
<p class="presentation-desc">Dashboard->Directory Kit->Fields->Edit sale price or rent price and change suffix/prefix</p> |
| 19 |
|
| 20 |
<br /> |
| 21 |
<img class="presentation-image" src="<?php echo WPDIRECTORYKIT_URL; ?>admin/img/change_currency.jpg" /> |
| 22 |
<br /><br /> |
| 23 |
<a href="https://wpdirectorykit.com/documentation/" class="button button-primary xl" target="_blank"><?php echo __('Please check also other documentation guides', 'wpdirectorykit'); ?></a> |
| 24 |
<br /><br /> |
| 25 |
<a href="https://www.youtube.com/channel/UCTO1oMn1NOO8sJVUeaDytIA" class="button button-primary xl" target="_blank"><?php echo __('Or video tutorials on YouTube', 'wpdirectorykit'); ?></a> |
| 26 |
<br /> |
| 27 |
</div> |
| 28 |
|
| 29 |
|
| 30 |
<script> |
| 31 |
jQuery(document).ready(function($) { |
| 32 |
|
| 33 |
}) |
| 34 |
</script> |
| 35 |
|
| 36 |
<style> |
| 37 |
|
| 38 |
img.presentation-image |
| 39 |
{ |
| 40 |
max-width:600px; |
| 41 |
max-height:600px; |
| 42 |
} |
| 43 |
|
| 44 |
h2 |
| 45 |
{ |
| 46 |
font-size: 25px; |
| 47 |
color: #010b44; |
| 48 |
} |
| 49 |
|
| 50 |
p.presentation-desc |
| 51 |
{ |
| 52 |
padding:5px 0px; |
| 53 |
margin:0px; |
| 54 |
font-size: 18px; |
| 55 |
} |
| 56 |
|
| 57 |
a.image-link |
| 58 |
{ |
| 59 |
display: inline-block; |
| 60 |
border: 3px solid white; |
| 61 |
} |
| 62 |
|
| 63 |
a.image-link:hover |
| 64 |
{ |
| 65 |
border: 3px solid #506690; |
| 66 |
} |
| 67 |
|
| 68 |
</style> |
| 69 |
|
| 70 |
<?php $this->view('general/footer', $data); ?> |