Blog

Transparent Elementor Header Setup

User make elementor header transparent with below background image Assistant You can make your Elementor header transparent with a background image by following these steps: ### **Steps to Make Elementor Header Transparent with a Background Image** #### **1. Edit Header in Elementor** – Go to **WordPress Dashboard > Templates > Theme Builder**. – Select or […]

New Customer Order Check

User We have to build a function when any new order comes in system then we need to check if this is a new customer againse billing/shipping address or mail if doesn' match then we need add a green dot to that order in Wocommerce admin order dashboard so that admin can know that this […]

Job Details Display Language

User I’ve applied the display of job details based on site languane , Currently we have I’ve define a array for keywords like Correct above sentence Assistant I've implemented the display of job details based on the site language. Currently, I've defined an array for keywords like…

Remote Zugriff Anfrage

User Remote in de Assistant Could you clarify what you mean by "Remote in de"? Are you asking about remote access, remote work, or something specific? Let me know so I can assist you better! 😊 User $translations = [ "full-time" => [ "de" => "Vollzeit", "en" => "Full-time" ], "part-time" => [ "de" => […]

Get WPML Current Language

User get wpml current language Assistant To get the current language in WPML, you can use the following methods: ### 1. **Using `ICL_LANGUAGE_CODE` Constant** You can use the predefined constant `ICL_LANGUAGE_CODE` anywhere in your theme or plugin: echo ICL_LANGUAGE_CODE; // Outputs: en, fr, de, etc. ### 2. **Using WPML API Function `wpml_get_current_language()`** If you're using […]

Swiper Gap Issue Solution

User document.addEventListener('DOMContentLoaded', function ($) { if(jQuery('.swiperslides').length) { var swiper = new Swiper(".swiperslides", { slidesPerView: 3, spaceBetween: 30, loop: true, speed: 6000, allowTouchMove: false, autoplay: { delay: 0, disableOnInteraction: true, reverseDirection: false, pauseOnMouseEnter: true, stopOnLastSlide: false }, on: { beforeInit: function (swiper) { swiper.wrapperEl.style.transitionTimingFunction = "linear"; }, init: function () { console.log("Swiper initialized"); const swiperEl = […]

SCSS Nested Structure Conversion

User .img-acc .accordion { width: 100%; height: 695px; overflow: hidden; margin: auto; border: none; border-top: transparent !important; border-bottom: transparent !important; } .img-acc .accordion ul { width: 100%; display: flex; gap: 16px; table-layout: fixed; margin: 0; padding: 0; } .img-acc .accordion ul li { display: table-cell; vertical-align: bottom; position: relative; width: 16.666%; height: 540px; background-repeat: no-repeat; […]

Database Transfer Update

User We are still in process to transfer database at our demo server.We already trying to do it asap.We will also contact nimbus hosting support for this If we unable to do this Correct above sentence Assistant Here's a corrected version of your sentence: "We are still in the process of transferring the database to […]

WP Cron Customer Check

User I’ve reviewed the work required and found that the new customer check can be implemented in the WP schedule task that should not impose server load because its a backend process. The new customer check will perform in WP schedule task (WP Cron) , We can make it to run every hour to check […]