Amarendra Bhushan
Forum Replies Created
-
Author can write, manage, and publish posts – their own not others.
Contributor can only write and manage, he/she cant publish it.
I’m having the same issue, it doesn’t work.
File to change: wp-content/plugins/login-with-ajax/widget/default/widget_out.php
=============
Change this:
<input type=”hidden” name=”redirect_to” value=”<?php echo esc_url($lwa_data[‘redirect’]); ?>” />
To:
<input type=”hidden” name=”redirect_to” value=”<?php echo esc_url($lwa_data[‘login_redirect’]); ?>” />
——————Agree, I’ve the same problem. New post doesn’t show comment box.
Forum: Plugins
In reply to: wp e-commerce clean uninstall then fresh installForum: Fixing WordPress
In reply to: Missing a temporary folder errorI added the first few lines to my .htaccess, so this is what I ended up with. And it works great
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress