Blog

Rename Images in Database

User We have a product table in which we have a product title and image name now want to change each image name to product tile with underscrode if space in tile also chage the name in upload folder Assistant You can achieve this in Laravel by iterating over all products, renaming the images in […]

Elementor widget option

User We can add option like this in the elementor widget Correct above sentence Assistant We can add an option like this in the Elementor widget. User As per the above revision of work Hours will be- 10 hours Assistant As per the above revision of work, the estimated hours will be 10 hours. User […]

Custom Elementor Widget

User Create custom elementor widget and use HEADLINE WIDGET typography in it for text Assistant To create a custom Elementor widget and use the **Headline Widget Typography** for the text, follow these steps: — ### **Steps to Create a Custom Elementor Widget** 1. **Create a Custom Plugin** (or use an existing one). 2. **Define the […]

EC2 Bitbucket SSH Setup

User Amazon AWS EC2 Ubuntu Bitbucket SSH Clone of Repository 1- Generate a New SSH Key on EC2 ssh-keygen -t rsa -b 4096 -C "bitbucket-ec2" -f ~/.ssh/id_rsa 2- Add the Public Key to Bitbucket Now, get the public key: cat ~/.ssh/id_rsa.pub a. Copy the output of the above command. b. Go to Bitbucket → Personal […]

Exclude reCAPTCHA by Page

User function v3_enqueue_recaptcha_v3() { if (!is_admin()) { wp_enqueue_script('google-recaptcha-v3', 'https://www.google.com/recaptcha/api.js?render=' . V3_RECAPTCHA_SITE_KEY, [], null, true); } } add_action('wp_enqueue_scripts', 'v3_enqueue_recaptcha_v3'); function load_recaptcha_token_debug() { wp_add_inline_script('google-recaptcha-v3', " grecaptcha.ready(function() { grecaptcha.execute('" . V3_RECAPTCHA_SITE_KEY . "', {action: 'homepage'}).then(function(token) { console.log('reCAPTCHA Token:', token); }).catch(function(error) { console.error('reCAPTCHA Error:', error); }); }); "); } add_action('wp_footer', 'load_recaptcha_token_debug'); exclude it from particular page id Assistant You […]

SMTP Gmail Authentication Fix

User SymfonyComponentMailerExceptionTransportException: Failed to authenticate on SMTP server with username "neeraj.tiw1988@gmail.com" using the following authenticators: "LOGIN", "PLAIN", "XOAUTH2". Authenticator "LOGIN" returned "Expected response code "235" but got code "535", with message "535-5.7.8 Username and Password not accepted. For more information, go to 535 5.7.8 https://support.google.com/mail/?p=BadCredentials d2e1a72fcca58-737115511cfsm12518716b3a.45 – gsmtp".". Authenticator "PLAIN" returned "Expected response code "235" […]

Vue Router Configuration Explained

User const MainRoutes = { path: '/main', meta: { requiresAuth: true }, redirect: '/main/dashboard/default', component: () => import('@/layouts/full/FullLayout.vue'), children: [ { name: 'LandingPage', path: '/', component: () => import('@/views/dashboards/default/DefaultDashboard.vue') }, { name: 'Default', path: '/dashboard/default', component: () => import('@/views/dashboards/default/DefaultDashboard.vue') }, { name: 'Starter', path: '/starter', component: () => import('@/views/StarterPage.vue') }, { name: 'Tabler Icons', path: […]

et_core_api_spam_options Location

User et_core_api_spam_options where found these options in divi theme Assistant The `et_core_api_spam_options` options in the **Divi** theme are related to spam protection settings for Divi's built-in forms, such as the **Contact Form Module**. ### Where to Find `et_core_api_spam_options` in Divi? You can find these settings in the **Divi Theme Options**, but their actual storage and […]

reCAPTCHA v3 Payment Issue

User After setting up recaptcha v3 site wide without adding in form In wordpress website payment says invalid ip Assistant It sounds like your payment gateway is rejecting transactions due to an **invalid IP** error after implementing **reCAPTCHA v3** site-wide. This likely happens because reCAPTCHA v3 affects form submissions, possibly altering request headers or adding […]

EC2 Ubuntu Permissions

User change amazon ec2 proejct to 777 Assistant Could you clarify what you mean by "change Amazon EC2 project to 777"? Are you referring to file permissions, security group settings, or something else in your EC2 instance? Setting file permissions to `777` can be risky as it allows anyone to read, write, and execute files. […]