Saturday, July 23, 2016

Komal Modi: WordPress, BuddyPress and bbPress Theme available for sale

Komal Modi: WordPress, BuddyPress and bbPress Theme available for sale

WordPress, BuddyPress and bbPress Theme available for sale

Multipurpose wordpress News theme called ANYBUDDY which has functionality of BuddyPress and bbPress(Forum Integration). Woocommerce supported. This theme is for sale. For preview, do inquiry on komal.webdesign@gmail.com

Freebies : Olympics Sports Icons

This set of 45 icons was created by the design team at Icons8. Please note that this icon set is licensed under a Creative Commons Attribution 3.0 Unported. You may modify the size, color or shape of the icons. No attribution is required, however, reselling of bundles or individual pictograms is not cool. Please provide credits to the creators and link to the article in which this freebie was released if you would like to spread the word in blog posts or anywhere else.



Download the Olympic Sports Icon Set (.zip, 31.4 MB)

I too had a love story

Mr. Ravinder Singh wrote a very beautiful book. In 20th century, love can be happened like that. Where two people met on matrimonial site. He born in Sikh family in Kolkata. He wrote many books. But his very first book, he became so popular in youth. His stories are always belongs to young generation. This is the most reason became in his publicity. This book is tribute to his dead girlfriend. He said
After the unfortunate incident, I was looking for a reason to live. And I started to pen down the moments I had been through. I can’t deny that. I had to go back in time, close my eyes, relive the moments, tears rolled down and I wrote the words —Singh talking at the launch of I Too Had a Love St.

Saturday, June 25, 2016

Easily Customize WordPress’ Default Functionality


The absolute best thing about WordPress is how flexible it is. Don’t like the theme? Just change it. Need added functionality? There is probably a plugin you can download or buy. If not, build it yourself! You can change pretty much anything about WordPress. In this article, we’ll go over some easy ways to customize WordPress that you might not know about.



Change The Default Source Of jQuery

Another great thing about WordPress is that it comes locked and loaded with all kinds of JavaScript libraries, including jQuery. It also gives you the power to change the source of those libraries according to your needs. Let’s say we want to relieve our server of some stress by switching WordPress’ version of jQuery for a hosted solution (or CDN version). We can very easily change the source of jQuery with this function:
function add_scripts() { wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', 'http://code.jquery.com/jquery-1.7.1.min.js'); wp_enqueue_script( 'jquery' ); } add_action('wp_enqueue_scripts', 'add_scripts');
Three things are going on here. First, we’re using wp_deregister_script() to tell WordPress to forget about the version of jQuery currently being used. We then use wp_register_script() to re-register jQuery (as the script name), using jQuery’s own CDN version. Finally, we use wp_enqueue_script() to add jQuery to our theme or plugin. One thing to note here is that we’re using add_action(), not add_filter(), to add our scripts. Because we’re not making any changes to the content, but instead relying on WordPress to do something in order for our scripts to load, we use an action hook, not a filter hook. Read about both in the WordPress Codex.

Sunday, June 19, 2016

Say Hello to Webkit Filters


Say Hello to Webkit Filters

“A filter effect is a graphical operation that is applied to an element as it is drawn into the document. It is an image-based effect, in that it takes zero or more images as input, a number of parameters specific to the effect, and then produces an image as output.”