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
1 year 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
wpmart-plugins.php
28 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">WpMart Plugins</h1> |
| 9 | </div> |
| 10 | </div> |
| 11 | |
| 12 | <script> |
| 13 | jQuery.getJSON('https://demo.tcsesoft.com/plugins/', function(data) { |
| 14 | let htmlCode = ''; |
| 15 | for(let i = 0; i < data.length; i++) { |
| 16 | htmlCode += ` |
| 17 | <div class="isimb-6310-col-3"> |
| 18 | <div class="isimb-6310-wpmart-plugins"> |
| 19 | <a href="${data[i].url}" target="_blank"> |
| 20 | <img src="${data[i].image}" alt="${data[i].title}" class="isimb-image-responsive"> |
| 21 | <p>${data[i].title}</p> |
| 22 | </a> |
| 23 | </div> |
| 24 | </div>`; |
| 25 | } |
| 26 | jQuery('.isimb-6310-wpmart-all-plugins').after(htmlCode); |
| 27 | }); |
| 28 | </script> |