3pointross
Forum Replies Created
-
That is most likely the case,
Can you list what plugins you’re using here?
Thanks
-RossForum: Plugins
In reply to: [Panorama - WordPress Project Management Plugin] No Documents or Phases areaHeya,
That does sound like a conflict or potentially like the plugin didn’t get fully uploaded to the server. The fields for each section are dynamically loaded, so if some files didn’t make it to the server the fields wouldn’t show up.
Is first try uploading the plugin again, then try deactivating all the plains but Panorama. If it still doesn’t work let me know and I can trouble shoot further.
Forum: Plugins
In reply to: [Panorama - WordPress Project Management Plugin] Divide by zero errorHey Strapple,
That means you have PHP notices turned on which isn’t ideal for a live / production environment. These aren’t errors, just messages to developers letting them know there could be something wrong.
After you create a couple projects they should go away, but in the meantime it would be a good idea to turn off PHP notices.
Hope this helps
-RossHey Benny,
You’re looking to restrict user access to a post, page or custom post type so when a user logins in they can see all of the pages, posts and CPTs they’ve been granted access to?
If so, that sounds like a great use case for a membership plugin where you can create groups and assign access by group. I don’t know of one off the top of my head, but there are tons out there.
I’m a fan of Pippin’s plugins so Restrict Content Pro is probably the first place I’d look.
Hope this helps
-RossForum: Plugins
In reply to: [Panorama - WordPress Project Management Plugin] How to display publicAll you need to do is [project_list access=”all”], it will list all the projects regardless of access.
Best
-RossHi Benny,
I’m not exactly sure what you’re looking to do. Save the project as something that can be sent by e-mail?
If so you could try this plugin here, it will let you download any WordPress page as a PDF.
Best
-RossForum: Plugins
In reply to: [Panorama - WordPress Project Management Plugin] Add project programmaticallyHi Voltairemakeit,
Panorama uses custom post type with an ID of ‘psp_projects’ so you can use the wp_insert_post function to generate a new post.
All of the fields are either WordPress meta fields or ACF fields, so if you do some digging in the codex you can see how to programmatically populate those values as well.
You’re looking for update_field(); for ACF and update_postmeta(); for WP
Forum: Plugins
In reply to: [Panorama - WordPress Project Management Plugin] Project Restrict UsersHi Vysakhnair,
This feature isn’t available in the lite version. You can make projects private or password protect them if you want to restrict access.
You might be able to combine this with a membership plugin to do group management, however I don’t know of one specifically offhand.
Best
-RossHi Chris,
That’s odd. Are you still having this problem? Have you confirmed that all the files have been installed?
On first activation the project specific admin links don’t appear because of how we load them, but it should appear after a second click or page refresh.
Hi Christoph,
This thread here has some good ideas on how to make posts private by default.
The code I’d use is at the bottom, this could go into the bottom of your functions.php file.
function default_post_visibility(){ global $post; if ( 'publish' == $post->post_status ) { $visibility = 'public'; $visibility_trans = __('Public'); } elseif ( !empty( $post->post_password ) ) { $visibility = 'password'; $visibility_trans = __('Password protected'); } elseif ( $post_type == 'post' && is_sticky( $post->ID ) ) { $visibility = 'public'; $visibility_trans = __('Public, Sticky'); } else { $post->post_password = ''; $visibility = 'private'; $visibility_trans = __('Private'); } ?> <script type="text/javascript"> (function($){ try { $('#post-visibility-display').text('<?php echo $visibility_trans; ?>'); $('#hidden-post-visibility').val('<?php echo $visibility; ?>'); $('#visibility-radio-<?php echo $visibility; ?>').attr('checked', true); } catch(err){} }) (jQuery); </script> <?php } add_action( 'post_submitbox_misc_actions' , 'default_post_visibility' );Why is it not simply included in the control panel for the plugin itself? Wouldn’t help documentation make more sense to be WITH the plugin and not in a little file that in very inconvenient to get to?
This is a good idea, thanks for the suggestion DragonDon.
Tom — thanks for sharing your thoughts and coming to my defense :). You’re absolutely right, it is hard to find time to update free plugins when you’ve got paying projects. I do my best to create useful tools for the community, but I’m sure there are areas I could improve!
We include a link to the full documentation on the description and in the readme.txt. Is there another place that you expected it to be?
Forum: Plugins
In reply to: Editor Tabs plugin JavaScript conflictsNo problem, glad you like it!
Forum: Plugins
In reply to: Editor Tabs plugin JavaScript conflictsJust published an update that improved the styling, fixed some behavior and resolved the JS conflicts with drag and drop. Check it out.