You can prevent spaces and specific unwanted sub strings in WordPress usernames (restrict usernames wordpress), you have to prepared a regexp for this. Prepare your regular expression and use the same in the below function. After that put this function in your theme’s “functions.php” that’s it. //Custom Function /* * add a filter to…
Remove WordPress version number from the head section and RSS feeds & also from version parameter in JS and CSS files By default WordPress adds a Meta tag in the headers which displays the current using WordPress version number. This version number is added just for tracking the site on WordPress, it is not…
PHP: Open Source E-Commerce Shopping Carts Software Choosing right shopping cart software is one of the most crucial steps to making your on-line business successful. A customer always needs to be able to purchase products as easily as possible, with a sense of security. A business owners always choose software that should be…
Tip #1 <?php $todayTimestamp = time(); /* Don’t Use.*/ $nextDay = $todayTimestamp + 86400; /* Do instead.*/ $nextDay = strtotime(‘+1 day’, $todayTimestamp); ?> The first one will not work exactly if you move into or out of daylight savings time. An extra problem is that the second example is more readable, specially if you add…
Automated shopping cart data migration service If you are on-line merchant and have lot of products and customers and have a very good business, but you want to get rid of the software you are using. There may be any reason a merchant want to use other software, the reasons may be …
WordPress stores the URL in his database, one of my colleague is new bie for WordPress.He has developed a new WordPress site and client has given all the data to him.After making the full site ready, he get stuck that four most important tables have URL in it, so should all the data need to…