This is very little code snippet that will help you to hide some activity notification from the sitewide activity page. When someone joins in a group, we see a notification in sitewide activity page says, “Someone joined the group ABCâ€. This not that bad, but if your site is attacked by spam users, your activity… Continue reading Remove joined group notification from sitewide activity
Month: September 2014
How to write dynamic css in a php file in wordpress
It’s always standard to maintain a separate css file for styling, even for dynamic css that is generated by the theme options. Most of the theme developers include this dynamic styles into the header or footer using wp_head or wp_footer hook. How’s about having a totally separate css file for the dynamic styles? It’s pretty… Continue reading How to write dynamic css in a php file in wordpress
How to load a wordpress plugin at very last
You need to load your plugin at vert last? Well, sometimes we develop a simple plugin that is dependent to other plugins, something like add-on. So, in those cases, the addon plugins need to be loaded after the parent plugin. Here is a small snippet that need to put at the addon plugin to make… Continue reading How to load a wordpress plugin at very last