Hackfut Security File Manager
Current Path:
/home/haielekt/pasangac.com/wp-content/plugins/chaty/views/admin
home
/
haielekt
/
pasangac.com
/
wp-content
/
plugins
/
chaty
/
views
/
admin
/
📁
..
📄
admin.php
(17.18 KB)
📄
channel.php
(65.39 KB)
📄
channels-section.php
(7.93 KB)
📄
chatway-notice.php
(12.05 KB)
📄
chatway-setting.php
(30.28 KB)
📄
chatway.php
(10.67 KB)
📄
chaty-admin-integration.php
(7.89 KB)
📄
chaty-deactivate-form.php
(8.48 KB)
📄
chaty-popup.php
(2.38 KB)
📄
chaty_widget.php
(4 KB)
📄
chatyway-info-popup.php
(18.24 KB)
📄
contact-form-feed.php
(19.78 KB)
📄
custom-tags.php
(9.18 KB)
📄
customize-widget-section.php
(67.53 KB)
📄
dashboard.php
(22.84 KB)
📄
email-signup.php
(16.9 KB)
📄
first-popup.php
(3.93 KB)
📄
help.php
(8.6 KB)
📄
install-chatway.php
(25.13 KB)
📄
popup.php
(17.19 KB)
📄
pro_analytics.php
(88.39 KB)
📄
recommended-plugins.php
(24.39 KB)
📄
review-popup.php
(16.65 KB)
📄
trigger-and-target.php
(48.24 KB)
📄
update.php
(8.35 KB)
📄
upgrade.php
(53.37 KB)
Editing: chaty_widget.php
<?php /** * Contact form leads * * @author : Premio <contact@premio.io> * @license : GPL2 * * */ if (defined('ABSPATH') === false) { exit; } $data = [ 'logo' => CHT_PLUGIN_URL . 'admin/assets/images/logo-color.svg', 'upgrade_url' => $this->getUpgradeMenuItemUrl(), 'upgrade_text' => esc_html__('Upgrade to Pro', 'chaty'), 'title' => esc_html__( 'Create a new Chaty widgets for your website. What can you use it for?', 'chaty' ), 'features' => array( [ 'logo' => CHT_PLUGIN_URL . "admin/assets/images/pro-devices.png", 'title' => esc_html__("Create separate designs for desktop and mobile", "chaty"), 'desc' => esc_html__("E.g. the mobile version can have a bigger widget, in a different color and a different position", "chaty") ], [ 'logo' => CHT_PLUGIN_URL . "admin/assets/images/pro-language.png", 'title' => esc_html__("Create separate designs for desktop and mobile", "chaty"), 'desc' => esc_html__("You can show different form and buttons based on URL (E.g. WhatsApp message to a French number and call your French phone number)", "chaty") ], [ 'logo' => CHT_PLUGIN_URL . "admin/assets/images/pro-widget.png", 'title' => esc_html__("Show separate widgets for different products", "chaty"), 'desc' => esc_html__("On your website (e.g. you can show the Facebook Messenger channel for products in the yourdomain.com/high-end/* category)", "chaty") ], [ 'logo' => CHT_PLUGIN_URL . "admin/assets/images/pro-page.png", 'title' => esc_html__("Display different channels for your landing pages", "chaty"), 'desc' => esc_html__("This way you can track the results better and have the right person assign to the relevant channel.", "chaty") ], [ 'logo' => CHT_PLUGIN_URL . "admin/assets/images/pro-support.png", 'title' => esc_html__("Show one widget on your support and contact pages", "chaty"), 'desc' => esc_html__("and a different widget on your sales pages.", "chaty") ], [ 'logo' => CHT_PLUGIN_URL . "admin/assets/images/pro-chat.png", 'title' => esc_html__("Display different call-to-action messages", "chaty"), 'desc' => esc_html__("for different pages on your website or separate call-to-action messages for mobile and desktop", "chaty") ] ) ] ?> <div class="container mt-6"> <a href="<?php echo esc_url( $this->getDashboardUrl() ) ?>"> <img src="<?php echo esc_url($data['logo']); ?>" alt="Chaty" class="logo"> </a> <header class="flex py-4 flex-col items-start sm:flex-row sm:justify-between"> <h2 class="font-primary text-cht-gray-150 text-[26px] font-semibold"> <?php echo esc_attr($data['title']) ?> </h2> <a class="btn text-base mt-3 sm:mt-0 rounded-lg font-normal border-cht-primary bg-cht-primary text-white drop-shadow-3xl" href="<?php echo esc_url($data['upgrade_url']); ?>"> <?php echo esc_attr($data['upgrade_text']) ?> </a> </header> <main> <div class="chaty-new-widget-row"> <ul class="grid grid-cols-1 sm:grid-cols-3 gap-5 mt-2"> <?php foreach( $data['features'] as $item ): ?> <li class="bg-white shadow-cht-gray-150/10 rounded-xl border border-solid border-gray-300 overflow-hidden"> <div class="p-5 border-b-4 border-cht-primary h-full"> <img class="mb-5" src="<?php echo esc_url($item['logo']) ?>"/> <h2 class="text-cht-gray-150 pb-3 font-semibold font-primary text-[18px]"><?php echo esc_attr($item['title']) ?></h2> <p class="text-sm font-primary font-normal text-[#49687ECC]"><?php echo esc_attr($item['desc']) ?></p> </div> </li> <?php endforeach; ?> </ul> </div> </main> </div>
Upload File
Create Folder