How to integrate Google Optimize into CAOS
| |

How to integrate Google Optimize into CAOS

Recently I added possibilities for WordPress developers to modify CAOS’ tracking snippet using filters. Shortly afterwards I received an inquiry on the support forum asking if I could integrate Google Optimize in CAOS. Instead of continuously releasing updates, I figured I’d just explain, how you can write your own WordPress plugin, and integrate it into…

How to Remove Google Fonts from your WordPress Theme
|

How to Remove Google Fonts from your WordPress Theme

I’ve been getting a lot of requests lately, to implement a ‘Remove Google Fonts’-option into OMGF. After a lot of research (a few months!) I managed to implement an efficient way to do it. Version 1.9.0 contains an experimental option to remove any Google Fonts that are enqueued in your WordPress blog. But, for those…

How to add Social Share Buttons to WordPress without Plugins
| |

How to add Social Share Buttons to WordPress without Plugins

There are plenty of plugins for WordPress that allow you to add social share buttons to your Posts and Pages. Usually, these plugins are bloated. They require a lot of CSS-overrides to make it fit with your theme’s design. Some even slow your site down, because they’re not coded well or are packed with a…

Line Clamping: A Clean CSS Text-Overflow Alternative with PHP

Line Clamping: A Clean CSS Text-Overflow Alternative with PHP

Text-overflow: ellipsis. In human language: gracefully cut off any text and replace it with ‘…’ when there’s no more space left for text. An absolutely beautiful CSS property, don’t you think? Think again. This only works on the first and only line of text within a text block. It removes everything after that. Not Cool,…