Showing posts with label Wordpress. Show all posts
Showing posts with label Wordpress. Show all posts

Wednesday, 6 July 2016

Password hashing in wordpress using PHP

php_logo_by_kadera_jan-d2xx9y9.png

WordPress doesn't ever store client passwords as plain content. This is the essential motivation behind why, on the off chance that you forget or lose your password, you have to reset it.

Your password is not stored by wordpress, regardless of the possibility that if your database is hacked, the hacker won't does not know what your original password was. This is the reason why we hashed our password.

Distinctive hashing calculations have contrasting levels of security in light of the relative sizes of the hash strings created.

Read more about Password hashing in wordpress using PHP visit Findnerd.

Monday, 28 December 2015

Why WordPress PHP Platform Best For Blogging Sites

WordPress, an open-source content management system(CMS), is the most popular platform among developers of blogging sites. More than 23.4% of top million websites were using WordPress PHP development as of January 2015. WordPress PHP development is now seen as the most reliable blogging platform, thanks to stability and options to customize through plugins and themes.
Why-WordPress-is-the-Best-Blogging-Platform

What Makes WordPress PHP Development the Best For Blogging Sites


WordPress is the best choice especially to those who are new to blogging as it provides full control over appearance and feel of a site. WordPress frees you from the hassles of coding and comes for free. Other virtues of WordPress PHP platform for blogging sites are:

  • Support for MySQL, SQLite, PostgreSQL (etc)
  • Automatic generation of RSS newsfeeds
  • Easy to trackback and pingback
  • Users can post comments
  • Options to enable or disable comments on a post by post basis
  • Spam protection
  • Requires user registration
  • You can protect private posts through password
  • Offers support for the XML-RPC interface, multiple authors, bookmarklets, etc

With WordPress, you can also publish content on multiple mobile platforms, like Android, iOS, Blackberry, Nokia, Windows Phone 7, WebOS etc. WordPress Theme is a robust feature of WordPress that allows you to make change in your site’s design with a single click of the mouse. There are no adverse impacts of WordPress Theme on your site’s content and you can make as many desirable changes as you want in your site’s design that too in quick time.

Organizing your site’s content was never so easy. WordPress comes with loaded features to help your site organize the content by day, month, year, author, blog, tag or category. Users don’t get a run around on your WordPress site when it comes to finding content they are looking for, thanks to flawless built-in search engine.

You can reach out to masses as WordPress gives you the brilliant option to translate into more than 70 languages. WordPress charges you nothing for code, meaning you can use its code for free to build new applications.

Extensive APIs of WordPress enables developers to customize their applications like the development of custom portal for news sites, some community forums for Php Questions and Answers and it also allows integration into other existing systems. WordPress gives you numerous free plugins to extend functionality and themes to make your WordPress site appear the way you want it to be.

As WordPress PHP development is highly cost-effective, flexible, scalable, secure and easier to use, it certainly becomes the best choice for blogging sites.

Read here similar type Web Mobile App Development Blog at our highly specific C, Java, PHP, Javascript, iPhone, android questions and answers forum about the topic described above “Why WordPress PHP Platform Best For Blogging Sites“. You can also learn much more about different programming technologies and can enhance your tech skills at FindNerd’s iOS Developer Forum.

Thursday, 16 July 2015

How to Remove Product Tabs

Hi,
If you want to remove all tabs or any particular tab for example description and reviews, then use the below code in the functions.php:

add_filter( 'woocommerce_product_tabs', 'FindNerd_remove_product_items', 58 );
function findnerd_remove_product_items( $items ) {
unset( $items['description'] ); // To remove description item
unset( $items['reviews'] ); //To remove reviews item
 
 
How to Remove Product Tabs

 
 
For complete set of steps/ code, Visit full Blog: How to Remove Product Tabs
 
FindNerd: Being an effective C, C#, Java , PHP forum here you can also post & look for various programming queries along with their solutions including android, java, PHP questions and answers etc.

Tuesday, 14 July 2015

How to Disable Comments Section on Wordpress Page

You need to follow below step to remove comment section in WP Page.
1) Make admin login on Wordpress.

2) You can view "Pages" menu on left panel. On mouse over you can view "All Pages" & "Add New" options. Please click at "All Pages

Disable comments, Wordpress

In this Blog, I am Explaining step by step procedure to Disable Comments Section on Wordpress Page. For the full set of steps Visit my full Blog.

- See full Blog at: How to Disable Comments Section on Wordpress Page
FindNerd is the right place to resolve PHP language problems. Here you can post PHP Questions and Answers.

If you have any query on PHP language, Post it at FindNerd’sPHP Developer Forum.

Thursday, 2 July 2015

How to Reorder Product Tabs

If you want to reorder product tabs, you can do this according to you wish as you want, just add the below code to your function.php.


<?php
add_filter( 'woocommerce_product_tabs', 'FindNerd_woo_reorder_tabs', 90 );
function FindNerd_woo_reorder_tabs( $woo_tabs ) {
$woo_tabs['reviews']['priority'] = 10; // Reviews first
 
 
 
- Read Full Blog at: How to Reorder Product Tabs


If you have any query related to PHP language then ask at our PHP Developer Forum, which is a right place where you can post and look for PHP Programming Questions and Answers