Drupal Development

<p>Looking for an experienced Drupal developer for your next web project or mobile app? Look no further than Reinis Fischer! With over 10 years of experience serving small and medium businesses in Tbilisi and Riga, Reinis is your go-to expert for all things Drupal. <a href="https://www.reinisfischer.com/about">Contact him today</a> to learn more or check out his latest Drupal-related blog posts below.</p>

Unlocking the Potential of Automated Writing with Drupal and AI

| 1 views

With the advancement of technology and the increasing power of AI, it's becoming possible to automate more and more tasks, including writing. The use of Drupal as a content management system provides a powerful platform for automated writing. In this article, I will demonstrate how Drupal can be used to generate large amounts of automated writing with the use of Views and custom feed importers. The process starts with creating a custom feed importer to import geo-tagged data, which is then…


How to add Pin It button to Drupal 7

| 3 views

In this Drupal tutorial I will show you how to add Pinterest Pin It Button to Drupal 7 site using views and html.tpl.php file. I like it keep it simple, and I have created a separate view for all social share plugins (Facebook, Twitter, G+ and Pinterest). Each of the social sites came with his own JavaScript you have to load either to your template.php file or I prefer to add it to html.tpl.php in theme folder (If you have not it, consider creating it). Add Pinterest script to your html.tpl.…


Adding CAPTCHA to Drupal 7 Webform

| 16 views

CAPTCHA is an essential tool for preventing spam and malicious attacks on your website. Adding CAPTCHA to your Drupal 7 Webform is a straightforward process that can be completed in a few easy steps. In this article, we will show you how to add CAPTCHA to your Drupal 7 Webform to protect your website and improve the user experience. Step 1: Install the CAPTCHA module The first step is to install the CAPTCHA module on your Drupal 7 website. To do this, go to the Drupal website and download the…


Inject Block In Drupal 7 Node With Block Inject module

| 1 views

I was looking for options to inject Google Adsense ads into my Drupal blog. There are a few modules and tactics available. But today I found an excellent module - Block Inject. The Block Inject module allows for regions to be created and injected in the middle of chosen node types. You can create any number of regions to inject as well as select as many node types you would like these regions to be injected in. The blocks you assign to these regions will then appear in the middle of the body…


Some magic with Drupal, Flickr and Georgia

| 0 views

Update: Further developments of both tourgeorgia.eu and instagram wall have been stopped. I have created a new Travel Map section instead. Since I bought my first Android phone so many new thoughts and ideas has run through my head - I mean in opportunities of development. One of them I already realized - I created my custom Instagram wall, where I'm syncing all my photos taken by phone, and putting them on map. I really like this approach. Update: I have stopped further development of…


Import your Instagram photos to your blog using Flickr + Flickstagram

| 0 views

Recently I bought my first Android phone, and I found Instagram app really useful. What I like the most is it's mapping options, so you can add latitude/longitude auto, if your GPS is turned on. Then I wanted to import my Instagram photos to my blog and found some problems with it. As I'm using Drupal as my blogs CMS, at first I headed to Drupal.org to search for some ready built modules, to import my Instagram photos, so I could later use views, for example, to tune things up. There are few…


My first mobile post

| 0 views

<p>My first mobile post using Drupal powered blog.</p>


Drupal 7 Archive Drop Down Menu

| 0 views

In this tutorial I will show how to create Drop-down menu for your monthly archives using Drupal 7 and views. At first, please read this Drupal 7 tutorial on how to create Drupal archive page. By following this guide, you will learn how to create monthly archive page using views, and we go to add one minor change to change it to drop down menu. Open that views page, select contextual filters, and change settings from unformatted to jump menu: That's it, so easy. For more Drupal tutorials…


Add Menu Classes In Drupal 7

| 5 views

In this Drupal tutorial I'll show how to add menu classes to your Drupal 7 website using template.php file. Original of this tutorial has been found here. Add this function to your template.php file: <?php /** * theme_menu_link() */ function THEMENAME_menu_link(array $variables) { //add class for li $variables['element']['#attributes']['class'][] = 'menu-' . $variables['element']['#original_link']['mlid']; //add class for a $variables['element']['#localized_options']['attributes…


Add Viewport in the <head> in Drupal 7

| 2 views

In this Drupal Tutorial I will show how to add a new HTML in Drupal 7 head section. I'm using responsive design to enable my blog work pretty ok on mobile devices, but yesterday looking through Google PageSpeed Insights suggestions I found that there is no viewport defined, so it might not render CSS as I might want, but instead to scale webpage to device. Your page does not have a viewport specified. This causes mobile devices to render your page as it would appear on a desktop browser,…