Ravi Shakya
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Advanced Comment] display nameYou cannot put first name instead of the username. Sorry for that ??
Forum: Plugins
In reply to: [WP Advanced Comment] Email filed not mandatoryYou have to use jquery for that. You will need to add a default email on the email field and hide that email field. and it should work.
Forum: Plugins
In reply to: [WP Advanced Comment] cant find Shortcode of FormOk try this approach then. select 1. Replace default wordpress comment form.
2. on the file remove comment_form()/comment_template() tag. If you put it there then two comment forms will be shown which will give error. Instead of that use the shortcode.
Forum: Plugins
In reply to: [WP Advanced Comment] cant find Shortcode of FormFirst choose
3. None of above
. and then use the shortcode.
You can find the id like this.
https://s32.postimg.org/pltawug7p/Untitled_1.jpgForum: Plugins
In reply to: [WP Advanced Comment] Comments not appearing1. Are you using comment form on post / page ?
If on post use “comment_form()” on single.php
If on page use “comment_form()” on page.php
Hope this helps ??
Forum: Plugins
In reply to: [WP Advanced Comment] Submit not working (circle turns infinitely)I have a question, why does your plugin need access to the wp-login.php?
The reason for this is it uses ajax to send the data so it needs to access wp-admin/admin-ajax.php file.
I can see your site is in ‘http’ but another url loads in ‘https’ https://ssl.webpack.de/smokelowandslow.com/wp-login.php. I think that is the problem. I think you should consult with your hosting provider.
Forum: Plugins
In reply to: [WP Advanced Comment] Submit not working (circle turns infinitely)The error is coming because it cannot access your wp-admin folder so it cannot use admin-ajax.php.
You should put this code on your .htaccess
<Files admin-ajax.php>
Order allow,deny
Allow from all
Satisfy any
</Files>Forum: Plugins
In reply to: [WP Advanced Comment] Submit not working (circle turns infinitely)can u give me a demo url to check the form ?? so i can take a deeper look . can you change the theme to twentysixteen or twentyfifteen and check again ? It might be a theme issue.
Forum: Plugins
In reply to: [WP Advanced Comment] Special characters error on email sent to adminI have tested it on gmail,yahoo,my own webmail. It is working fine. May be a outlook issue ??
Forum: Plugins
In reply to: [WP Advanced Comment] Special characters error on email sent to adminWhen i tired that nothing like that happened. Can u send me the email content you are trying ?? so i can take a deeper look.
Glad to help. If you like this plugin plz rate it. It will be very help ful to me. Thank you.
Go to WP Advanced Comment > Comment Forms > Edit/Add Comment Form > Under From Settings > Tick on Show User Name Field and Show User Email Field.
Forum: Plugins
In reply to: [WP Advanced Comment] cant find Shortcode of FormYou can put comment_form() tag inside the tab or you can use this shortcode [wpad-comment-form id=”YOUR_COMMENT_FORM_ID”].
Forum: Plugins
In reply to: [WP Advanced Comment] Design Questions1. Add this to your css
.wpad_content_comment {
border-bottom: none !important; // to remove it
}OR
.wpad_content_comment {
border-bottom: 3px solid #adff2f !important; // change 3px to 2px for thickness and change #adff2f to any color you want
}2. The feature you are asking is not available currently but thats a good idea. i will add that in next update.
Forum: Plugins
In reply to: [WP Advanced Comment] cant find Shortcode of FormYou don’t need shortcode for this to work.
Under How do you want to show the comment form ? on the edit comment form choose Replace default wordpress comment form. It should work.