Hiển thị các bài đăng có nhãn wordpress. Hiển thị tất cả bài đăng
Hiển thị các bài đăng có nhãn wordpress. Hiển thị tất cả bài đăng

Thứ Ba, 19 tháng 3, 2024

Wordpress wp-admin login access alway not allow access - SOLVED

 

Access to the WordPress wp-admin login is frequently denied, causing frustration. Here's a step-by-step troubleshooting guide:

  1. Check .htaccess: Ensure there are no misconfigurations or rules blocking access in the .htaccess file.

  2. Review Plugins: Deactivate plugins one by one to identify any conflicts causing the access issue.

  3. Verify User Account and Password: Double-check the correctness of the user credentials, ensuring there are no typos or errors.

  4. Inspect Folder and File Permissions: Ensure appropriate permissions are set for folders and files to allow access.

The root cause often lies in a database table, particularly in the mater_options table, where the prefix might be incorrectly set. To resolve this:

  1. Access the mater_options table in the database.
  2. Find the line with the ID 95.
  3. Change the value from O34BC_user_roles to prefix__user_roles, where 'prefix' represents the correct prefix for your WordPress installation.

By following these steps, you can rectify the login access issue and regain control of your WordPress admin panel.


 




Thứ Ba, 19 tháng 9, 2023

Wordpress Contact Form 7 Invisbile capcha always view page load - SOLVED


Detail: Contact Form7>integrate > Recaptcha V3
-> home page load alwasy popup Captcha. Require run reCaptcha when needed
Solution: setup plugins Add New 'Invisible reCAPTCHA' Contact Form;
Setting and check again
Solved


 

Thứ Tư, 28 tháng 12, 2022

Wordpress Directory plugin select 2 issue Iphone

 Detail: Wordress use plugin Directorist - Business Directory Plugin
Safari iphone select2 can not select
Step: input click -> select popup view above, this issue popup view in range click too : this mean selected and hide popup


Solution: popup above move top out range click by CSS

/*mobileSelectIssue*/
body .select2-container--open .select2-dropdown--above{
    top:-2px;
}


 

Thứ Tư, 7 tháng 12, 2022

Wordpress add widget position

 1. Load position: position may be header, footer, main view

        <?php
            if (is_active_sidebar('logobox')){
                dynamic_sidebar('logobox');
            }
            ?>

2. Init functions.php

/*TopBox*/
function CustomLogoBox()
{
    register_sidebar(array(
        'id' => 'logobox',
        'name' => 'Logo Box',
        'description' => 'Logo box text',
        'before_widget' => '<div class="logobox">',
        'after_widget' => '</div>',
        'before_title' => '<h3 class="logo-widget-title">',
        'after_title' => '</h3>'
    ));

}
add_action( 'widgets_init', 'CustomLogoBox' );

3. Wordpress admin add widget



Thứ Hai, 21 tháng 11, 2022

 mplugin wordpress malware

Detail: November 2022 client report 5 sites issue malware.
This effect mobile only, when site wordpress at FRONT END click will open other site

Solution: backup files before edit
Setup: 'wordfence plugin'>Scan >list issue

Step by step: as detail report
1. theme /functions.php : require clean code
2. mplugin.php : this is malware -> remove
3. theme/ template-config.php clean code

 


 

Thứ Sáu, 27 tháng 8, 2021

Wordpress - remove title by Yoast SEO - SOLVED

Vấn đề của mình: Title browser luôn hiển thị 'Page title - Site title'. Site wordpress 5.8, có sử dụng Yoast SEO ver 17.0.

Mục tiêu: view 'Page title' only

Lịch sử: khi gặp vấn đề tìm cách xử lý trực triếp từ theme ko hiệu quả, lên internet tìm 'Wordpress Remove title' nhiều lần tốn thời gian 2h, xem nhiều site. Thì giải pháp tốt nhất là dùng 'Yoast SEO'. Khi dùng thì chưa quen không tìm thấy vị trí setting vì mỗi phiên bản setting khác nhau. Hiện tại đang dùng Yoast version 17.0. Đúng là có setting có khác so với trên internet lúc tìm kiếm, nên tốn thời gian.

Tình trạng: SOLVED - 2021 August 27

Hình ảnh ghi nhận: