Define Conditional Compilation Symbols at Visual Studio Solution Level
In Visual Studio 2019 and Visual Studio 2017, you can define the conditional compilation symbols at project level. Go to Project Properties > Build > General > Conditional compilation symbols to add compilation symbols. If you want to share these symbols across multiple projects, it is not possible using the GUI. Here is what needs…
Drupal 8 – Css/JavaScript Files not Loading for New Installation
If you have installed Drupal 8 on Windows server and noticed the plain html website without Css/JavaScript, here is a way to fix the issue. Go to plain html website. You will still be able to navigate to the website. Look for Administration > Configuration > Performance link. Click on this link to open up…
SuiteCRM – Email Module common issues and its fix
SuiteCRM Email module a really powerful module but when you try to use it, you will hit lots of roadblocks. Here are the list of common issues that I found when working with Email Module. SuiteCRM Version: 7.9.7 Importing Email Cannot import plain text email (fix available) Email Reply Does not add the header information…
Add Border and Shadow to WordPress Post Images Without Plugin
I wanted to add a nice looking border and shadow to my WordPress images added within the post but did not want to add a plugin. Plugin has its own cost in terms of performance so I did not want to add a plugin for the sake of adding border and shadow to the images.…
Make the Account or Contact Optional When Converting a Lead in SuiteCRM
If you want to use SuiteCRM in a way that is slight different from out of the box functionality, it is sometimes difficult to find the guidance online and requires code digging in order to find the solution. By default, when you are converting a Lead, you must create a Contact and Account. If your…
SuiteCRM – Create Email Template without Fancy aka Ugly Mozaik Editor
By default, when you want to create an Email template for your SuiteCRM and head to ALL > Email Template > Create Email Template, you will see a fancy Mozaik editor. You may drag and drop various sections in order to create a fancy email template but you will be frustrated when you want to…
How to Track Weekly/Monthly/Quarterly/Yearly Subscription in SuiteCRM
If you have a subscription based product and you want to track your subscription within SuiteCRM, it is very easy and SuiteCRM has a built-in functionality.
Stop Joomla Drop Down From Being Fancy
It took couple of hours to find out why Joomla was making my drop down (select tag) fancy and how do I stop it. Within the administration site, each select tag is being replaced by a library called Chosen (https://github.com/harvesthq/chosen) and if there are more than 10 items, it will show search box within drop…
Get Rid of “Want to Save Changes to Book1” in Microsoft Excel
Recently, whenever I open the Excel and close it, it always prompts me to save changes to book1 even though I have not made any changes. This started happening very recently. It is very strange that once the Excel is open and if I create new workbook and close it, it does not prompt me.…
Create Joomla Extension to Show Hello World on Every Page
I wanted to create a simple Joomla 3.x plugin to show HTML on every page including the administration pages. It was extremely difficult to find any sample online as I did not know the what to look for. Here is a very quick tutorial on how to show “Hello World” on each and every Joomla…