Skip to content

Printer Friendly Version Of Your Web Page Content

2010 August 26

Some times we need to put an option in our web page so that user can take a print of the content of the page like ‘Click here to Print’ button.

For printing the content we can use JavaScript so that user can print the content of the page only and the other graphics, page layout will be ignored at the time of printing.
Clinet side printer version

Continue Reading…

Get the URL of the current page of your website

2010 August 17
by admin

For any reason we need to get the URL of the current page of our website.
If your visitor submits a blog post or they want to share any page of your site, then it is very important to retrieve the URL of the same page.
There are plenty of other reasons as well. Here is how you can do that. Continue Reading…

How to Create Simple Wordpress Breadcrumbs?

2010 August 9
by admin

Breadcrumbs is a navigation aid used in user interfaces. It gives users a way to keep track of their locations within programs or documents. Breadcrumbs typically appear horizontally across the top of a web page, usually below title bars or headers. They provide links back to each previous page the user navigated through to get to the current page or—in hierarchical site structures—the parent pages of the current one.

You can use Breadcrumbs feature in your Wordpress post page or content page to show the hierarchy.

Home » Parent Page » Sub Page1 » Sub Page2
Continue Reading…

Wordpress Contact Form Plug-in With Attachment Feature

2010 August 6
by admin

There are lots of plug-ins available for Wordpress Contact Form. But you can create your own contact form plug-in with file attachment feature. It is a simple procedure to start writing plug-in codes from scratch.
Contact-Us plug-in
Continue Reading…

Create a simple News Ticker for your website

2010 August 5
Comments Off
by admin

Simple News Ticker
If we want to display any news in our websites, news ticker is the best visible solution for this. In this tutorial we will learn how to create the simple scrolling news ticker.

The news ticker is controlled by CSS and JavaScript. Here I have attached the CSS and the JavaScript file for download and they are ready to implement.

The main task is to create the news container and for this you can put the following code in your page inside the body tag.
First include news.css file and news.js file inside the head section of your page. You can download these two files from the download link at the end of this post.

Continue Reading…

Simple PayPal integration in your site

2010 August 4
by admin

Online payment is the hype of today’s web world. For getting any service or product we prefer to online payment method and PayPal is the most secure payment gateway. If you have a very basic knowledge of PHP, you can easily implement the simple PayPal gateway in your site.
paypal image

Put the following codes in your PHP page where you do want to place a Pay button.
Continue Reading…