Is this product free?
Yes. It is provided for free and there will be no charges incurred. You will need to create an account with us before you are able to download the extension. However, priority support is not provided for free products and it will only be assisted in the forums. If you need priority support, you will need to purchase it additionally.
|
489 |
SectionEx FAQS
1) How can I propagate SectionEx URLs to the entire Joomla! framework? I would like them to be generated on the FrontPage, for the Latest News module, and so on.
Riccardo Budini provided a great trick and explanation on how to achieve this. It will take you less than 5 minutes. Just check his article at: http://www.provisum-studio.com/sectionex-urls.pdf or http://www.joomla.rkuster.com/propagate-urls.html
2) My Print and PDF Icons don't work with SecionEx if SEO is enabled. How can I fix this?
Unfortunately you will have to add a few lines to the Joomla! core code. Go to "..\components\com_content\router.php". There you will see the "ContentBuildRoute" function. Just add the following few lines at the beginning:
function ContentBuildRoute(&$query) { // ugly hack for SectionEx // the following lines will make your PDF and Print Icons sing again :)
$menus = &JSite::getMenu(); $myMenuItem = $menus->getActive(); if (isset($myMenuItem) && (strcmp($myMenuItem->component, "com_sectionex") == 0)) $myMenuItem->component = "com_content";
// end of SectionEx hack ... }
I don't like this solution but I couldn't find anything better that would be elegant and simple enough. If you FIND a better solution then please don't hesitate and drop me a line.
|
2054 |
Are you the original author of SectionEx?
No, the founder of SectionEx is Robert Kuster . As he was caught up with his works and cannot cope up with the requests of SectionEx, he have given us the full rights over SectionEx.
|
441 |