Browse Source

feat:add new files

igb 4 months ago
parent
commit
92e036bed2

+ 59 - 1
app/Helpers/SiteCache.php

@@ -3,9 +3,11 @@
 namespace App\Helpers;
 
 use Illuminate\Support\Facades\Cache;
+use Illuminate\Support\Facades\Request; // 引入 Request 类
 use App\Models\DistAdminDistributor;
 use App\Models\DistAppearance;
 use App\Models\DistAppearancePublishList;
+use App\Services\MenuService;
 
 class SiteCache
 {
@@ -22,10 +24,19 @@ class SiteCache
             return null; // 如果未传入域名,返回 null
         }
 
+        self::checkAndClearCache($domain, 'dist'); // 检查是否需要清缓存
+
         return Cache::tags([$domain, 'dist'])->remember("dist_{$domain}", $seconds, function () use ($domain) {
             $dist= DistAdminDistributor::findByDomain($domain);
 
-            if($dist['appearance_id'])
+            // 检查 $dist 是否为 null
+            if (!$dist)
+            {
+                // 如果找不到 $dist,返回 null 或其他默认值
+                return null;
+            }
+
+            if (!empty($dist['appearance_id']))
             {
                 $dist['appearance'] = DistAppearance::getTemplateById($dist['appearance_id']);
                 $dist['publishList'] = DistAppearancePublishList::findByDistAndAppearance($dist['id'], $dist['appearance_id']);
@@ -146,4 +157,51 @@ class SiteCache
     {
         Cache::tags([$domain, $type])->flush(); // 清除该域名下特定类型的缓存
     }
+
+
+    /**
+     * 获取多级菜单(支持缓存)
+     *
+     * @param int $seconds 缓存时间(秒)
+     * @return array
+     */
+    public static function getMenu(string $domain, int $dist_id=0,int $seconds = 300): array
+    {
+        // 检查 URL 是否需要清除菜单缓存
+        self::checkAndClearCache($domain, 'menu'); // 检查是否需要清缓存
+
+        // 使用缓存存储和获取多级菜单
+        return  Cache::tags([$domain, 'menu'])->remember('menu', $seconds, function () use ($dist_id) {
+            $menuService = new MenuService();
+            return $menuService->getMultiLevelMenu($dist_id);
+        });
+    }
+
+    /**
+     * 清除多级菜单缓存
+     *
+     * @return void
+     */
+    public static function clearMenuCache(?string $domain = null): void
+    {
+        Cache::tags([$domain,'menu'])->forget(); // 清除该域名下特定类型的缓存
+    }
+    /**
+     * 检查 URL 是否包含清缓存参数并执行清除操作
+     *
+     * @param string|null $domain
+     * @param string $type 缓存类型(如 'dist', 'product', 'article' 等)
+     * @param int|null $id 相关 ID(可选)
+     * @return void
+     */
+    public static function checkAndClearCache(?string $domain, string $type, ?int $id = null): void
+    {
+        if (Request::has('__clear_cache') && Request::input('__clear_cache') == 1) {
+            if ($id) {
+                self::clearSpecificTypeCache($domain, "{$type}_{$id}");
+            } else {
+                self::clearSpecificTypeCache($domain, $type);
+            }
+        }
+    }
 }

+ 20 - 0
app/Helpers/helpers.php

@@ -85,3 +85,23 @@ if (!function_exists('formatAndCreateAbsoluteDirectory')) {
     }
 }
 
+if (!function_exists('generateOrderNumber')) {
+    /**
+     * 生成唯一订单号
+     *
+     * @param string $prefix 订单号前缀(可选,默认为 'ORD')
+     * @return string
+     */
+    function generateOrderNumber($prefix = 'ORD') {
+        // 获取当前日期和时间
+        $date = date('YmdHis'); // 年月日时分秒
+
+        // 生成一个随机的两位数
+        $randomNumber = mt_rand(10, 99);
+
+        // 拼接前缀、日期时间和随机数
+        $orderNumber = $prefix . $date . $randomNumber;
+
+        return $orderNumber;
+    }
+}

+ 2 - 1
app/Http/Controllers/ContactController.php

@@ -46,7 +46,8 @@ class ContactController extends Controller
             // 指定特殊字段的值
             $data['dist_id'] = 0; // app('dist')->id; // 指定当前登录的分销商ID
             $data['referer_url']=$request->headers->get('referer'); // 获取上一页的URL
-
+            $data['ip_address'] = $request->ip(); // 获取用户IP地址
+            $data['order_number']= generateOrderNumber('ORD');
             // 使用模型的 create 方法插入数据
             $distInquiry = DistInquiry::create($data);
 

+ 4 - 3
app/Http/Controllers/ProductController.php

@@ -36,9 +36,10 @@ class ProductController extends Controller
         // 获取分类信息
         $category = DistProductCategory::findOrFail($slug);
 
-        // 获取分类下的所有产品,并进行分页
-        $products = DistProduct::where('category_id', $category->id)->paginate(10);
-
+        // 获取分类下的所有产品,并按 is_pinned 排序,然后进行分页
+        $products = DistProduct::where('category_id', $category->id)
+            ->orderBy('is_pinned', 'desc') // 按 is_pinned 降序排序
+            ->paginate(12);
 
         // 渲染模板并传递数据
         return $this->liquidRenderer->render('products_categories.liquid', [

+ 3 - 2
app/Http/Middleware/LoadDistData.php

@@ -56,10 +56,11 @@ class LoadDistData
         // 全局共享  数据
         app()->instance('dist', $dist);
         // 将找到的 dist 数据添加到请求中,方便后续使用
-        $request->attributes->set('dist', $dist);
+        //$request->attributes->set('dist', $dist);
 
+        $menus=SiteCache::getMenu($domain,$dist->id);
+        app()->instance('menus', $menus);
 
-        //保存到共享地方供其它地方用
 
         return $next($request);
     }

+ 12 - 0
app/Models/SiteMenu.php

@@ -0,0 +1,12 @@
+<?php
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class SiteMenu extends Model
+{
+    protected $table = 'site_menu';
+
+
+}

+ 4 - 0
app/Providers/AppServiceProvider.php

@@ -14,6 +14,10 @@ class AppServiceProvider extends ServiceProvider
         //添加自定义辅助函数
         require_once __DIR__ . '/../Helpers/helpers.php';
 
+        $this->app->singleton(MenuService::class, function ($app) {
+            return new MenuService();
+        });
+
     }
 
     /**

+ 1 - 0
app/Services/LiquidRenderer.php

@@ -107,6 +107,7 @@ class LiquidRenderer
             'asset_base_url' =>config('liquid.asset_base_url'),
             'font_base_url' => config('liquid.font_base_url'),
             'dist' => app('dist'),
+            'menus'=>app('menus'),
         ];
     }
 }

+ 44 - 0
app/Services/MenuService.php

@@ -0,0 +1,44 @@
+<?php
+
+namespace App\Services;
+
+use App\Models\SiteMenu;
+
+class MenuService
+{
+    /**
+     * 获取多级菜单
+     *
+     * @return array
+     */
+    public function getMultiLevelMenu(int $dist_id = 0): array
+    {
+        // 一次性加载所有菜单项
+        $menus = SiteMenu::where('show', 1) // 只显示状态为 1 的菜单
+            ->where('dist_id', $dist_id)
+        ->orderBy('order', 'asc')
+            ->get();
+
+        // 构造多级菜单
+        return $this->buildMenuTree($menus);
+    }
+
+    /**
+     * 递归构造菜单树
+     *
+     * @param \Illuminate\Database\Eloquent\Collection $menus
+     * @param int $parentId
+     * @return array
+     */
+    private function buildMenuTree($menus, $parentId = 0): array
+    {
+        $menuTree = [];
+        foreach ($menus as $menu) {
+            if ($menu->parent_id == $parentId) {
+                $menu->children = $this->buildMenuTree($menus, $menu->id);
+                $menuTree[] = $menu->toArray();
+            }
+        }
+        return $menuTree;
+    }
+}

+ 58 - 0
public/static/css/main.min.css

@@ -22038,3 +22038,61 @@ pre {
 .icons-holder .mobile {
     font-size: 34px
 }
+/* 设置图片默认样式 */
+.default-image-thumbnail {
+    display: block;
+    width: 100%;
+    height: 200px;
+    background-color: #d9d9d9; /* 灰色背景 */
+    border: none; /* 去掉边框 */
+    outline: none; /* 去掉点击时的外框 */
+    object-fit: cover; /* 按比例裁剪 */
+    object-position: center; /* 确保裁剪的内容居中 */
+}
+.no-image-placeholder-thumbnail {
+    width: 100%;
+    height: 200px;
+    background-color: #e0e0e0;
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    color: #555;
+}
+
+
+/* 设置图片默认样式 */
+.default-image-thumbnail-small {
+    display: block;
+    width: 100%;
+    height: 120px;
+    background-color: #d9d9d9; /* 灰色背景 */
+    border: none; /* 去掉边框 */
+    outline: none; /* 去掉点击时的外框 */
+    object-fit: cover; /* 按比例裁剪 */
+    object-position: center; /* 确保裁剪的内容居中 */
+}
+
+
+.no-image-placeholder-thumbnail-small {
+    width: 100%;
+    height: 120px;
+    background-color: #e0e0e0;
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    color: #555;
+}
+
+.no-image-logo-thumbnail {
+   width: 130px;
+    height: 50px;
+    background-color: #e0e0e0;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    color: #555;
+    font-size: 14px;
+}
+
+
+

+ 12 - 5
resources/views/liquid/1/TechVista/__product_list_1.liquid

@@ -5,10 +5,17 @@
 
     <div class="col-lg-4">
         <div class="block product no-border z-depth-2-top z-depth-2--hover">
-            <div class="block-image">
+            <div class="block-image ">
                 <a  href="/products/{{ item.id }}" target="_blank" >
-                    {% comment %}<img src="static/picture/img-1.png" class="img-center">{% endcomment %}
-                    <img src="{{ site.image_base_url }}{{ item.images[0].image_url }}?x-oss-process=image/resize,m_lfit,h_200" class="img-center">
+
+                    {% if item.images and item.images[0].image_url %}
+                        <img src="{{ site.image_base_url }}{{ item.images[0].image_url | append: '?x-oss-process=image/resize,m_lfit,h_200' }}"
+                             class="img-center default-image-thumbnail">
+                    {% else %}
+                        <div class="img-center default-image-thumbnail no-image-placeholder-thumbnail">
+                            <span>No Image</span>
+                        </div>
+                    {% endif %}
                 </a>
                 <span class="product-ribbon product-ribbon-right product-ribbon--style-1 bg-blue text-uppercase">New</span>
             </div>
@@ -16,11 +23,11 @@
             <div class="block-body text-center">
                 <h3 class="heading heading-5 strong-600 text-capitalize">
                     <a  href="/products/{{ item.id }}" target="_blank" >
-                        {{ item.title }}
+                        {{ item.title | strip_html }}
                     </a>
                 </h3>
                 <p class="product-description">
-                    {{ item.content }}
+                    {{ item.content | strip_html | truncate: 20 | default: "No description " }}
                 </p>
                 {% comment %}<div class="product-colors mt-2">{% endcomment %}
                     {% comment %}<div class="color-switch float-wrapper">{% endcomment %}

+ 31 - 412
resources/views/liquid/1/TechVista/_header.liquid

@@ -6,155 +6,13 @@
         <div class="container">
             <div class="row">
                 <div class="col-md-6">
-            	{% comment %}<span class="aux-text d-none d-md-inline-block">{% endcomment %}
-                    {% comment %}<ul class="inline-links inline-links--style-1">{% endcomment %}
-                        {% comment %}<li class="d-none d-lg-inline-block">{% endcomment %}
-						{% comment %}Mobile Phone Accessories Wholesale supplier - Mietubl      </li>{% endcomment %}
-                        {% comment %}<li>{% endcomment %}
-                            {% comment %}<i class="fa fa-envelope"></i>{% endcomment %}
-                            {% comment %}<a href="#">support@Mietubl.com</a>{% endcomment %}
-                        {% comment %}</li>{% endcomment %}
-                    {% comment %}</ul>{% endcomment %}
-                {% comment %}</span>{% endcomment %}
+
                 </div>
 
                 <div class="col-md-6">
                     <nav class="top-navbar-menu">
                         <ul class="top-menu">
-                            {% comment %}<li><a href="#">Sign in</a></li>{% endcomment %}
-                            {% comment %}<li><a href="#">Create account</a></li>{% endcomment %}
-                            {% comment %}<li><a href="#" data-toggle="global-search"><i class="fa fa-search"></i></a></li>{% endcomment %}
-                            {% comment %}<li class="dropdown">{% endcomment %}
-                            {% comment %}<a href="#">{% endcomment %}
-                            {% comment %}<i class="fa fa-shopping-cart"></i>{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}<ul class="sub-menu">{% endcomment %}
-                            {% comment %}<li>{% endcomment %}
-                            {% comment %}<div class="dropdown-cart px-0">{% endcomment %}
-                            {% comment %}<div class="dc-header">{% endcomment %}
-                            {% comment %}<h3 class="heading heading-6 strong-600">Cart</h3>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}<div class="dc-item">{% endcomment %}
-                            {% comment %}<div class="d-flex align-items-center">{% endcomment %}
-                            {% comment %}<div class="dc-image">{% endcomment %}
-                            {% comment %}<a href="#">{% endcomment %}
-                            {% comment %}<img src="/static/picture/img-1a.png" class="img-fluid" alt="">{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}<div class="dc-content">{% endcomment %}
-                            {% comment %}<span class="d-block dc-product-name text-capitalize strong-600 mb-1">{% endcomment %}
-                            {% comment %}<a href="#">{% endcomment %}
-                            {% comment %}Wood phone case{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}</span>{% endcomment %}
-                            {% comment %}{% endcomment %}
-                            {% comment %}<span class="dc-quantity">x2</span>{% endcomment %}
-                            {% comment %}<span class="dc-price">$50.00</span>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}<div class="dc-actions">{% endcomment %}
-                            {% comment %}<button>{% endcomment %}
-                            {% comment %}<i class="ion-close"></i>{% endcomment %}
-                            {% comment %}</button>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}{% endcomment %}
-                            {% comment %}<div class="dc-item">{% endcomment %}
-                            {% comment %}<div class="d-flex align-items-center">{% endcomment %}
-                            {% comment %}<div class="dc-image">{% endcomment %}
-                            {% comment %}<a href="#">{% endcomment %}
-                            {% comment %}<img src="/static/picture/img-2a.png" class="img-fluid" alt="">{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}<div class="dc-content">{% endcomment %}
-                            {% comment %}<span class="d-block dc-product-name text-capitalize strong-600 mb-1">{% endcomment %}
-                            {% comment %}<a href="#">{% endcomment %}
-                            {% comment %}Leather bag{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}</span>{% endcomment %}
-                            {% comment %}{% endcomment %}
-                            {% comment %}<span class="dc-quantity">x1</span>{% endcomment %}
-                            {% comment %}<span class="dc-price">$250.00</span>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}<div class="dc-actions">{% endcomment %}
-                            {% comment %}<button>{% endcomment %}
-                            {% comment %}<i class="ion-close"></i>{% endcomment %}
-                            {% comment %}</button>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}{% endcomment %}
-                            {% comment %}<div class="dc-item">{% endcomment %}
-                            {% comment %}<div class="d-flex align-items-center">{% endcomment %}
-                            {% comment %}<div class="dc-image">{% endcomment %}
-                            {% comment %}<a href="#">{% endcomment %}
-                            {% comment %}<img src="/static/picture/img-3a.png" class="img-fluid" alt="">{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}<div class="dc-content">{% endcomment %}
-                            {% comment %}<span class="d-block dc-product-name text-capitalize strong-600 mb-1">{% endcomment %}
-                            {% comment %}<a href="#">{% endcomment %}
-                            {% comment %}Brown leather wallet{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}</span>{% endcomment %}
-                            {% comment %}{% endcomment %}
-                            {% comment %}<span class="dc-quantity">x1</span>{% endcomment %}
-                            {% comment %}<span class="dc-price">$99.00</span>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}<div class="dc-actions">{% endcomment %}
-                            {% comment %}<button>{% endcomment %}
-                            {% comment %}<i class="ion-close"></i>{% endcomment %}
-                            {% comment %}</button>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}<div class="dc-item py-4">{% endcomment %}
-                            {% comment %}<span class="subtotal-text">Subtotal</span>{% endcomment %}
-                            {% comment %}<span class="subtotal-amount">$450.00</span>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}<div class="py-4 text-center">{% endcomment %}
-                            {% comment %}<ul class="inline-links inline-links--style-3">{% endcomment %}
-                            {% comment %}<li class="pr-3">{% endcomment %}
-                            {% comment %}<a href="#" class="link link--style-2 text-capitalize">{% endcomment %}
-                            {% comment %}<i class="ion-person"></i> My account{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}</li>{% endcomment %}
-                            {% comment %}<li class="pr-3">{% endcomment %}
-                            {% comment %}<a href="#" class="link link--style-1 text-capitalize">{% endcomment %}
-                            {% comment %}<i class="ion-bag"></i> View cart{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}</li>{% endcomment %}
-                            {% comment %}<li>{% endcomment %}
-                            {% comment %}<a href="#" class="link link--style-1 text-capitalize">{% endcomment %}
-                            {% comment %}<i class="ion-forward"></i> Checkout{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}</li>{% endcomment %}
-                            {% comment %}</ul>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                            {% comment %}</li>{% endcomment %}
-                            {% comment %}</ul>{% endcomment %}
-                            {% comment %}</li>{% endcomment %}
-                            {% comment %}<li class="aux-languages dropdown">{% endcomment %}
-                            {% comment %}<a href="#">{% endcomment %}
-                            {% comment %}<img src="/static/picture/ro.png">{% endcomment %}
-                            {% comment %}</a>{% endcomment %}
-                            {% comment %}<ul id="auxLanguages" class="sub-menu">{% endcomment %}
-                            {% comment %}<li>{% endcomment %}
-                            {% comment %}<a href="#"><span class="language">German</span></a>{% endcomment %}
-                            {% comment %}</li>{% endcomment %}
-                            {% comment %}<li>{% endcomment %}
-                            {% comment %}<span class="language language-active">English</span>{% endcomment %}
-                            {% comment %}</li>{% endcomment %}
-                            {% comment %}<li>{% endcomment %}
-                            {% comment %}<a href="#"><span class="language">Greek</span></a>{% endcomment %}
-                            {% comment %}</li>{% endcomment %}
-                            {% comment %}<li>{% endcomment %}
-                            {% comment %}<a href="#"><span class="language">Spanish</span></a>{% endcomment %}
-                            {% comment %}</li>{% endcomment %}
-                            {% comment %}</ul>{% endcomment %}
-                            {% comment %}</li>{% endcomment %}
-                            {% comment %}<li><a href="#" class="btn-st-trigger" data-effect="st-effect-1"><i class="fa fa-ellipsis-h"></i></a></li>{% endcomment %}
+
                         </ul>
                     </nav>
                 </div>
@@ -189,9 +47,11 @@
 
 
                 {% if site.dist.logo %}
-                    <img src="{{ site.image_base_url }}{{ site.dist.logo }}" alt="Cover Image">
+                    <img src="{{ site.image_base_url }}{{ site.dist.logo }}" alt="logo" class="" alt="mtb" style="height: 50px;">
                 {% else %}
-                    <img src="/static/images/logo.svg" class="" alt="mtb" style="height: 50px;">
+                    <div class="logo-placeholder no-image-logo-thumbnail">
+                        No Logo
+                    </div>
                 {% endif %}
 
             </a>
@@ -219,276 +79,35 @@
                 </div>
 
                 <!-- Navbar links -->
-                <ul class="navbar-nav">
-                    <li class="nav-item dropdown megamenu">
-                        <a class="nav-link" href="/">
-                            Home
-                        </a>
-                    </li>
-                    <li class="nav-item dropdown">
-                        <a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-                            Products
-                        </a>
 
-                        <div class="dropdown-menu dropdown-menu-xl py-0 px-0 overflow--hidden" aria-labelledby="navbar_1_dropdown_1">
-                            <div class="list-group rounded">
-                                <a href="/products/categories/1" class="list-group-item list-group-item-action d-flex align-items-center">
-                                    <div class="list-group-content">
-                                        <div class="list-group-heading heading heading-6 mb-1">Category 1</div>
-                                        <p class="text-sm mb-0">Category 1</p>
-                                    </div>
-                                </a>
-
-                                <a href="/products/categories/2" class="list-group-item list-group-item-action d-flex align-items-center">
-                                    <div class="list-group-content">
-                                        <div class="list-group-heading heading heading-6 mb-1">Category 2</div>
-                                        <p class="text-sm mb-0">Category 2</p>
+    <!-------------menus--------------->
+                <ul class="navbar-nav">
+                    {% for menu in site.menus %}
+                        <li class="nav-item dropdown {% if menu.children and menu.children.size == 0 %}megamenu{% endif %}">
+                            <a class="nav-link {% if menu.children and menu.children.size > 0 %}dropdown-toggle{% endif %}"
+                               href="{% if menu.children and menu.children.size > 0 %}#{% else %}{{ menu.uri }}{% endif %}"
+                               {% if menu.children and menu.children.size > 0 %}data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"{% endif %}>
+                                {{ menu.title }}
+                            </a>
+                            {% if menu.children and menu.children.size > 0 %}
+                                <div class="dropdown-menu dropdown-menu-xl py-0 px-0 overflow--hidden" aria-labelledby="navbar_{{ menu.id }}_dropdown">
+                                    <div class="list-group rounded">
+                                        {% for child in menu.children %}
+                                            <a href="{% if child.children and child.children.size > 0 %}#{% else %}{{ child.uri }}{% endif %}"
+                                               class="list-group-item list-group-item-action d-flex align-items-center">
+                                                <div class="list-group-content">
+                                                    <div class="list-group-heading heading heading-6 mb-1">{{ child.title }}</div>
+                                                    <p class="text-sm mb-0">{{ child.title }}</p>
+                                                </div>
+                                            </a>
+                                        {% endfor %}
                                     </div>
-                                </a>
-                            </div>
-                        </div>
-                    </li>
-                    <li class="nav-item dropdown megamenu">
-                        <a class="nav-link" href="/collections/news">
-                           News
-                        </a>
-                    </li>
-                    <li class="nav-item dropdown megamenu">
-                        <a class="nav-link" href="/pages/about-us">
-                            About Us
-                        </a>
-                    </li>
-
-                    {% comment %}<li class="nav-item dropdown megamenu">{% endcomment %}
-                        {% comment %}<a class="nav-link" href="../../demos.html">{% endcomment %}
-                            {% comment %}Posts{% endcomment %}
-                        {% comment %}</a>{% endcomment %}
-                    {% comment %}</li>{% endcomment %}
-                    <li class="nav-item dropdown megamenu">
-                        <a class="nav-link" href="/contact">
-                            Contact
-                        </a>
-                    </li>
-                    {% comment %}<li class="nav-item dropdown megamenu">{% endcomment %}
-                        {% comment %}<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{% endcomment %}
-                            {% comment %}Components{% endcomment %}
-                        {% comment %}</a>{% endcomment %}
-{% comment %}{% endcomment %}
-                        {% comment %}<div class="dropdown-menu">{% endcomment %}
-                            {% comment %}<div class="mega-dropdown-menu row row-no-padding">{% endcomment %}
-                                {% comment %}<div class="mega-dropdown-col mega-dropdown-col-cover mega-dropdown-col-cover--left col-lg-5 d-none d-lg-block d-xl-block" style="background-image: url(static/images/img-14-1000x900.jpg); background-position: center center;">{% endcomment %}
-                                    {% comment %}<span class="mask mask-base-1--style-1 alpha-8"></span>{% endcomment %}
-                                    {% comment %}<div class="mega-dropdown-col-inner d-flex align-items-center no-padding">{% endcomment %}
-                                        {% comment %}<div class="col">{% endcomment %}
-                                            {% comment %}<div class="row align-items-center">{% endcomment %}
-                                                {% comment %}<div class="col-12">{% endcomment %}
-                                                    {% comment %}<div class="px-4">{% endcomment %}
-                                                        {% comment %}<h2 class="heading heading-2 strong-600 c-white">{% endcomment %}
-                                                            {% comment %}Documentation and Shortcodes{% endcomment %}
-                                                        {% comment %}</h2>{% endcomment %}
-                                                        {% comment %}<p class="strong-300 c-white mt-4">{% endcomment %}
-                                                            {% comment %}Get started fast and easy with mtb using the documentation and shortcode examples. No matter{% endcomment %}
-                                                            {% comment %}you are a developer or new to web design, you will{% endcomment %}
-                                                            {% comment %}find our theme very easy to customize with{% endcomment %}
-                                                            {% comment %}an intuitive HTML markup.{% endcomment %}
-                                                        {% comment %}</p>{% endcomment %}
-                                                        {% comment %}<div class="btn-container mt-5">{% endcomment %}
-                                                            {% comment %}<a href="../../documentation/getting-started/introduction.html" target="_blank" class="btn btn-styled btn-white btn-outline btn-circle">Read the Docs</a>{% endcomment %}
-                                                        {% comment %}</div>{% endcomment %}
-                                                    {% comment %}</div>{% endcomment %}
-                                                {% comment %}</div>{% endcomment %}
-                                            {% comment %}</div>{% endcomment %}
-                                        {% comment %}</div>{% endcomment %}
-                                    {% comment %}</div>{% endcomment %}
-                                {% comment %}</div>{% endcomment %}
-{% comment %}{% endcomment %}
-                                {% comment %}<div class="col-md-4 col-lg-2 ml-lg-auto">{% endcomment %}
-                                    {% comment %}<ul class="megadropdown-links">{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/alerts.html">{% endcomment %}
-                                                {% comment %}Alerts{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/badges.html">{% endcomment %}
-                                                {% comment %}Badges{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/buttons.html">{% endcomment %}
-                                                {% comment %}Buttons{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/cards.html">{% endcomment %}
-                                                {% comment %}Cards{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/collapse.html">{% endcomment %}
-                                                {% comment %}Collapse{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/countdown.html">{% endcomment %}
-                                                {% comment %}Countdown{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/dropdown.html">{% endcomment %}
-                                                {% comment %}Dropdowns{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-{% comment %}{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/forms.html">{% endcomment %}
-                                                {% comment %}Forms{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/instagram.html">{% endcomment %}
-                                                {% comment %}Instagram{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/lightbox.html">{% endcomment %}
-                                                {% comment %}Lightbox{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/maps.html">{% endcomment %}
-                                                {% comment %}Maps{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/masonry.html">{% endcomment %}
-                                                {% comment %}Masonry{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                    {% comment %}</ul>{% endcomment %}
-                                {% comment %}</div>{% endcomment %}
-{% comment %}{% endcomment %}
-                                {% comment %}<div class="col-md-4 col-lg-2">{% endcomment %}
-                                    {% comment %}<ul class="megadropdown-links">{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/pagination.html">{% endcomment %}
-                                                {% comment %}Pagination{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/progress.html">{% endcomment %}
-                                                {% comment %}Progress bars{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/recaptcha.html">{% endcomment %}
-                                                {% comment %}Recaptcha{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/content/titles.html">{% endcomment %}
-                                                {% comment %}Section titles{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/forms.html#ex_component_sliders">{% endcomment %}
-                                                {% comment %}Sliders{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/tabs.html">{% endcomment %}
-                                                {% comment %}Tabs{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/components/typed-animations.html">{% endcomment %}
-                                                {% comment %}Typed animations{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/headers.html">{% endcomment %}
-                                                {% comment %}Headers{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../html/default/sliders/mtb-slider/index.html">{% endcomment %}
-                                                {% comment %}Boomerang slider{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../html/default/sliders/revolution-slider/index.html">{% endcomment %}
-                                                {% comment %}Revolution slider{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/footers.html">{% endcomment %}
-                                                {% comment %}Footers{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/hero.html">{% endcomment %}
-                                                {% comment %}Hero blocks{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                    {% comment %}</ul>{% endcomment %}
-                                {% comment %}</div>{% endcomment %}
-{% comment %}{% endcomment %}
-                                {% comment %}<div class="col-md-4 col-lg-2">{% endcomment %}
-                                    {% comment %}<ul class="megadropdown-links">{% endcomment %}
-{% comment %}{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/icon.html">{% endcomment %}
-                                                {% comment %}Icon blocks{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/jobs.html">{% endcomment %}
-                                                {% comment %}Job blocks{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/pricing.html">{% endcomment %}
-                                                {% comment %}Pricing blocks{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/product.html">{% endcomment %}
-                                                {% comment %}Product blocks{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/real-estate.html">{% endcomment %}
-                                                {% comment %}Real-Estate blocks{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/team.html">{% endcomment %}
-                                                {% comment %}Team blocks{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/testimonials.html">{% endcomment %}
-                                                {% comment %}Testimonial blocks{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-{% comment %}{% endcomment %}
-                                        {% comment %}<li>{% endcomment %}
-                                            {% comment %}<a class="dropdown-item" href="../../documentation/blocks/comments.html">{% endcomment %}
-                                                {% comment %}Comment blocks{% endcomment %}
-                                            {% comment %}</a>{% endcomment %}
-                                        {% comment %}</li>{% endcomment %}
-                                    {% comment %}</ul>{% endcomment %}
-                                {% comment %}</div>{% endcomment %}
-                            {% comment %}</div>{% endcomment %}
-                        {% comment %}</div>{% endcomment %}
-                    {% comment %}</li>{% endcomment %}
+                                </div>
+                            {% endif %}
+                        </li>
+                    {% endfor %}
                 </ul>
-
-
             </div>
-
-
-
         </div>
     </nav>
 </div>

+ 6 - 3
resources/views/liquid/1/TechVista/collection_list.liquid

@@ -42,9 +42,12 @@
                                                     <a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}">
 
                                                         {% if item.cover_image %}
-                                                            <img src="{{ site.image_base_url }}{{ item.cover_image }}" alt="Cover Image">
+                                                            <img src="{{ site.image_base_url }}{{ item.cover_image }}" alt="Cover Image " class="default-image-thumbnail" >
                                                         {% else %}
-                                                            <img src="/static/picture/img-tech-1.jpg" alt="Default Image">
+                                                            <div class="img-center default-image-thumbnail"
+                                                                 style="width: 100%; height: 200px; background-color: #e0e0e0; display: flex; justify-content: center; align-items: center; color: #555;">
+                                                                <span>No Image</span>
+                                                            </div>
                                                         {% endif %}
 
                                                     </a>
@@ -53,7 +56,7 @@
 
                                             <div class="card-body">
                                                 <h3 class="heading heading-5 strong-500 mb-0">
-                                                    <a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}">{{ item.title }}</a>
+                                                    <a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}">{{ item.title | strip_html }}</a>
                                                 </h3>
                                             </div>
 

+ 5 - 3
resources/views/liquid/1/TechVista/contact_create.liquid

@@ -16,8 +16,6 @@
 <div class="body-wrap shop-default shop-cards shop-tech">
     <div id="st-container" class="st-container">
 
-
-
         <div class="st-pusher">
             <div class="st-content">
                 <div class="st-content-inner">
@@ -35,7 +33,11 @@
                                     Please call us or complete the form below and we'll get to you shortly.
                                 </p>
                                 <a href="" class="btn btn-styled btn-xl btn-base-1 btn-icon-left mt-4">
-                                    <i class="fa fa-mobile"></i>+86 - 138 - 8888 - 8888
+                                    <i class="fa fa-mobile"></i>Contact : {{ site.dist.contact_number }}
+                                </a>
+                                <span class="clearfix"></span>
+                                <a href="" class="btn btn-styled btn-xl btn-base-1 btn-icon-left mt-4">
+                                    <i class="fa fa-mobile"></i>Hotline: {{ site.dist.service_hotline }}
                                 </a>
                                 <span class="clearfix"></span>
                                 <small>Get support by calling the 24h helpline.</small>

+ 1 - 1
resources/views/liquid/1/TechVista/home.liquid

@@ -380,4 +380,4 @@
 <a href="#" class="back-to-top btn-back-to-top"></a>
 {% include '_footer_js.liquid' %}
 </body>
-</html>
+</html>

+ 2 - 2
resources/views/liquid/1/TechVista/pages_detail.liquid

@@ -36,10 +36,10 @@
                                     <div class="block block-post">
                                         <div class="block-body block-post-body">
                                             <h1>
-                                                {{ page.title }}
+                                                {{ page.title | raw }}
                                             </h1>
 
-                                            {{page.content }}
+                                            {{page.content | raw }}
 
                                             {% comment %}<div class="tagcloud tagcloud--style-1 clearfix">{% endcomment %}
                                                 {% comment %}<a href="#"><span>Rooms</span></a>{% endcomment %}

+ 12 - 3
resources/views/liquid/1/TechVista/products_categories.liquid

@@ -46,7 +46,7 @@
                                             <div class="card-body">
                                                 <h2 class="heading heading-6 strong-600 mt-2 mb-3">
                                                     <a  href="/products/{{ item.id }}" target="_blank" >
-                                                        {{ item.title }}
+                                                        {{ item.title | strip_html }}
                                                     </a>
                                                 </h2>
 
@@ -56,7 +56,16 @@
                                                             <div class="swiper-wrapper">
                                                                 <div class="swiper-slide">
                                                                     <a  href="/products/{{ item.id }}" target="_blank" >
-                                                                    <img src="/static/picture/img-1.png" class="img-fluid img-center img-primary">
+
+
+                                                                    {% if item.images and item.images[0].image_url %}
+                                                                        <img src="{{ site.image_base_url }}{{ item.images[0].image_url | append: '?x-oss-process=image/resize,m_lfit,h_200' }}"
+                                                                             class="img-fluid img-center img-primary default-image-thumbnail-small">
+                                                                    {% else %}
+                                                                        <div class="img-fluid img-center img-primary default-image-thumbnail-small no-image-placeholder-thumbnail-small">
+                                                                            <span>No Image</span>
+                                                                        </div>
+                                                                    {% endif %}
                                                                     </a>
                                                                 </div>
                                                             </div>
@@ -67,7 +76,7 @@
                                                 <div class="mt-3">
 
                                                     <p class="product-description mt-3 mb-0" style="overflow: hidden; text-overflow: ellipsis; white-space: nowrap;">
-                                                        {{ item.content | strip_newlines | strip_html }}
+                                                        {{ item.content | strip_html| strip_newlines | truncate: 20 | default: "No description " }}
                                                     </p>
                                                 </div>
                                             </div>