Month: December 2024

Fix Elementor Icon Display

User on elementor builder section like above but on page its showing big icons and showing dots Assistant The issue you described typically occurs when the frontend is not loading the correct icons (likely Font Awesome or Elementor's built-in icons). The dots and large icons suggest that the icon styles are not properly applied. Here's […]

Multiple Filter Functionality jQuery

User jQuery(document).ready(function ($) { if ($('.project-taxonomy-filter').length > 0) { $('.project-taxonomy-filter').on('change', function () { let filters = {}; // Loop through all dropdowns to collect data $('.project-taxonomy-filter').each(function () { const taxonomy = $(this).data('taxonomy'); const slug = $(this).val(); if (slug) { filters[taxonomy] = slug; } }); $.ajax({ url: solaron_ajax.ajax_url, type: 'POST', data: { action: 'filter_project_posts', filters: filters, […]

Elementor Widget Post Settings

User add setting field for add number of post and order by elementor widget Assistant To add custom settings for "Number of Posts" and "Order By" to an Elementor widget, you can extend the widget's controls in its PHP class. Here's how you can do it: ### Steps: 1. **Locate Your Custom Widget Class** If […]

Improve LCP Performance Tips

User Your Online Pharmacy Get The Treatment You Need Safely, Simply And Conveniently. View treatments this above section has lcp more than 3 seconds Assistant To improve the Largest Contentful Paint (LCP) time for the provided section, here are some actionable steps: ### 1. **Optimize Images** – **Lazy Loading**: Ensure images are lazy-loaded using the […]

Set RTL Option Mobile

User var owlid = ""; jQuery(function () { // Owl Carousel var owl = jQuery("#" + owlid); owl.owlCarousel({ items: 1.5, // Slightly more than 1 to show part of the next slide margin: 16, // Adjust margin to control spacing between slides rtl:true, loop: false, nav: true, // Enable navigation arrows dots: false, // Disable […]

Custom Password Reset Email

User Assistant To use a custom email template for the password reset link email in your Laravel application, you need to customize the notification that sends the email. Here's how you can achieve this: ### Steps to Customize the Email Template 1. **Create a Custom Notification** Laravel uses the `IlluminateAuthNotificationsResetPassword` notification to send the password […]

Add Spaces in Email

User we have db return mail content add space before sending mail Assistant To add spaces in your email content before sending it in a Laravel application, you can process the email content in your mail class or controller before passing it to the mail view. Here's how you can do it: ### Example Implementation […]

API Error Resolution Steps

User Get List Total Records: 1 ## neeraj.tiwari@nethues.com ##08d6cb0b1a == neeraj.tiwari@nethues.com fault: "0" – A general API error occurred: "VRAPI2.INVALID_SEARCH_CONDITION" – "bad search condition provided: wrong argument type nil (expected String)" ## vertical repsonse api Assistant The error message indicates that the API call to VerticalResponse failed because an invalid search condition was provided. The […]

Swiper Slider Left Alignment

User var swiper = new Swiper(".swiperslides", { slidesPerView:3, spaceBetween: 30, centeredSlides: true, autoplay: { delay: 2500, disableOnInteraction: false, }, pagination: false, }); put slider at left side Assistant To position the Swiper slider on the left side of the page, you can wrap it in a container with a `flexbox` layout or apply appropriate `CSS` […]

Owl Carousel RTL Navigation

User var owlid = ""; jQuery(function () { // Owl Carousel var owl = jQuery("#" + owlid); owl.owlCarousel({ items: 1.5, // Slightly more than 1 to show part of the next slide margin: 16, // Adjust margin to control spacing between slides rtl:true, loop: false, nav: true, // Enable navigation arrows dots: false, // Disable […]