Skip to main content
Topic: Add Meta Information (Read 1054 times) previous topic - next topic

Add Meta Information

Is it possible to add "meta information" without having to change the config.php file manually?

tela.png

I would like to add the meta tags:
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
DougBack

Re: Add Meta Information

Reply #1
@Douglas‍ No, it is not possible. To add meta info apart from the one accepted in the phprad app, you have to add your meta tag to app/views/layouts/main_layout.php.

 

Re: Add Meta Information

Reply #2
One solution found was with a custom script on the PHPRad itself.tela-1.png
Here is the code:
Code: [Select]
$(document).ready(function() {
    /* Tags para dispositivos moveis */
    $("head").append("<meta name=apple-mobile-web-app-capable content=yes>");
    $("head").append("<meta name=mobile-web-app-capable content=yes>");
   
});
DougBack