Skip to Content Skip to Menu

Printing a User List

3 weeks 1 day ago - 3 weeks 1 day ago #340584 by RobWilkinson
Printing a User List was created by RobWilkinson
I can print a user list satisfactorily by manually adding  ?tmpl=component to the URL 
I am not able to adjust the menu link to do that automatically. because it is not editable.

Is there a way I can add the ?tmpl=component automatically
Last edit: 3 weeks 1 day ago by RobWilkinson.

Please Log in or Create an account to join the conversation.

3 weeks 1 day ago #340585 by RobWilkinson
Replied by RobWilkinson on topic Printing a User List
I have found a workaround using an external URL rather than a community builder menu item

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 49007
  • Thanks: 8374
  • Karma: 1455
3 weeks 1 day ago #340590 by krileon
Replied by krileon on topic Printing a User List
External URL works, but it's generally better to actually do this from CSS. The below would let you restyle the page to display however you like during print.
Code:
@media print { YOUR_CSS_HERE }

With this you don't need special URLs. Simply press the print button and you're good to go. Below is an example for Cassiopeia template.
Code:
@media print { body.view-userslist > :not(.site-grid), body.view-userslist > .site-grid > :not(.container-component), body.view-userslist > .site-grid > .container-component > :not(main), body.view-userslist .cbUserListTitle, body.view-userslist .cbUserListHead, body.view-userslist .cbUserListSearch { display: none !important; } body.view-userslist > .site-grid > .container-component { grid-column: -1 / 1 !important; } body.view-userslist > .site-grid > .container-component > main { margin: 0 !important; } }

This then gives you the below for example.

Non-Print: 
Print: 


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

3 weeks 1 day ago #340591 by RobWilkinson
Replied by RobWilkinson on topic Printing a User List
Again, thank you for your responsiveness.
I have a custom nicepage template. I am struggling to understand where to actually put that CSS.

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 49007
  • Thanks: 8374
  • Karma: 1455
3 weeks 1 day ago #340592 by krileon
Replied by krileon on topic Printing a User List
You can either use Joomla's built in user.css support for custom CSS or you can use CBs built in CSS override functionality shown below.

www.joomlapolis.com/blog/kyle/18711-template-css-overrides-made-easy

That example however is for Joomla's Cassiopeia template. I've no idea if it'll work with your custom template, but the concept is the same regardless. You just need to surround print specific CSS with the @media print {} behavior shown above and you can write custom print CSS for any page you want.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum