Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
krileon wrote: Should be able to print the userlist perfectly fine. You mean you want to print the list without your template HTML surrounding it? You can use custom CSS to modify how a pages print layout will display by using the print @media query. Example as follows.
Alternative is add &tmpl=component to the URL in your browser then use print.
Please Log in or Create an account to join the conversation.
In your browsers address bar you can add the tmpl parameter with a value of component to force Joomla to only render the component, which would be just the userlist.Also, what exactly do you mean by the &tmpl=component option?
Please Log in or Create an account to join the conversation.
krileon wrote: You don't need a print button. Using CSS you can have what you're wanting just using normal browser print behavior.
In your browsers address bar you can add the tmpl parameter with a value of component to force Joomla to only render the component, which would be just the userlist.Also, what exactly do you mean by the &tmpl=component option?
Please Log in or Create an account to join the conversation.
krileon wrote: Should be able to print the userlist perfectly fine. You mean you want to print the list without your template HTML surrounding it? You can use custom CSS to modify how a pages print layout will display by using the print @media query. Example as follows.
Code:@media print { body { color: red !important; // this will only apply to printing! } }
Please Log in or Create an account to join the conversation.