Blog

Entry ID Saving Method

User As you suggested Yes I agree but for this I need alter entry id saving method mentioed above Correct above Assistant Here’s a corrected version of your sentence: "Yes, I agree, but for this, I need to alter the entry ID saving method mentioned above." User Actually above is default woocommerce functionality which stores […]

Post Grid with Background

User make post grid like above in wp bakery by featured image as background Assistant To create a **Post Grid** in WPBakery that looks like the provided image (with the featured image as a background and text overlay), follow these steps: — ### 1. **Enable Post Grid in WPBakery** – Go to your **WordPress Admin** […]

Hover Background Image Slide

User Slide background image to left on hover on image Assistant To slide a background image to the left when you hover over an element, you can use CSS transitions and the `background-position` property. Here's an example: ### HTML <div class="image-container"></div> ### CSS .image-container { width: 300px; height: 200px; background-image: url('your-image.jpg'); /* Replace with your […]

CSS Background Slide Effect

User background image right bottom cornerslide to left on hover Assistant To achieve a hover effect where a background image slides from the bottom-right corner to the left, you can use CSS. Below is an example of how to implement it: ### HTML <div class="hover-effect"> <div class="content"> <h1>Hover Me</h1> </div> </div> ### CSS .hover-effect { […]

OwlCarousel Partial Item Issue

User $("#owl-carousel-grid").owlCarousel({ loop: false, margin: 30, responsive: { 0: { items: 1 // 1 column for mobile }, 768: { items: 2 // 2 columns for tablets }, 1024: { items: 3 // 3 columns for desktop } }, autoplay: false, autoplayTimeout: 3000, autoplayHoverPause: true, nav: true, dots: true }); on deskop still showing 4th […]

Custom WPBakery Carousel Element

User create wp bakery custom element for caursel items grid for 3 columns in desktop and 1 column in mobile , wp bakery has already owl caursel installed Assistant To create a **custom WPBakery Page Builder element** for a carousel grid with 3 columns on desktop and 1 column on mobile using **Owl Carousel**, you […]

Owl Carousel WPBakery Setup

User create owl caursel for 3 col in wp bakery without using post grid Assistant To create an **Owl Carousel** with 3 columns in WPBakery without using the post grid, you can use the **Custom HTML** element and integrate the Owl Carousel library. Follow these steps: — ### **1. Include the Owl Carousel Library** You […]

WPBakery Column Layout Guide

User wp bakery how to create more than 12 col of 3 cols in each ow Assistant By default, **WPBakery Page Builder** (formerly Visual Composer) adheres to a **12-column grid** system, similar to Bootstrap. This can limit how many columns are visually split across a single row. To create **more than 12 columns** in a […]

Filtering Coach Projects

User $coach = Auth::guard('coach')->user(); $projects=$coach->project; apply where Assistant To apply a `where` clause when retrieving projects related to the authenticated coach, you can modify the query to filter the projects. Here's an example: ### If `project` is a relationship: If the `project` is a relationship defined in the `Coach` model, you can use the `where` […]

Custom Post Grid WPBakery

User Create custom post grid element with 3 columns in row and set feature image as background with title and excerpt in wp bakery. Using flex Assistant To create a **custom post grid** element with **3 columns per row** using WPBakery and Flexbox, with the featured image as a background and the title and excerpt […]