Xem cụ thể demo và hình ảnh:
Mã nguồn: Wordpress.
Theme: Flatsome.
Hiển thị tốt trên di động.
Quản trị sử dụng UX Builder.
Chức năng giỏ hàng, đặt hàng,
Popup xem trước sản phẩm.
Hiện tại,các chức năng như đặt hàng, dịch vụ, sản phẩm, .... chưa được xây dựng.
Các bạn lập trình tải về và phát triển thêm
XEM THÊM ==> Hướng dẫn cài đặt chi tiết
Nguồn: Sharecode.vn
Bước 1: copy source vào hosting hoắc localhost.
Bước 2: Tạo 1 data mới và Import file data vào.
Bước 3: Mở table option trong data vừa impost thay đường dẫn ở 2 dòng home và url.
Bước 4: Vào source mở file wp-config.php thay đổi dataname, username và password truy cập vào data.
Bước 5: vào đường dẫn http://domain.com/wp-admin vào cài đặt =>> đường dẫn tĩnh và bấm update.
Bước 6: truy cập website và thay đổi các đường dẫn hình ảnh theo ý.
Fix lỗi không xem được sản phẩm :
Not Found
The requested URL /shop/cho-be-an/sach-mang-thai-thanh-cong-280-ngay/ was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Như sau:
Ban vào đường dẫn domain.com/wp-admin
user:: admin
pass: 123456
Vào cài đặt -> đường dẫn tĩnh bấm cập nhât.
Mình có viết trong hướng dẫn.
Config bảo mật:
Mở file wp-config.php trong host copy đoạn này dán vào phía dưới đoạn mã
<?php
define( 'DISALLOW_FILE_MODS', true );
define( 'DISALLOW_FILE_EDIT', true );
define( 'AUTOMATIC_UPDATER_DISABLED', true );
Mở file function.php trong child-theme:
function remove_core_updates(){
global $wp_version;return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,);}
add_filter('pre_site_transient_update_core','remove_core_updates');
add_filter('pre_site_transient_update_plugins','remove_core_updates');
add_filter('pre_site_transient_update_themes','remove_core_updates');
Vì wordpress khi chuyển host bạn phải cập nhật lại .htaccess bằng cách bấm cập nhật đường dẫn tĩnh.
Ban vui lòng xóa cache trình duyệt hoặc bấm ctrl + shift + N mở trình duyệt ẩn danh để kiểm tra.
Cảm ơn.