some minimal, fast loading and small free wordpress themes

Here we have List of some minimal, fast loading and small free wordpress themes. Fast loading wordpress theme is good for seo. Try to use minimal theme, It will load faster and your visitor bounce rate will reduce. If you excepting high traffic to website than this wordpress theme list will be useful to you.

More Informative Links about wordpress themes

some minimal, fast loading and small free wordpress themes
Best of pinterest style free wordpress themes
Top 10 WordPress Themes ruling contemporary eCommerce Platform
100+ creative free portfolio wordPress themes
Unique Retro WordPress Themes – Free collection
100+ creative free portfolio wordPress themes
101+ Free wordpress responsive themes
Best 10 free wordpress insurance themes
Free magazine style wordpress themes
best free wordpress themes for personal bloggers
free 40+ professional three column wordpress themes
WordPress themes for Beer Bars and Drinks
Free WordPress themes for Yoga and Skin and Health
10 best free premium wordpress themes collection

 some minimal, fast loading and small free wordpress themes

Some time due host hosting or server capabilities you need use the minimal themes. Using fast loading wordpress themes always good for seo also. Google checks how fast your site is loading. If your wordpress site is taking too much time to loading than user will go away from your site. So many web bloggers use the minimal and fast loading free wordpress themes.

Here I created a list of some very fast loading and small free wordpres themes.

Work-a-holic

some minimal, fast loading and small free wordpress themes
some minimal, fast loading and small free wordpress themes

AfterBurner

some minimal, fast loading and small free wordpress themes
some minimal, fast loading and small free wordpress themes

Swift

some minimal, fast loading and small free wordpress themes

CopyBlogger

some minimal, fast loading and small free wordpress themes

WP-Simpy

Manifest

Modern Clix

Undedicated

Cardeo Minimal

Clean Home

The Journalist

Magatheme

Kallista

Minimal Gray

Pixelate

Ambiru

Emire

Simpla

Elite

Tarski

Agneka Simple

Textback

This list is created by wordperssapi.com. If you are having any suggestions about any minimal theme then please write to us on support@purabtech.in or put comment.

how to add buttons to wordpress wysiwyg editor

You can add buttons to wordpress wysiwyg editor using following code. For changing wordpress wysiwyg editor, we need to use the quick_tags.js file using hook.

how to add buttons to wordpress wysiwyg editor

But from wordpress 3.1 version we can customize the wordpress editor by using wordpress filter.

Adding more buttons to the editor is really easy. Simply paste this snippet into your theme’s functions.php file.

function enable_more_buttons($buttons) {
 $buttons[] = 'hr';
 $buttons[] = 'sub';
 $buttons[] = 'sup';
 $buttons[] = 'fontselect';
 $buttons[] = 'fontsizeselect';
 $buttons[] = 'cleanup';
 $buttons[] = 'styleselect';
 return $buttons;
}
add_filter("mce_buttons_3", "enable_more_buttons");
how to add buttons to wordpress wysiwyg editor
how to add buttons to wordpress wysiwyg editor

Note: If you are not wordpress developer then do not use above code. Ask your developers to do this for you.

Send email to site users about new wordpress posts

For increasing traffic of website. It is good to send email to users about new post. we have script for Send email to site users about new wordpress posts.

There are many wordpress plugins available for sending email but I given small code for sending email to wordpress users without using any wordpress plugins

Send email to site users about new wordpress posts
Send email to site users about new wordpress posts

If you are wordpress developer then only use following code. Open your functions.php file from your theme and put following code in that file. Just copy and paste the following code on your functions.php file:

function send_email_users($post_ID)  {
    global $wpdb;
    $usersarray = $wpdb->get_results("SELECT user_email FROM $wpdb->users;");
    $users = implode(",", $usersarray);
    mail($users, "New Article is Published", 'A new article have been published on http://www.purabtech.in. Please visit');
    return $post_ID;
}
add_action('publish_post', 'send_email_users');

You just need to change my domain name to your domain name and put that in your functions.php file. If you are having any issues then Please write to me.
This wordpress hack, tip or trick written by wordpressapi.

Here is some very useful links for wordpress.

Check Following articles for great wordpress hacks of the all the time.

how to create contact us page without wordpress plugin
Add the extra new users details or fields to wordpress without plugin
Display wordpress Tags In A Dropdown Menu without plugin
How to change the Visual Editor Font Size wordpress without plugin
Display wordpress Tags In A Dropdown Menu without plugin
wordpress pagination style without wordpress plugin
show popular posts without wordpress plugin in theme
How to send smtp email through wordpress without plugin
How to put digg button in wordpress without plugin
Get the recent comments without using wordpress plugin or widget
How to Add the social Bookmar Icons in WordPress theme without wordpress plugins
How to exclude pages from wordpress menu without plugin
Show related posts with wordpress post without using any plugin

smart way to use jquery in wordpress theme

I created many wordpress themes for various purpose and clients. Jquery is common requirement for all the project. That is for menu, slider or validation and for effects. In wordpress adding the Jquery is very easy because wordpress itself uses the Jquery for admin panel. They provided the wordpress api for adding the jquery in wordpress theme files.

smart way to use jquery in wordpress theme

wordpess developers are always looking for wordpress jquery plugin, wordpress include jquery, wordpress jquery ui, wordpress jquery noconflict, wordpress jquery theme, wordpress jquery version, wordpress jquery slider, wordpress jquery not working. Here is the solution

smart way to use jquery in wordpress theme
smart way to use jquery in wordpress theme

Following is the simplest way to add jquery in wordpress theme.You just need to use the following code in your wordpress theme  functions.php file.


function my_init() {
 if (!is_admin()) {
 wp_enqueue_script('jquery');
 }
}
add_action('init', 'my_init');

This way you can easily add the juqery in wordpress theme.

You can add the jquery from google also. Because google also like jquery. You just need to put the following function in your functions.php file.

function my_init() {
	if (!is_admin()) {

		wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js', false, '1.4.2');

	}
}
add_action('init', 'my_init');

Main reason adding jquery from google is that will load the jquery faster in your site.

How you can use jquery in your theme.

you can use the jquery anywhere in theme file as follows


jQuery(function ($) {
 /* You can safely use $ in this code block to reference jQuery */
});

For DOM ready function or onload event you can use the juqery as follows.


jQuery(document).ready(function($) {

//Your custom code will goes here.

})

You can use the above function for slider or menu and any effect in your wordpress theme.

If you want to know about more Jquery and wordpress then you can refer following articles.

wordpress and jquery conflicts – How to solve that
100+ jquery and CSS techniques and Tips and tutorials
jquery tips for wordpress theme developers
Fadein and Fadeout effect through javascript
minimize, restore, maximize and hide functionality with javascript without using jquery
Complete Javascript form Validation now easy ( Checkbox, Websites, Email, Maxlength)

If you face any issue using jquery with wordpress then please write comment or email me on support@purabtech.in

wordpress and jquery conflicts – How to solve that

Jquery is most powerful javascript framework and which is used widely. WordPress is most powerful and famous cms in the world. When you are using the jquery in wordpress that time you need to keep in mind some issues. WordPress itself uses the jquery in there framework. But when we tries to add the different versions of jquery and there plugins, there was issue or conflict with jquery. Sometimes I saw issue with some plugins due to different versions of jquery. I shown in this tutorial, how to solve the wordpress and jquery conflicts easily.

wordpress and jquery conflicts – How to solve that

wordpress and jquery conflicts
wordpress and jquery conflicts

Many people written the jquery wrapper around the jquery. They written in different style but when some jquery developers written or used same function name or same methods then jquery conflicts is happening.

WordPress itself uses the jquery for custom purpose. So you dont need to add the jquery script again in to wordpress. you just need to put following code in your wordpress theme for adding the jquery in your theme.


<!--?php wp_enqueue_script("jquery"); ?-->

Just put above lines in your header.php file for adding the jquery into your wordpress theme.

For removing the conflicts when you are using the jquery functions. just use following noconflict code in that.


 $.noConflict();
 // Code that uses other library's $ can follow here.


This technique is especially effective in conjunction with the .ready() method’s ability to alias the jQuery object, as within callback passed to .ready() we can use $ if we wish without fear of conflicts later:

<script type="text/javascript">// <![CDATA[
 $.noConflict();
 jQuery(document).ready(function($) {
 // Code that uses jQuery's $ can follow here.
 });
 // Code that uses other library's $ can follow here.
// ]]></script>

Following is the some example for remove the conflicts from jquery with wordpress.

Just use the jquery multiple times for each jqeury plugins. That is the easiest way to solve the jquery conflicts.

But if you are having some knowledge of jquery then use the following code for remove the conflict.

var j = jQuery.noConflict();
// Do something with jQuery
j("div p").hide();
// Do something with another library's $()
$("content").style.display = 'none';

For many purpose we use the jquery in wordpress. Mainly jquery is used for sliders and menu and gallery.
For menu or slideshow use jquery in following fashion.

[viral-lock message=”Solution code is Hidden! It’s Visible for Users who Liked/Shared This article on Facebook or Twitter or Google+. Like or Tweet this article to reveal the content.”]

<script type="text/javascript">// <![CDATA[
 $.noConflict();
 jQuery(document).ready(function($) {
 // Code that uses jQuery's $ can follow here.
 });
 // Code that uses other library's $ can follow here.
// ]]></script>

[/viral-lock]

If you still facing issue with jquery then please write to me on support@purabtech.in.

Here are some useful resources and links about Jquery and wordpress.

100+ jquery and CSS techniques and Tips and tutorials
jquery tips for wordpress theme developers
Fadein and Fadeout effect through javascript
minimize, restore, maximize and hide functionality with javascript without using jquery
Complete Javascript form Validation now easy ( Checkbox, Websites, Email, Maxlength)

wordpress plugins for statistics or stats

For wordpress website wordpress stats plugins are very important. For checking how much visitors are visited our site. You just need to install following any plugin in your wordpress. Here we have most famous and unique wordpress plugins for statistics or stats which are useful for adding the statistics to your website.

wordpress plugins for statistics or stats

wordpress plugins for statistics or stats
wordpress plugins for statistics or stats

WordPress.com Stats

http://wordpress.org/extend/plugins/stats/
There are hundreds of plugins and services which can provide statistics about your visitors. However I found that even though something like Google Analytics provides an incredible depth of information, it can be overwhelming and doesn’t really highlight what’s most interesting to me as a writer. That’s why Automattic created its own stats system, to focus on just the most popular metrics a blogger wants to track and provide them in a clear and concise interface.

Installing this stats plugin is much like installing Akismet, all you need is to put in your API Key and the rest is automatic.

WP-Stats-Dashboard

http://wordpress.org/extend/plugins/wp-stats-dashboard/
Display your blog’s stats graph plus your blog traffic, social engagement and social influence directly in your dashboard. See how you’re ranking on Alexa, check out your Technorati authority, monitor your ranking across multiple sites and much more. Once you install this plugin you’ll wonder how you ever managed to track your social media worth without it.

Feed Stats for WordPress

http://wordpress.org/extend/plugins/feed-stats-plugin/
Feed Stats for WordPress is a plugin that allows you to view your FeedBurner feed stats from inside of the WordPress admin interface.
Stats for your feed can be viewed from the “Feed Stats” page in the “Dashboard” section of WordPress.

iRedlof Google Analytics Stats

http://wordpress.org/extend/plugins/iredlof-google-analytics-stats/
iRedlof Google Analytics(GA) Stats is a wordpess admin panel plugin, I developed it cos i like to manage everything from one place. This plugin is like wordpress .com stats plugin but the difference between the two is that wordpress.com stats works with wordpress analytics stats system and iRedlof GA Stats works with google analytics stats system. Using this plugin, you get your GA stats straight from your account on google to your wordpress admin panel. Right now this plugin is in development phase and only have limited features i.e. visits/day, pageviews/day, etc to focus on just the most popular metrics a blogger wants to track and provide them in a clear and concise interface, but the full version will be loaded will all the features of google analytics which will provide you with an incredible depth of information. To use this plugin you need google analytics account.

Runescape User Stats

http://wordpress.org/extend/plugins/runescape-user-stats/
A very simple plugin to add runescape game stats on any page of the wordpress blog. This plugin allows blog owner to show th stats for any user on a page and post. This plugin also allows to display multiple runescape stats. you can visit the author website Rakesh Muraharishetty to view the authors game stats. Alternatively visit the plugin homepage Runescape Guide for updates and discuss the stats plugin for future enhancements.

WP-Stats

http://wordpress.org/extend/plugins/wp-stats/
Display your WordPress blog statistics. Ranging from general total statistics, some of my plugins statistics and top 10 statistics.

WordPress.com Stats Helper

http://wordpress.org/extend/plugins/wordpresscom-stats-helper/
This plugin helps you retrieve data from wordpress.com stats and put it on your blog.

Simple Stats Widget

http://wordpress.org/extend/plugins/simple-stats-widget/
This widget to record and display the last N visitor areas, from and time, and search engine access, installation and use is very simple.

Here is link for more useful wordpress plugins for various purposes.

wordpress-plugins/

wordpress-plugins-ecommerce-site

downloaded-free-wordpress-image-gallery-plugins

15-top-popular-wordpress-plugins

amazing-100-plugins-wordpress

ten-wordpress-plugins-for-improve-the-user-interactivity-and-experience

wordpress-plugins-bloggers

best-wordpress-plugins-for-creating-forums-in-wordpress

10-real-estate-wordpress-plugins

16-wordpress-plugins-wordpress-blog-install

how to submit theme to wordpress directory

Here in this article, we shown, how to submit theme to wordpress directory. If you are wordpress theme developer and want list your theme to theme directory.

When I started the wordpress theme development. That time I did R&D about submitting the wordpress theme to wordpress.org site.

how to submit theme to wordpress directory

 

how to submit theme to wordpress directory
how to submit theme to wordpress directory

You should use the following URL for submit the wordpress theme.

http://wordpress.org/extend/themes/upload/

First you need to register to wordpress.org site.

where to submit free wordpress themes

You need to more careful about following points.

Tags which are you going to use in the style.css that are should be good. following tags are not allowed by wordpress

seo
– adsense
– smo
– social bookmark
– custom footer
– google adsense ready
– infolinks
– buysell ads ready
– Jquery
– Jquery slider

You should follow the wordpress terms and conditions for submit your free wordpress theme to wordpress theme directiory.

If you need help for creating wordpress theme then Please check following article.

https://purabtech.in/how-to-create-wordpress-theme/

You can submit your wordpress theme to our site. Please send email to our team with theme screenshots and description. You need to send demo URL and download link for your wordpress theme. We will publish your wordpress theme on our showcase page.

You just need send email to our team on wordpressapi@gmail.com

You can check our wordpress theme showcase page:

Our Showcase for Free wordpress themes

If you still facing any issue then please write to me on support@purabtech.in.

Free html5 ready portfolio Alloka wordpress theme

DigCMS is our friend website. They launched the Free HTML5 ready portfolio wordpress theme called Alloka.

Alloka wordpress theme is nice jquery slider. It is very SEO friendly because of HTML5 features. It added the article, header, footer, nav tags in theme. Normally portfolio themes are not free but This theme is free for download.

Free html5 ready portfolio Alloka wordpress theme

Free html5 ready portfolio Alloka wordpress theme
Free html5 ready portfolio Alloka wordpress theme


High Quality (HQ) Free WordPres Themes collection, HTML5 Ready. Portfolio Style, News Paper Style, 1 Columns, 2 Columns, 3 Columns, Mixed Colums, Widgets,google adsense ready,  Seo Friendly, Jquery slider, and many more.

What’s on Alloka

  • HTML5 Ready
  • Widget Support
  • Fixed Width
  • 3 columns
  • Right Sidebar
  • Custom Footer
  • Google Ads
  • Gravatar Support
  • Custom Image Header
  • XHTML & CSS valid
  • WordPress 3.0
  • Menu Support
  • Premium version // Sub Page Menu
  • Premium version // Theme Options
  • Premium version // Banner Management
  • Premium version // Page Comment Templates
  • Premium version // FeedBurner Integration
  • Premium version // 2 Color Schemes ready
  • Premium version // Auto Generated Image (with or without custom fields)
  • Premium version // Beautiful Themes Options
  • Premium version // Features Post
  • Premium version // Social Bookmark integration
  • Jquery Slider
  • Logo and favicon configuration

[viral-lock message=”Download and Demo Link is Hidden! It’s Visible for Users who Liked/Shared This article on Facebook or Twitter or Google+. Like or Tweet this article to reveal the content.”]

Demo Download

[/viral-lock]

If you want to see the more HTML5 ready free wordpress themes then please check following article.

https://purabtech.in/fresh-html5-ready-wordpress-themes/

If you want to suggest us more HTML5 ready free wordpress themes then please suggest us. Write to us on support@purabtech.in

where to submit free wordpress themes

When I started developing the wordpress theme I was worried about where to submit the wordpress theme. I already developed many wordpress plugins but that plugins I submitted to wordpress plugin site. If you are wp theme developer and you want to publish your theme on multiple sites them here is list of URLs where you can submit free wordpress themes.

submit free wordpress themes
submit free wordpress themes

After doing googling I found some site where I can submit my wordpress theme and then I can get more traffic for my wordpress themes.

You can submit your wordpress theme to our site. Please send email to our team with theme screenshots and description. You need to send demo URL and download link for your wordpress theme. We will publish your wordpress theme on our showcase page.

You just need send email to our team on wordpressapi@gmail.com

You can check our wordpress theme showcase page:

Our Showcase for Free wordpress themes

Here I created the list websites where you need to submit your wordpress theme:

[viral-lock message=”Lists are Hidden! It’s Visible for Users who Liked/Shared This article on Facebook or Twitter or Google+. Like or Tweet this article to reveal the content.”]

[/viral-lock]

Share buttons in wordpress without wordpress plugin

I don’t recommend you to use wordpress plugin for adding the share buttons. we have simple code for add Share buttons in wordpress without wordpress plugin

Share buttons in wordpress without wordpress plugin

There are many wordpress plugins available for adding share button in wordpress or any website. I don’t recommend you to use the wordpress plugin for adding the share buttons like, facebook, twitter, linkedin, stumbleupon, delicious and Google buzz. Because when you install wordpress plugin for social buttons then that plugin will use your database and on every page view that will fire query to your database and your page view will became little bit slower. If you are having less visitors then this ok but if your site is having large visitors than you need to think about small issues also. Floating share button are very popular these days. You can easily add the sharebox which floating bar. Using following code you can add the share buttons without wordpress plugin.

I written some code for this and on my site share buttons are looking as follows:

Share buttons in wordpress without wordpress plugin
Share buttons in wordpress without wordpress plugin

I created file called sharebox.php and in that file just written following code.

<div id="sharebox" style="">
<a href="http://twitter.com/share" data-count="vertical" data-via="digcms">
Tweet</a>
<script type="text/javascript" src="http://platform.twitter.com/widgets.js">
</script>
</div>
<div>
<script>var fbShare = {url: <?php the_permalink() ?>,size: 'large',badge_text: 'fff',badge_color: '3b5998',google_analytics: 'true'}</script>
<script src="http://widgets.fbshare.me/files/fbshare.js"></script>
</div><div>
<script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script>
</div>
<div><a class='delicious-button'  href='http://delicious.com/save'> <!-- { url:"<?php the_permalink() ?>" ,title:"<?php the_title() ?>" } --> Save on Delicious</a></div><div style="display:none;">

<script type="text/javascript">(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a></a>

</div>

<div><a title="Post on Google Buzz" href="http://www.google.com/buzz/post" data-button-style="normal-count"></a>
<script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script>

</div><div><script type="text/javascript" src="http://platform.linkedin.com/in.js"></script>
<script type="in/share" data-counter="top"></script></div></div>

After creating sharebox.php file, open your single.php file and put following code in that file.

<?php include 'sharebox.php'; ?>

After that open your style.css file and put following code in that file.

#sharebox{display: block;margin-left: -85px;
position: fixed;top:105px;width:65px;
border:#ccc 1px solid;padding:2px}

If you need more buttons then you should prefer following article. In this article you will find the all the share button code. and you dont need to add any wordpress plugin for adding share or like buttons in wordpress site.

Please write comment for our article: Share buttons in wordpress without wordpress plugin

Add the social Bookmark Icons in WordPress theme without plugins