• Fabrik V4.4.1 is now available.

    This version corrects the Admin issue introduced by V4.4. V4.4.1 is available through the Joomla Updater or for download through your My Downloads area of our website.

    Turns out a code change intended for our 5.0dev branch inadvertantly got pushed to the 4.x branch (by me, duh!). The javascript structure in 5.0 will change considerably and part of that change took effect with the inadvertant code change.

    We have reverted the code change and released 4.4.1. V4.4 has been retracted.

    Sorry for any inconvenience.

  • A new version of Full Calendar is now available.

    See the details here

Detail view

aje

Member
HI
Having problem with title tag not showing up right. I get <title>Turer</title> wich is the list label but i need the title to be the name to the specific name in the detail view.

I also need the opengraph tags to work. how do i do this ?
 
Hi,
You may want to use a custom template where you can set all these things and more just the way you want.
 
i have tried that but it dont seem to work. tried to write to write in manually in the fabrikar detail template but dont work. is there something i need to do ?
 
If you want to add <head> meta tags:
As @lousyfool said: create a custom template, add something like
$doc = JFactory::getDocument();
$doc->setMetaData( 'og:title' , 'texttext' );
 
Back
Top