Title: eloou's Replies | WordPress.org

---

# eloou

  [  ](https://wordpress.org/support/users/eloou/)

 *   [Profile](https://wordpress.org/support/users/eloou/)
 *   [Topics Started](https://wordpress.org/support/users/eloou/topics/)
 *   [Replies Created](https://wordpress.org/support/users/eloou/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/eloou/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/eloou/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/eloou/engagements/)
 *   [Favorites](https://wordpress.org/support/users/eloou/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/eloou/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/eloou/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better Post & Filter Widgets for Elementor] option to display in grid or in list](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/)
 *  Thread Starter [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [8 months, 2 weeks ago](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/#post-18692164)
 * thank you for your support. I’ve erase everything and done it again and everything
   work fine.
 * Great plugin !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better Post & Filter Widgets for Elementor] option to display in grid or in list](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/)
 *  Thread Starter [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/#post-18688987)
 * hello again.
   I have a strange behavior with the Tag and Taxonomy in the filter
   widget linked to the Posts Widget.
 * For example :
   Tag is town : Paris, Milan, TokyoTaxonomy is Wheather : Sun, Rain,
   Wind3 Posts with Paris but with 3 differents weather.and others posts with different
   town and weather.
 * On click on Paris in the filter Widget, the results are reload in the Posts Widget
   and all the Posts have the same weather !
 * On click on Reset, all the posts are display and they all have the same weather
   and the same town !
 * So i don’t know why but the Filter Widget inject the query data in the Posts 
   Widget.
 * I’ve put Query IDs on both widgets.
 * Could you help me on this trouble ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better Post & Filter Widgets for Elementor] option to display in grid or in list](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/)
 *  Thread Starter [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/#post-18687747)
 * Thank you for the fast reply !
   I just made another code so the search is on the
   title of the posts. also it show the title, the image, the date in a ul under
   the search bar :
 *     ```wp-block-code
       <script>document.addEventListener("DOMContentLoaded", function () {  const form = document.querySelector("#search-bar-XXXXXXXX");  const input = form.querySelector("input[name='s']");  // Création dynamique de la liste de suggestions  const resultsList = document.createElement("ul");  resultsList.id = "autocomplete-results";  form.querySelector(".search-container").appendChild(resultsList);  let debounceTimeout;  input.addEventListener("input", function () {    const query = this.value.trim();    clearTimeout(debounceTimeout);    if (query.length < 2) {      resultsList.style.display = "none";      return;    }    debounceTimeout = setTimeout(() => {      fetch(https://URL.COM/wp-json/wp/v2/posts?search=${encodeURIComponent(query)}&per_page=5&_embed)        .then(res => res.json())        .then(posts => {          resultsList.innerHTML = "";          if (posts.length === 0) {            resultsList.style.display = "none";            return;          }          posts.forEach(post => {            const li = document.createElement("li");            li.style.padding = "8px";            li.style.cursor = "pointer";            li.style.display = "flex";            li.style.alignItems = "center";            li.style.borderBottom = "1px solid #eee";            const a = document.createElement("a");            a.href = post.link;            a.style.display = "flex";            a.style.alignItems = "center";            a.style.textDecoration = "none";            a.style.color = "inherit";            a.style.width = "100%";            // Image à la une            let imgSrc = "";            if (post._embedded && post._embedded["wp:featuredmedia"] && post._embedded["wp:featuredmedia"][0]) {              imgSrc = post._embedded["wp:featuredmedia"][0].media_details.sizes.thumbnail.source_url;            }            if (imgSrc) {              const img = document.createElement("img");              img.src = imgSrc;              img.style.width = "50px";              img.style.height = "50px";              img.style.objectFit = "cover";              img.style.marginRight = "10px";              img.style.borderRadius = "4px";              a.appendChild(img);            }            // Texte            const textContainer = document.createElement("div");            const title = document.createElement("div");            title.textContent = post.title.rendered;            title.style.fontWeight = "bold";            textContainer.appendChild(title);            const date = document.createElement("div");            const postDate = new Date(post.date);            date.textContent = postDate.toLocaleDateString();            date.style.fontSize = "0.8em";            date.style.color = "#666";            textContainer.appendChild(date);            a.appendChild(textContainer);            li.appendChild(a);            resultsList.appendChild(li);          });          resultsList.style.display = "block";        })        .catch(() => {          resultsList.style.display = "none";        });    }, 300);  });  // Fermer la liste si clic en dehors  document.addEventListener("click", (e) => {    if (!form.contains(e.target)) {      resultsList.style.display = "none";    }  });});</script>
       ```
   
 * and the css for the autocomplete box
 *     ```wp-block-code
       /* Suggestions autocomplete */#search-bar-XXXXXXXX #autocomplete-results {  list-style: none;  position: absolute;  top: 46px;  left: 0;  right: 45px;  background: white;  border: 1px solid #ccc;  border-top: none;  max-height: 300px;  overflow-y: auto;  margin: 0;  padding: 0;  z-index: 999;}#search-bar-XXXXXXXX #autocomplete-results li {  padding: 8px 12px;  cursor: pointer;}#search-bar-XXXXXXXX #autocomplete-results li:hover {  background-color: #f2f2f2;}
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better Post & Filter Widgets for Elementor] option to display in grid or in list](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/)
 *  Thread Starter [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/#post-18687660)
 * is there a way to have autocompletion in the search bar ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better Post & Filter Widgets for Elementor] option to display in grid or in list](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/)
 *  Thread Starter [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/#post-18685391)
 * Sorry for my lame question, i didn’t see the first input to fill in the widgets
   settings.
 * Thank you very much for you time.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better Post & Filter Widgets for Elementor] option to display in grid or in list](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/)
 *  Thread Starter [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/option-to-display-in-grid-or-in-list/#post-18685303)
 * thank you for your fast reply.
 * Is there a how to implement the different widget ?
 * because i put all of them in one page and nothing work.
 * The search bar reload the page, doesn’t display the right result.
 * the left column filter doesnt filter the posts.
 * also the asc/desc filter doesnt work.
 * WP+elementor pro+hello theme latest version
   2 columnsLeft – with filter widgetcenter–
   with search bar widget + sorting widget– post widget
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AnWP Post Grid and Post Carousel Slider for Elementor] The page crashes with the new version of Elementor 3.26.0](https://wordpress.org/support/topic/the-page-crashes-with-the-new-version-of-elementor-3-26-0/)
 *  [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/the-page-crashes-with-the-new-version-of-elementor-3-26-0/#post-18202789)
 * [@jlugros](https://wordpress.org/support/users/jlugros/) Thank you for the tips,
   it works !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ShopEngine Elementor WooCommerce Builder Addon – All in One WooCommerce Solution] problem with Variation Swatches and htaccess](https://wordpress.org/support/topic/problem-with-variation-swatches-and-htaccess/)
 *  Thread Starter [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/problem-with-variation-swatches-and-htaccess/#post-17775208)
 * hello
 * i just switch off the swatch variation module and the problem is solved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Elementor Website Builder - more than just a page builder] Warning notification after Elementor update](https://wordpress.org/support/topic/warning-notification-after-elementor-update/)
 *  [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/warning-notification-after-elementor-update/#post-17712436)
 * for those who want to fix it before new update :
   [https://github.com/elementor/elementor/issues/25837](https://github.com/elementor/elementor/issues/25837)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Elementor Website Builder - more than just a page builder] Warning notification after Elementor update](https://wordpress.org/support/topic/warning-notification-after-elementor-update/)
 *  [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/warning-notification-after-elementor-update/#post-17712350)
 * same problem here.
 * The rollback to v3.20.4 fixed this problem
    -  This reply was modified 2 years, 2 months ago by [eloou](https://wordpress.org/support/users/eloou/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Addons for Elementor] Foreach array crash using display conditions, newest vers](https://wordpress.org/support/topic/foreach-array-crash-using-display-conditions-newest-vers/)
 *  [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/foreach-array-crash-using-display-conditions-newest-vers/#post-17689504)
 * Same Here, same problem.
 * Fresh install 
   WP 6.5.2Elementor 3.21.0EHFB 1.6.27
 * I solve the problem with a downgrade of EHFB to 1.6.26
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Addons for Elementor] Latest version broke header and footer](https://wordpress.org/support/topic/latest-version-broke-header-and-footer/)
 *  [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/latest-version-broke-header-and-footer/#post-17245127)
 * does someone knows if the 1.6.19 correct the bugs of the 1.6.18 ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Addons for Elementor] Version 1.6.18 bugged](https://wordpress.org/support/topic/version-1-6-18-bugged/)
 *  [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/version-1-6-18-bugged/#post-17241953)
 * same here
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Directorist: AI-Powered Business Directory, Listings & Classified Ads] Password protected listing](https://wordpress.org/support/topic/password-protected-listing/)
 *  [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/password-protected-listing/#post-16940405)
 * yes, i’m using the plugin Members by MemberPress and it works perfectly
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Directorist: AI-Powered Business Directory, Listings & Classified Ads] Translate information label on single listing](https://wordpress.org/support/topic/translate-information-label-on-single-listing/)
 *  Thread Starter [eloou](https://wordpress.org/support/users/eloou/)
 * (@eloou)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/translate-information-label-on-single-listing/#post-16940356)
 * Hi
 * thank you for your answer but those fields are not editable on the single layout.
 * here my screenshot : [https://ibb.co/C0xGrN0](https://ibb.co/C0xGrN0)
 * WordPress : 6.2.2
   Directorist : 7.6.1Php : 8.2.8

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/eloou/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/eloou/replies/page/2/?output_format=md)