Joomla Flexicontent Anywhere

  • Extension type
    Plugins
  • Compatibility
    Joomla! 2.5 Native
  • Version
    1.0
  • Download link
    Read more and download
  • Release date
    Friday, 01 March 2013 13:50
  • Registration req.
    Yes
  • Licence
    GPLv2 or later
  • Developer
    DOKSoft
  • Type
    Commercial
  • Website
    doksoft.com/soft/joomla-flexi-anywhere/index.html
  • Voting
    Average rating
    3 votes
    • 1
    • 2
    • 3
    • 4
    • 5
  • Favourites
    341 Joomla Flexicontent Anywhere /downloads/extensions/62-plug-ins-joomla/341-joomla-flexi-anywhere.html

DOKSoft Joomla Flexicontent Anywhere is a plugin for your Joomla allows you to insert Flexicontent article rendered with its template or any items' fields into any place of your pages.

Aslo it could insert a lists of items (with or without pager) generated by SQL query (only in PRO version).

Has Free and PRO versions.

Here are some examples of macroses you can insert in any place of your articles:

1. Rendeing item with ID=35 with using its template:

{flexi:35}

2. Rendering `my_field` field of item with ID=24 with using call to according Flexicontent field plugin:

{flexi:24:my_field}

3. (PRO) Displaying 3 latest blog posts (type=`blog-post`):

{flexisql:SELECT c.id FROM # __content c JOIN # __flexicontent_items_ext f ON f.item_id = c.id JOIN # __flexicontent_types t ON t.id=f.type_id WHERE t.alias='blog-post' ORDER BY c.created DESC LIMIT 3}

4. (PRO) Displaying all blog posts (type=`blog-post`) by 10 items with pager:

{flexisql:10:SELECT c.id FROM # __content c JOIN # __flexicontent_items_ext f ON f.item_id = c.id JOIN # __flexicontent_types t ON t.id=f.type_id WHERE t.alias='blog-post' ORDER BY c.created DESC}