How to slow down drupal response time? I need this in order to develop for REST API front-end the loading icons, cancel requests and other stuff related to fetch latency
Is there any module or maybe a way to add some delay (2-3 seconds) to index.php before render?
I building a product demonstration page, not a webshop.
We need a flag: purchased. I installed Drupal flag module, and configure this, but I want to print the product datasheet is purchased or not.
I add a field this content type, which name is productions, which call "purchased", and with the Rules Set data value, print this message.
Here I dont know how set data value to custom field. I attempt:
In my project I need facet search as block view that need to be included in content region. So I created View as block and added facet block in header of the view. Also need infinite scroll, so enabled ajax in view. The issue is that facet search ajax and View ajax causing conflict so that the query parameters are duplicating in URL.
I am a noob working on my first module, and I've hit a wall pretty quick. I've got a controller which generates an NxM table where N and M are passed in via the url. I want to add some simple textfields to the header row of the table, but the purpose of the textfields is not for collecting data, but rather for the user to print out the table with their nicely typed header information.
If I create this in pure html, I simply add an <input> in the table cells where needed, but I'm not sure how to accomplish this in Drupal.