An Envato Affiliate WordPress plugin to display envato market place item in WordPress Post and Page with your referral link.
This plugin has inbuilt click counter that help to track click on different envato item. Continue reading
An Envato Affiliate WordPress plugin to display envato market place item in WordPress Post and Page with your referral link.
This plugin has inbuilt click counter that help to track click on different envato item. Continue reading
As website URL field is not mandatory in wordpress comment form but many times spammer use it to get backlinks to their website that results tons of garbage and spam comment. To get rid of spammer simply remove website field from comment form.
Continue readingWordPress has only two contact fields in users profile that is email and website. That may not be sufficient as there are many social networking sites (like Google+,facebook, twitter etc) are available to connect with users. We can add more contact methods in contact info section. To add more fields edit functions.php
file in your WordPress theme folder and add below code.
function new_contactmethods( $contactmethods ) { $contactmethods['twitter'] = 'Twitter'; // Add Twitter $contactmethods['facebook'] = 'Facebook'; // Add Facebook $contactmethods['google'] = 'Google+'; // Add Google+ return $contactmethods; } add_filter('user_contactmethods','new_contactmethods',10,1);
Above code will add Twitter, Facebook and Google+ fields in contact info section