Shop
Browse premium products and latest releases.
Showing 4 results
Who Read The Post?
We are excited to announce the release of the Who Read The Post plugin for DataLife Engine! This powerful new plugin enhances your website by connecting to your database and displaying a list of users who have read the of your posts. .user_list > span { margin: 0 3px 3px 0; } .user_list > span, .user_list > span > a { display: inline-block; } .user_list > span > a { color: inherit; text-decoration: none !important; padding: 5px 10px; border-radius: 6px; background-color: #f0f0f0; } .user_list > .list { color: inherit; text-decoration: none !important; padding: 5px 10px; border-radius: 6px; background-color: #f0f0f0; } .user_list > .list:hover { cursor: pointer; background-color: #fff; color: #95c00e; position: relative; box-shadow: 0 3px 20px 0 rgba(0,0,0,0.2); -webkit-box-shadow: 0 3px 20px 0 rgba(0,0,0,0.2); } .user_list > span > a:hover { background-color: #fff; color: #95c00e; position: relative; box-shadow: 0 3px 20px 0 rgba(0,0,0,0.2); -webkit-box-shadow: 0 3px 20px 0 rgba(0,0,0,0.2); } For Example: <div class="user_list"> <span>Read by:</span> {readers} </div> <span>User List With Link:</span> <div class="user_list"> {readers_link} </div>
Price
20 ₾
ShowMore Gallery
This plugin helps you replace the standard xfieldimagegallery with jаvascript Load More gallery After Install Plugin Go https://site.com/admin.php?mod=gallery // and use your configurtions After go main.tpl and head of your templates paste <script src="{THEME}/ticcix/js/showMoreItems.js"></script> <link rel="stylesheet" href="{THEME}/ticcix/css/style.css"> Up </body> paste {showgallery} After Go fullstory.tpl And paste <div class="list gallery"> [xfvalue_X] // X your xfilds </div>
Price
Free
UIAvatar
This plugin for DLE allows you and your users to change avatars using https://ui-avatars.com/ api Use this code in userinfo.tpl so that the user can change the parameters {ui-avatar} Use this code in our other temoplates file via see user avatar. {include file="engine/modules/ticcix/avatar/show.php"} {include file="engine/modules/ticcix/avatar/show.php?userName=Ticcix&color=303030&background=eaeaea&size=100&rounded=true&format=svg"} Us userName It\'s username color your text color background your background size image size rounded false or true format png or svg
Price
Free
Simple Chatbot
Simple Chatbot using PHP with MySQL & jQuery (Ajax) A chatbot is a computer program designed to simulate human conversation. These chatbots reply to you instantly according to your queries because programmers have inserted thousands of inputs/replies/queries into the database that can be asked by the user. To make an advanced chatbot we’ve to code more and more but I tried to make a simple chatbot with few lines of codes and queries which help you to get an idea about how chatbot actually works. In this Plugin [Simple Chatbot using PHP], on the webpage, there is a chat form with an input field and a button labeled as “send” for typing a message and send to the bot. When you ask something to the bot and that query exists in the database then the bot replay a message according to your query instantly but if your query not matched to the database queries then the bot replays a message labeled as “Sorry can’t be able to understand you!”. In this chatting process, the webpage isn’t reloaded because I used jQuery (Ajax) for that. Instalation Paste in main.tpl Before <body> <link href="{THEME}/chatbot/css/style.css" type="text/css" rel="stylesheet"> <script src=\'{THEME}/chatbot/js/wafloatbox-0.2.js\'></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" /> Paste in main.tpl Before </body> <div class="myk-wa"> </div> <script> $(document).ready(function(){ $(".myk-wa").WAFloatBox(); }); </script> <script> $(document).ready(function(){ $("#send-btn").on("click", function(){ $value = $("#data").val(); $msg = \'<div class="user-inbox inbox"><div class="msg-header"><p>\'+ $value +\'</p></div></div>\'; $(".form").append($msg); $("#data").val(\'\'); // start ajax code $.ajax({ url: \'message.php\', type: \'POST\', dаta: \'text=\'+$value, success: function(result){ $replay = \'<div class="bot-inbox inbox"><div class="icon"><i class="fa fa-user"></i></div><div class="msg-header"><p>\'+ result +\'</p></div></div>\'; $(".form").append($replay); // when chat goes down the scroll bar automatically comes to the bottom $(".form").scrollTop($(".form")[0].scrollHeight); } }); }); }); </script>
Price
Free