News:

Support the VirtueMart project and become a member

Main Menu

Print view with links

Started by naeska, December 12, 2016, 05:49:00 AM

Previous topic - Next topic

naeska

Hi!
When i press print button i see this: http://joxi.net/bmo9yp0IbEExAy
How delete links?


VirtueMart v3.0.16
Joomla v3.5.1
PHP v5.3.29

Studio 42

This is specific to some templates.
@media print {
  a[href]:after {
    content: " (" attr(href) ")";
  }
}

To hide the URL's from your printed output add after this rule:

@media print {
  a[href]:after {
    content: none !important;
  }
}

or remove original CSS code

naeska