Support Joomla!
Search: Advanced Search
Serving 3672 extensions to the community. Last updated today.

Editor Blogs






Lost Password?
No account yet? Register

Who's Online

We have 709 guests and 51 members online

Directory Support

Rules
Using this Site

Disclaimer

The extensions and reviews listed in this area have been submitted by the community and their listing does not constitute or imply endorsement, recommendation, or favouring by Joomla!/OSM.

This content is provided as a free service to our visitors, and, as such, Joomla!/OSM cannot be held liable for the accuracy of the information. Visitors wishing to verify that the information is correct should contact the parties responsible for authoring the content and/or development of the extension.


Are you seeing blanks over some extensions' compatibility, license and type field? Head over to JED forum to learn why.
Chrono Extensions(4) | Reviews(2) | Favourites(1)
DT Donate
 easy to customize, December 28, 2007
1 of 1 people find this review helpful:

DT Donate Very slick component! With all of the possible customizations I can make, this adds a lot of capability to my site for taking payments. Works great and the support is great too! My client was very pleased!!

ARTIO JoomSEF
 1.3.1 Anchors BIG problem, December 9, 2006
15 of 15 people find this review helpful:

ARTIO JoomSEF Hi all

this component is great, however when it comes to anchors there is a problem, I have a link to an anchor "#top" at www.mysite.com/article1.html , when you hover over the link you expect that it will get : www.mysite.com/article1.html#top , but no, it will get www.mysite.com/#top , this is fixed by going to this file : mambots/content/mossef.php and edit the "else if" starting at line 79 to be :

else if ( strpos( $matches[1], '#' ) === 0 ) {
// special handling for anchor only links
$url = $_SERVER['REQUEST_URI'];
$url_1 = $url; ///// my fix
$url = explode( '?option', $url );

if (is_array($url) && isset($url[1])) {
$link = 'index.php?option'. $url[1] . $matches[1];
} else {
$link = $matches[1];
}
// convert url to SEF link
$link = sefRelToAbs( $link );
$link = sefRelToAbs( $url_1 ).$link; //// my fix
// reconstruct html output
$replace = 'href="'. $link .'"';

return $replace;
}