TipsBangla | Tutorial Tips Tricks

Demonstration and Guide

By

Use Your Picture WordPress User Gravatar

Use Your Picture WordPress User how? It is simple I did not knew ever before I found the site http://en.gravatar.com/

Use Your Picture WordPress User

I was dreaming to use my own image as a WordPress gravatar. Now I know how to do that? This will work for both http://wordpress.org/ and http://wordpress.com/ . The process is so simple just you need to register with your email address you used for WordPress user or want to use. All done after registration upload your photo.

One important message for you that the email you registered for the gravatar site and it will work (same image) for your all WordPress website user. The image will show into wordpress user as a gravatar.

By

Clickable Phone Number WordPress

Clickable phone number for your site? I was wondering if I can set clickable phone number to my WordPress sidebar or bellow the title so that any users from thier mobile devices can call directly by clicking the phone number besides the desktop/laptop users can call via skype?clickable phone number

clickable phone number

 

 

 

 

 

I searches for this and found many options but I will not tell you all and make confusion. Here is the the code you can just put that as a link with the phone number to your site at anywhere you want. <a href=”callto://12508091443″>+1 (250) 809-1443</a> I putted this phone for one of my client here is the clickable phone number website link http://crushonphotography.com .

Also you can put “text” instead on phone number i.e. “Call Me” or a related image

<a href=”callto://12508091443″>Call Me</a> For using a custom image <a href=”callto://12508091443″><img src=”image url” alt=”Call Me” /></a>

By

WordPress Theme Detector Services

WordPress Theme Detector? Some of my clients ask me what kind of theme is used (giving some existing site). I searches in Google and found the solution to detect WP theme Detector services for free.

wordpress theme detector

You can easily detect either the site is created by WordPress or other platform. Also you can detect what kind of theme is used for the existing theme with the theme URL(If not deleted by the developer).

Ok no worries here is the Website URL giving the services of wordpress theme detector:

http://wpthemedetector.com/

http://whatwpthemeisthat.com/

Simple solution but effective and will save your time. Enjoy…

 

By

Child Theme why and how?

Child theme is the best option to edit your website instead of editing the theme core file. You may think why? Because you are doing a fantastic changed to your site by editing the core theme file but when you update the theme all of your hard working changes will disappear. So if you use a child theme and edit a lot will never loose anything and never break up your site. This process will keep intact your site.

theme-demo

What is the requirements for creating a child theme?

Nothing but only one single file that is style.css just add the code to your child theme style.css

/*
Theme Name: Beautypress Child
Support URI: https://tipsbangla.com/
Description: Beautipress Child Theme.
Author: Masud
Author URI: https://tipsbangla.com/
Version: 0.1
Tags: beautipress child
Template: beautypress
*/
@import url(“../beautypress/style.css”);

And just replace the beautypress with your main theme name. Say you want create a child theme for twentythirteen now put twentythirteen instead of beautypress to the style.css of your child theme. That’s all and you can install the child theme in both way using ftp just upload the child theme folder
theme

How to rename your child theme?

For renaming the child theme use the main theme name-child is the best practice i.e. twentythirteen-child.

How to install from the admin dashboard?

You need to create a zip file using winrar or something else. Then go to the appearance and theme then click install >upload browse and select the zip folder of your child theme finally click install. After installed click activate. Now you are ready to edit your theme create file with the same name of your child theme but not add all the code to it just put whichever you want to edit. Enjoy….

By

Uploading media increase the size limit

How do I increase the uploading media size in WordPress? This is a common question who want to upload a media to his site is greater than 7MB in size. This is possible don’t worry. For this you have to either contact to your hosting provider to do that or if you have the access you can do that yourself.

increasing file size upload limit

How Uploading media increase the size limit WordPress?

upload_max_filesize = 64M

post_max_size = 64M

max_execution_time = 500

max_input_time = 500

By adding the above code to php.ini or phprc file and replace with the default. That’s all but before you doing that consider how much you want to increase and really it is required or not?

I have done this for one of my client who needs to upload more than 7MB in size images for her photography site http://crushonphotography.com/ and working fine and she is happy with uploading media now. The site is hosted at https://www.dreamhost.com/ I used the ftp login and find the “.php” folder. Inside this folder you will get the the php version file i.e. 5.3 or 5.4 see the picture bellow. What I have done just open the 5.3 folder and download the phprc file then rename the phprc to phprc old now add the code and again upload that into the same destination Enjoy.

uploading media

If you do not have the php.ini or phprc file access please contact your provider to increase your uploading media size to your desire uploading media size.