Notifications
Clear all

Not working.....DidwpDiscuz comment form is missing but still missing...

7 Posts
3 Users
0 Reactions
3,847 Views
(@takeo)
New Member
Joined: 10 years ago
Posts: 4
Topic starter  

Nice to meet you.

I try to put wpDiscuz in my wp web sites. but it is missing.

Already I DID about<<wpDiscuz comment form is missing but still missing...>>

Tell me resolution way....I really need wpDiscuz comment form ..

this is my wp web site.

http://animalive.me/kawaii/maedaatsuko-pet-potts



   
Quote
 Tom
(@tomson)
Famed Member Admin
Joined: 10 years ago
Posts: 4233
 

Hi takeo,

We need admin access to find and fix the issue, could you please send admin login details to support[at]gvectors.com email address?



   
ReplyQuote
(@takeo)
New Member
Joined: 10 years ago
Posts: 4
Topic starter  

Thank you so much!

I will send soon with e-mail



   
ReplyQuote
(@takeo)
New Member
Joined: 10 years ago
Posts: 4
Topic starter  

TOM,

I sent login details to info@gvectors.com & support@gvectors.com

check it!

Thank you so much!

Im looking forword to it!

TAKEO



   
ReplyQuote
(@rahulis4ualways)
New Member
Joined: 10 years ago
Posts: 2
 
Hello,
I am using this plugin and enabled the options shown in the attached screen shot but still I cannot see the comment form there in the quesiton and answer however it show the form to the other pages.
Can I request to please check ?

Regards
Rahul


   
ReplyQuote
(@takeo)
New Member
Joined: 10 years ago
Posts: 4
Topic starter  

>TOM

hello,

Is this still working?



   
ReplyQuote
 Tom
(@tomson)
Famed Member Admin
Joined: 10 years ago
Posts: 4233
 
Hi Rahul,

All plugins have a pic of code which generates a new post type. In this code you should make sure it includes part. It allows to support comments:
"support" => array("title", "editor", "thumbnail", "author", "custom-fields", "comments")

The whole code should looks like this:

Please try to find this code in the QA plugin you use:

$args = array(
			'labels'             => $labels,
	                'description'        => __( 'Description.', 'your-plugin-textdomain' ),
			'public'             => true,
			'publicly_queryable' => true,
			'show_ui'            => true,
			'show_in_menu'       => true,
			'query_var'          => true,
			'rewrite'            => array( 'slug' => 'book' ),
			'capability_type'    => 'post',
			'has_archive'        => true,
			'hierarchical'       => false,
			'menu_position'      => null,
			'supports'           => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' );
	
register_post_type( 'dw-question', $args );
 


   
ReplyQuote
Share:
Scroll to top