Blog

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: […]

Append no-cache URL Redirect

User append ?no-cache=1 in any page url n wordpres templayre_redicect Assistant To append `?no-cache=1` to **any page URL** in a WordPress site using `template_redirect`, you can hook into WordPress’s `template_redirect` action and modify the URL when necessary. Here’s how you can do it in your theme’s `functions.php` file: add_action('template_redirect', function () { // Don't run […]

New chat

User template_Redirect redirect page to available-jobs/?no-cache=1 wordperess

Font Change and Layout Fix

User Regarding convert site font to Raleway font as per our new page , I've tried but its break layout at some places So I'll first do it tomorrow moring and then I'll start on Roth on Filter part Correct above sentence Assistant Sure! Here's the corrected version of your sentence: **"Regarding converting the site […]

Free Delivery Fee Logic

User Please note deliveries are Monday to Friday – orders placed Sat / Sun / Bank Holidays will be delivered on the next business day. Deliveries placed before 10am will be delivered the same working day (subject to availability). Assistant To make the delivery fee **free when the order total is above €55**, you need […]

Export page with attachments

User export page with attachment wordpress Assistant To **export a page with its attachments** in WordPress (like images or PDFs linked to the page), there are a few ways to do it depending on your goal. Here's a breakdown of your options: — ### 🔹 Option 1: **Use the Built-In WordPress Export Tool** 1. Go […]