Month: March 2025

Vue.js image import issue

User const profileHis = new URL('@/assets/images/www.freelancer.com_u_openeratech.png', import.meta.url).href; const profileHis2 = new URL('@/assets/images/work-records.png', import.meta.url).href; const review1 = new URL('@/assets/images/review1.png', import.meta.url).href; const review2 = new URL('@/assets/images/review2.png', import.meta.url).href; const review3 = new URL('@/assets/images/review3.png', import.meta.url).href; const review4 = new URL('@/assets/images/review4.png', import.meta.url).href; const review5 = new URL('@/assets/images/review5.png', import.meta.url).href; above not work only work 1st in vue js Assistant In Vue.js […]

FacetWP Issue Debugging

User I've checked the issue and it seems after result should show under black box but currently it not showing any result , It seems Facetwp plugin issue , I've a previous version of website at my system I will also check tomorrow at our local system by restoring it our local env. I've also […]

The7 Elementor Conflict Fix

User I've checked the issue and find that The7 Theme and Elementor are conflicting with each other we need to update both to fix elementor loading error at backend. Correct above sentence Assistant Here's the corrected version of your sentence: "I've checked the issue and found that The7 Theme and Elementor are conflicting with each […]

Elementor Typography Class Error

User thrown in /home/deft/public_html/wp-content/themes/dt-the7/inc/mods/compatibility/elementor/widgets/nav-menu.php on line 515 [25-Mar-2025 11:49:15 UTC] PHP Fatal error: Uncaught Error: Class "ElementorCoreSchemesTypography" not found in /home/deft/public_html/wp-content/themes/dt-the7/inc/mods/compatibility/elementor/widgets/nav-menu.php:515 Stack trace: #0 /home/deft/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php(2433): The7ModsCompatibilityElementorWidgetsNav_Menu->register_controls() #1 /home/deft/public_html/wp-content/plugins/elementor/includes/base/widget-base.php(1050): ElementorControls_Stack->init_controls() #2 /home/deft/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php(569): ElementorWidget_Base->init_controls() #3 /home/deft/public_html/wp-content/plugins/elementor/includes/base/widget-base.php(184): ElementorControls_Stack->get_stack() #4 /home/deft/public_html/wp-content/plugins/elementor/includes/managers/widgets.php(391): ElementorWidget_Base->get_stack() #5 [internal function]: ElementorWidgets_Manager->ajax_get_widget_types_controls_config() #6 /home/deft/public_html/wp-content/plugins/elementor/core/common/modules/ajax/module.php(176): call_user_func() #7 /home/deft/public_html/wp-includes/class-wp-hook.php(324): ElementorCoreCommonModulesAjaxModule->handle_ajax_request() #8 /home/deft/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() #9 /home/deft/public_html/wp-includes/plugin.php(517): WP_Hook->do_action() #10 […]

Wordfence Login Block Fix

User Wordfence not allowdd to login admin creared via phpmymadmin wordpress Assistant If you're unable to log in to a WordPress admin account created via **phpMyAdmin**, and **Wordfence** is blocking the login, here’s how to troubleshoot and fix it: — ### ✅ Steps to Fix Wordfence Blocking Login for Admin Created via phpMyAdmin #### 1. […]

Disable 2FA for Admin

User Prevent 2FA for wordfence for particular admisttrator Assistant Wordfence doesn't provide a built-in setting to *directly* disable 2FA for a specific administrator from the dashboard. However, there are a few **workarounds** depending on your scenario: — ### ✅ Option 1: **Remove 2FA for that admin manually** 1. Go to **WordPress Dashboard > Wordfence > […]

Wordfence login block fix

User Wordfence not allowed to login to admin even correct admin details Assistant If **Wordfence** is blocking you (or others) from logging into the WordPress admin even with **correct credentials**, here are the common reasons and how you can fix them: — ### 🔍 Possible Causes & Fixes: #### 1. **Country Blocking** If you've enabled […]

Font Size Layout Issue

User Regarding global typographies like h1 or etc. font sizes If we applied Our new page h1 font size 55 to other pages then it breaks the layout like text coming outside the boxes ,(Do we need to fix it by going to indivdual pages in wp-admin) So currently we have just applied raleway font […]

CSS Specificity Issue

User .btn-default:not(.btn-hover-nobg):not(.icon-animated):not(.btn-flat):hover this is effecting CSS when when btn-default:hover Assistant It sounds like you’re encountering an issue where the `:hover` effect for `.btn-default` is being overridden or affected by this more specific selector: .btn-default:not(.btn-hover-nobg):not(.icon-animated):not(.btn-flat):hover ### What's happening: This selector is **more specific** than a simple `.btn-default:hover`, so if both exist, the one with higher specificity […]

Display image in Vue

User displayvue src/assets/images folder image in vue files Assistant To display an image from the `src/assets/images` folder in your Vue component, you can use the `@` alias which points to the `src` directory in most Vue CLI or Vite setups. ### Example Structure: src/ assets/ images/ logo.png components/ MyComponent.vue ### How to Display the Image: […]