Drupal Mysql Query to Fetch User Field Details and its Alias
Introduction In this posr, we will see how to prepare mysql query to fetch user…
August 05, 2018
Bootstrap has a simple solution to have sticky blocks in your html. I’ve given a simple example in my previous post: How to make sidebar as Sticky
It works like a charm. But, things get little frustrated when it doesn’t work in drupal 8.
I have 2 column theme in bootstrap 4, and wanted to use a block as sticky in right sidebar. I made the changes, and expected it to be sticky. However, it didn’t. I spent lot of time in digging the root cause of it.
By some brute force, I found that drupal is adding an extra DIV, before my sidebar with code like:
<div class="region region-sidebar-first">;
...
</div>
Due to this, sticky behavior was not being set somehow.
Then, my next objjective was to remove this div.
I enabled debug: True in services.yml, and saw that it was coming from a layout/region.html.twig
I copied that file to my theme folder, see before and after code:
<script src="https://gist.github.com/goravsingal/461a6e42485a8dd04d5636a79579df89.js"></script>
I saved the file, cleared cache. And, voila. It worked.
Introduction In this posr, we will see how to prepare mysql query to fetch user…
MongoDB CRUD Operations Mongoose provides a simple schema based solution to…
For programmers, who want to write about their codes. Its often the first…
I have been using drupal 7 from a long time, and setting up a dev environment…
Introduction Lets take a look at how forms are being handled in ReactJS. We will…
The problem comes while using FTPS. When developer uses login method of this…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…