How to structure sales of reports [closed]

The closest in my experience was probably working with customizable digital WooComerce products. Users edited the product on site and then purchased the customized version. From technical point of view my implementation did the following: Stored ongoing (before purchase) customizations in user meta On order paid detached customizations from user and transferred them to order … Read more

Private member page

You can do it without plugins, you just have to allow subscribers to see Private posts and pages, depending on what you want, so you have to put this code in your functions.php $subRole = get_role( ‘subscriber’ ); $subRole->add_cap( ‘read_private_posts’ ); $subRole->add_cap( ‘read_private_pages’ ); And then simply create a private post or page and it … Read more

Allow access on a page to just only a specific member

The same concept as Dominic’s (no need of a members plugin) but expanded to use a Meta Box, visible only for Admins, with a dropdown list with all the users (with exceptions). Code borrowed and adapted from this answer. Put in functions.php: // List Users add_action( ‘admin_init’, ‘wpse_33725_users_meta_init’ ); // Save Meta Details add_action( ‘save_post’, … Read more