Home > WordPress (Page 2)
MailPoet

How to Remove MailPoet CSS

MailPoet is a free email newsletter plugin for WordPress. It is a powerful email marketing software for WordPress users and bloggers. It comes with deep integration with WordPress as a plugin and great email delivery rates comparable to those of other email marketing software.I am using this plugin for some

View Full Article
Redirect WordPress Page

How to Create Custom Registration URL in WordPress without Plugin

To fight spam registration, this could be helpful. In this tutorial, we will use WordPress function wp_safe_redirect().First, create a page. No need to add content. We will use this page's slug. Suppose it's "register".Paste following code in your theme's functions.phpadd_action('template_redirect', 'weusewp_custom_reg'); function weusewp_custom_reg() { if( is_page('register')) {

View Full Article