VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: naeska on December 12, 2016, 05:49:00 AM

Title: Print view with links
Post by: naeska on December 12, 2016, 05:49:00 AM
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
Title: Re: Print view with links
Post by: Studio 42 on December 12, 2016, 13:05:50 PM
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
Title: Re: Print view with links
Post by: naeska on December 12, 2016, 15:19:49 PM
Thanks!!!!!!!!!! :)