Frontend Comment Manager

This topic contains 24 reply and 2 voices, and was last updated by towhid 9 years, 2 months ago
Viewing 15 Posts - 1 through 15 (of 24 total)
Author Posts
November 23, 2014 at 12:13 pm 30991
towhid What is the shortcode to display multiple post-types? [wpuf_comments post_type=”product”] works for one, however we have 12 types to display.
November 23, 2014 at 3:04 pm 30993
towhid towhid

Hello kiwi,

Currently we do not have this feature available. I have discussed about this feature with our developer team. They will check and implements this feature in our next update. If you need this urgent you can hire a developer to develop this.

Thank You. 🙂

May 7, 2015 at 10:08 pm 43368
kiwi kiwi

Looking for an update to this. We have multiple post-types and any comments applied to these posts are not displaying in the comment manager.

How can we display and manage comments for multiple post-types?

Kiwi

May 7, 2015 at 10:19 pm 43370
kiwi kiwi

I’m assuming it has something to do with these lines in the comments.php file but I don’t know how to modify to include the additional post-types. Please advise.

function shortcode( $atts ) {
extract( shortcode_atts( array(‘post_type’ => ‘post’), $atts ) );

May 10, 2015 at 1:41 pm 43514
towhid towhid

Hello Kiwi,

I can see comments for below post type. Can you check your self and let me know please.

[wpuf_comments post_type="product"]

[wpuf_comments post_type="post"]

[wpuf_comments post_type="page"]

Thank you 🙂

May 12, 2015 at 3:29 am 43627
kiwi kiwi

Yes we have tried this in the past, however we end up with a comment system for each post-type – 15+ for us which is not suitable at all.

We need one comment system containing comments for ALL post-types.

Regards
Kiwi

May 12, 2015 at 5:03 pm 43761
towhid towhid

Hello Kiwi,

I am really sorry to say that we do not have this kind of feature right now. I will discuss about this feature with our developer team. If you need this feature urgent you can customize the addon or you can hire a developer.

Thank you 🙂

May 12, 2015 at 6:54 pm 43777
kiwi kiwi

We are going around in circles. This is what you said 5 months and 2 weeks ago!

‘I have discussed about this feature with our developer team. They will check and implements this feature in our next update…..’

We have been patiently waiting for this feature for a long time. We paid for this plugin and it has not been updated in years. In the meantime, the core WordPress platform has updated numerous times – no wonder users of these plugins are experiencing issues.

Is anyone actually developing these plugins anymore?
If you have spoken to your development team 5 months ago where is the update?
Is Tareq still running WeDevs?

If you guys are going to charge people for these plugins you need to be able to support them and keep them updated regularly. Like many other users who have invested time and money in multiple Wedevs plugins the lack of support and updates is becoming both frustrating and disappointing.

Enough is enough guys. Lets see some real support and development on these plugins asap please.

Kiwi

May 13, 2015 at 12:43 pm 43844
towhid towhid

Hello Kiwi,

I know your importance. Please do not loose your patience. We have already developed some feature and fixed some bugs for WP User Frontend Pro.
We need to test the plugin thoroughly before release the new update. We will very soon release the plugin when the testing done.

Thank you 🙂

May 13, 2015 at 3:21 pm 43864
kiwi kiwi

The Userfrontend Pro plugin is a separate issue – we will await the new plugin release for this. However, the Comment Manager plugin issue is a different problem and we need a solution to this now.

We have been very patient and 5 months ago we were happy to wait for the new release, however now it has become a major problem for our users and we need a fix asap.

There is only one file (comments.php) which contains the coding change needed. Can Tareq, yourself and the development team please take a look at this file and confirm what change is required to allow multiple post-types.

Your urgent attention is appreciated.

Kiwi

May 18, 2015 at 12:21 pm 44329
towhid towhid

Hello Kiwi,

First, create a custom post type in functions.php in your active theme.

function codex_book_init() {
	$labels = array(
		'name'               => _x( 'Books', 'post type general name', 'your-plugin-textdomain' ),
		'singular_name'      => _x( 'Book', 'post type singular name', 'your-plugin-textdomain' ),
		'menu_name'          => _x( 'Books', 'admin menu', 'your-plugin-textdomain' ),
		'name_admin_bar'     => _x( 'Book', 'add new on admin bar', 'your-plugin-textdomain' ),
		'add_new'            => _x( 'Add New', 'book', 'your-plugin-textdomain' ),
		'add_new_item'       => __( 'Add New Book', 'your-plugin-textdomain' ),
		'new_item'           => __( 'New Book', 'your-plugin-textdomain' ),
		'edit_item'          => __( 'Edit Book', 'your-plugin-textdomain' ),
		'view_item'          => __( 'View Book', 'your-plugin-textdomain' ),
		'all_items'          => __( 'All Books', 'your-plugin-textdomain' ),
		'search_items'       => __( 'Search Books', 'your-plugin-textdomain' ),
		'parent_item_colon'  => __( 'Parent Books:', 'your-plugin-textdomain' ),
		'not_found'          => __( 'No books found.', 'your-plugin-textdomain' ),
		'not_found_in_trash' => __( 'No books found in Trash.', 'your-plugin-textdomain' )
	);

	$args = array(
		'labels'             => $labels,
		'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( 'book', $args );
}

Second, put this shortcode [wpuf_comments post_type="page"] in a page.

Third, add a new book and view that book on browser

Fourth, leave a comment.

Finally, browse the page where the shortcode set. The page will show you all the comments of that particular post type.

I hope you understand now, how to show up comments of all post type.

Thank you 🙂

May 21, 2015 at 5:55 pm 44820
kiwi kiwi

Hello,

We already have multiple post-types already setup – this is not the issue.

As advised, we can display the comments for each post type individually. The problem is we want to combine all out post type comments in a single comment manager. There is no point having 12+ comment manager windows on the same page – we need a single comment manager interface to display all.

The solution is in the file comments.php file but we don’t know how to modify to include the additional post-types. Eg.

function shortcode( $atts ) {
extract( shortcode_atts( array(‘post_type’ => ‘post’), $atts ) );

Please advise how we adjust the code to display all post types in a single comment manage instead of just the ‘post’ post-type only.

Kiwi

May 30, 2015 at 8:20 am 45615
kiwi kiwi

Can we get an update on how to fix this problem please. We have provided all the detail of your own code to troubleshoot the problem – now we just need a solution asap.

Kiwi

May 31, 2015 at 3:54 pm 45735
towhid towhid

Hello Kiwi,

I am trying to find out a solution for it. Please allow me sometimes. Hope I will come back to you with a right solution.

Thanks

June 12, 2015 at 7:28 pm 51886
kiwi kiwi

Support,

It has been nearly 2 weeks since your message asking for time to resolve this problem. We have been asking for a solution to this problem for nearly 7 months now. How long do you expect us to wait for a solution to this?

This is getting ridiculous guys. Still not support. Still no plugin update since 2014. Where is the support for this plugin which we have invested real time and money?

We need to know ASAP now. What is the answer to this problem????????????

Kiwi

June 14, 2015 at 6:12 pm 52041
towhid towhid

Hello Kiwi,

I am sorry for my delay. I wait you long days for a solution. But honestly speaking the solution is not easy so far. I have to modify lots of code. I will request you to please wait couple of days. Hope I will come up with a right solution.

Thanks

Viewing 15 Posts - 1 through 15 (of 24 total)