Hello to everyone!
I just start to use this nice crm. System is really good, but I want to improve some mechanisms.
For example we have a standard document section, that has opportunity to download the document from crm.
But i want have a possibility to read pdf without downloading - just from the system page.
to do this i need to add php code something like this:
function pdf_viewer($attr, $url) { return '<iframe src="http://docs.google.com/viewer?url=' . $url . '&embedded=true" style="width: 600px; height: 500px;" frameborder="0">no frame eror</iframe>'; } add_shortcode('pdfview', 'pdf_viewer');
and write a shortcode with link like this:
[pdfview]http://mywww.url/link/to/uploads/documents/document.pdf[/pdfview] Could you help me explain, how can i do this? Thanks!
I just start to use this nice crm. System is really good, but I want to improve some mechanisms.
For example we have a standard document section, that has opportunity to download the document from crm.
But i want have a possibility to read pdf without downloading - just from the system page.
to do this i need to add php code something like this:
function pdf_viewer($attr, $url) { return '<iframe src="http://docs.google.com/viewer?url=' . $url . '&embedded=true" style="width: 600px; height: 500px;" frameborder="0">no frame eror</iframe>'; } add_shortcode('pdfview', 'pdf_viewer');
and write a shortcode with link like this:
[pdfview]http://mywww.url/link/to/uploads/documents/document.pdf[/pdfview] Could you help me explain, how can i do this? Thanks!
Comment