css
2 years ago
add-point-html.php
2 years ago
builder.php
2 years ago
edit-point-html.php
2 years ago
form.php
2 years ago
how-to-use.php
2 years ago
import-export-plugins.php
2 years ago
nested-point.php
2 years ago
plugin-settings.php
2 years ago
save.php
2 years ago
template-settings.php
2 years ago
wpmart-plugins.php
2 years ago
how-to-use.php
60 lines
| 1 | <?php |
| 2 | if (!defined('ABSPATH')) |
| 3 | exit; |
| 4 | |
| 5 | ?> |
| 6 | <div class="isimb-6310"> |
| 7 | <div class="isimb-6310-row isimb-6310-row-plugins"> |
| 8 | <h1 class="isimb-6310-wpmart-all-plugins">Plugins Reference Video</h1> |
| 9 | </div> |
| 10 | </div> |
| 11 | |
| 12 | <script> |
| 13 | jQuery.getJSON('https://demo.tcsesoft.com/plugins/isimb.php', function(data) { |
| 14 | let htmlCode = ''; |
| 15 | for(let i = 0; i < data.length; i++) { |
| 16 | htmlCode += ` |
| 17 | <div class="isimb-6310-help-section"> |
| 18 | <div class="isimb-6310-wpmart-plugins-video"> |
| 19 | <i class="fas fa-film"></i><a href="${data[i].url}" target="_blank">${data[i].title}</a> |
| 20 | </div> |
| 21 | </div>`; |
| 22 | } |
| 23 | jQuery('.isimb-6310-wpmart-all-plugins').after(htmlCode); |
| 24 | }); |
| 25 | </script> |
| 26 | <style> |
| 27 | h1.isimb-6310-wpmart-all-plugins { |
| 28 | color: chocolate !important; |
| 29 | font-size: 30px; |
| 30 | } |
| 31 | .isimb-6310-help-section{ |
| 32 | width: 100%; |
| 33 | display: inline; |
| 34 | float: left; |
| 35 | margin: 8px 30px; |
| 36 | font-size: 14px; |
| 37 | } |
| 38 | .isimb-6310-wpmart-plugins-video{ |
| 39 | background-color: transparent; |
| 40 | } |
| 41 | .isimb-6310-wpmart-plugins-video i{ |
| 42 | float: left; |
| 43 | padding-right: 5px; |
| 44 | font-size: 21px; |
| 45 | color: #009097; |
| 46 | } |
| 47 | .isimb-6310-wpmart-plugins-video a { |
| 48 | text-decoration: none; |
| 49 | float: left; |
| 50 | margin: 0; |
| 51 | padding: 0; |
| 52 | color: #2c2e1d94; |
| 53 | font-weight: 600; |
| 54 | |
| 55 | } |
| 56 | .isimb-6310-wpmart-plugins-video a:hover { |
| 57 | color: #027f85; |
| 58 | } |
| 59 | |
| 60 | </style> |