Fix WordPress Themes From Databases



A new version (3.5.1) of WordPress Core comes with two default themes, Twentyeleven and Twentytwelve themes, sometimes when we change it and activated a new themes the backend or frontend became a blank page, to fix this you can login from ftp or ssh to your WordPress installation and remove a new themes recenlty activated, so you can access back your website because with this way WordPress will use the default themes.

Another way to fix blank page error when you activated a new themes is via database, to do this way first you must login to mysql database, you can use phpmyadmin and select an active database name, or if you familiar with console you can do it via mysql command shell.

In your database select from wp_options table (this name depend on your prefix tables), exactly on option_name column, watch value on template, stlesheet and current_theme, use below sql syntax:

SELECT * FROM wp_options WHERE option_name = 'template' OR option_name = 'stylesheet'
 OR option_name = 'current_theme';

Watch result from query above especially value on option_value column, what is listed there is your wp themes which active now, now you have to change that things to 'default' or 'classic' so your WordPress can access back.

Below is sql syntax to change active themes to default or classic template:  

UPDATE wp_options SET option_value = 'default' WHERE option_name = 'template';
UPDATE wp_options SET option_value = 'default' WHERE option_name = 'stylesheet'; 

UPDATE wp_options SET option_value = 'default' WHERE option_name = 'current_theme';

With two steps above your WP active themes use the default template back, now you can access your website to see if all things run normally.

If you have a problem with default themes, try to change it to another themes that you have in themes directory, just change option_value column with your themes name. maybe like this below:

UPDATE wp_options SET option_value = 'YOUR_THEMES' WHERE option_name = 'template';
UPDATE wp_options SET option_value = 'YOUR_THEMES' WHERE option_name = 'stylesheet'; 

UPDATE wp_options SET option_value = 'YOUR_THEMES' WHERE option_name = 'current_theme';

That's it and Thank You
Read More...

Simple Blogger Store Template The Green



The template build base on Awesome Inc which is a one of Blogger default template and the inspired come from my blog for WordPress Themes with shades of green. I am not good to give a name for something to say, so I give this template name The Green, not a good name I think, but it's okay as long as it's have a name to say and remember :-P).

Like usually the template not build with cart so the template look more simple, with carousel slider on the bottom, The Green looks more beautiful.

You can set the layout as you wish from dashboard template customize, adjust your width, color and more. make sure you use post template which come in readme file. If you familiar with css and html, you can make a nice and beautiful post template as you wish.

Below is the download link and demo link :


That's it and thank you.
Read More...

Another Simple Free Blogger Store Template

jacket store
Hello, we meet again, like my posting before, with this posting I will share to you blogger store template which build from default blogger "Picture Window template".

This template use carousel slider on a top of  blog store, and have a name jaketgue template.

Hehehe ... not a good name I think, what important here is, it have a name to called :-)

With three column on homepage this template look so simple and nice, like usually the store came without chart, because it using email and sms for order and bank transaction for paying, so it more like online catalog product.

You can display your product up to six product to make its nice looked, but you can still setup as you like, four or eight product is fine, just make it equal for your taste.

To see the demo and download this template see this link below :



Thank you for your time.
I hope this can be useful for someone who needed.
Read More...

Recent Posts Blogger With Jquery Animated Slider

recent posts
Recent Post is post that your just to publish, to show it on Blogger you can used couple of way, with static recent post that you can see on the bottom this blog or with image slider.

In this article would be show to you to do it using animated slider with jquery.

From your Dashboard >> Layout
add HTML/Javascript gadget, copy thhis code below and click save :


 <!--~~~~~~~~~~~~~~~~~ Include CSS and these JS files once: jQuery then plugin -->
<link href="http://blogger-related-posts.googlecode.com/svn/v2/style1.css" rel="stylesheet" type="text/css"></link>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script src="http://blogger-related-posts.googlecode.com/files/jquery.related-posts-widget-2.0.min.js" type="text/javascript"></script>
<!---~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->

<!--~~~~~~~~~~~~~~~~~~~~~~~ required HTML -->
<br />
<div class="related-posts-widget">
<!-- {
        blog_url:'http://YOUR-BLOGSPOT.blogspot.com'
        ,thumb_size:'s104-c'
 ,titles:0
 ,max_posts:12 <!-- Maximum post to show -->
 ,tags:[]
 ,show_n:4 <!-- you can increase or decrease post to show -->
 ,animate:'width'<!-- you can use fade, width or height -->
        ,stay_time:6000
 ,enter_time:600
 ,exit_time:400
} -->
loading..
</div>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->

You can see live demo in this link: http://allaboutdemo.blogspot.com/2012/11/recent-posts-widget-slider-animated.html

That's it, thank you.
Read More...

Create Blogger Static Home Page

On WordPress you can easilly change your defaut home page to static page from Setting on your Dashboard, but on blogger must have a trick to do that, below two method how to make a static home page on blogger.

Method 1

Go to Dashboard >> Settings >> Post and Comments >> Show at most 0 Posts on your main page.
On your Layout Add HTML/javascript gadget above blogpost widget.

blogger layout

With this method you must tweak blogger HTML code to hide Post bar with No Posts text in the middle and of course Home page link on the bottom which show if you not have a post to show. ( I think this is  a blogger default message).

Method 2

I am forget what url address i found this code when searching from search engine.
From your Dashboard >> Template >> Edit Html >> checklist Expand Widget Templates
Scroll down and find this code :  ]]></b:skin>

And below it copy and paste this code below:
<b:if cond="data:blog.url == data:blog.homepageUrl">
<style type="text/css">
.post, .sidebar, .date-outer, #blog-pager {display:none;}
</style></b:if>
<b:if cond="data:blog.url == data:blog.homepageUrl">
<style type="text/css">
body#layout .sidebar {display:inline;margin-top:200px;}
</style></b:if>

I add .date-outer to hide date from home page, you also can hide date from blogpost widget.

The code above will hide blogpost widget, sidebar and date.
If you only want remove a blogpost widget, just delete .date-outer and .sidebar from the code, delete it from row below:

.post, .sidebar, .date-outer, #blog-pager {display:none;}

That's it, i hope this can be useful, thank you
Read More...

Simple Blogger Store Template With Picture Windows

This template base on windows picture default template which modification and add carousel slider on footer area before copyright text.

Because this template base on default blogger template, you can still change the layout as you wish, as usually the template create without chart, so it look more simple, but keep your product looks fine on home page.

People who need and like this template can download from download link below and see live demo.

Thank You.
 
Read More...