Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
1.0k views
in Q2A Core by
Hi! I've created a new page on Pages section from admin panel. I have put some custom html. But i Want to add a metadata, or o script  between <head>and </head> section only  on that page. Not in all the pages

ps: I don't have knowledge about php.

1 Answer

0 votes
by

You will need an advance theme and change the

function head_metas()
      

to

function head_metas()
        {
           

qa_html_theme_base::head_metas();

if($this->template=="NAME OF THE PAGE"){
                $this->output('<meta name="" content="''"/>');
            }

        }

 

This should be enough for you.

by
I will try and i will come back with the answer. Thx
...