Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Validation errors in CSS+HTML due to ARI EXT Menu
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Validation errors in CSS+HTML due to ARI EXT Menu
#4350
Validation errors in CSS+HTML due to ARI EXT Menu 13 Years, 11 Months ago Karma: 0
Hi,

First of all: I think that this extenion is fabulous.

However, I checked with validation service and received many many errors in CSS and HTML.

Unknown: "zoom" in CSS in ext-border-box .ux-menu-ie-iframe, .ext-ie7 .ux-menu-ie-iframe
and in .ext-ie .ux-menu-clearfix
Parse error: mask() in CSS in .ext-border-box .ux-menu-ie-iframe, .ext-ie7 .ux-menu-ie-iframe

Did you every heard this?
The administrator has disabled public write access.
 
#4351
Re:Validation errors in CSS+HTML due to ARI EXT Menu 13 Years, 11 Months ago Karma: 747
Hello,

Thanks for your report, we have fixed this issue. Download new version of the module and upgrade it, please.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#4352
Re:Validation errors in CSS+HTML due to ARI EXT Menu 13 Years, 11 Months ago Karma: 0
Yes, thank you. I did.
Can I just upload the new version or should I get rid of the old version before uploading the new version?
Gr,
Anne
The administrator has disabled public write access.
 
#4353
Re:Validation errors in CSS+HTML due to ARI EXT Menu 13 Years, 11 Months ago Karma: 747
Open 'Extensions -> Install/Uninstall' page on Joomla! backend and install the module, upgrade process doesn't require to remove the previous version. Installer upgrades old version of the extension to new version automatically.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#4354
Re:Validation errors in CSS+HTML due to ARI EXT Menu 13 Years, 11 Months ago Karma: 0
Thx, I know the answer now. Just install as usual. And done.

No more errors in CSS Validation. Wel done! and you are quick.

Thank you!
Best Regards,
Anne
The administrator has disabled public write access.
 
#4556
Re:Validation errors in HTML due to ARI EXT Menu? 13 Years, 10 Months ago Karma: 0
Hi,

CSS error are repaired now.

However, still HTML validation errors due to wrong use of ampersand?

W3C validation service says:
This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&'.
I can see in the reports
<li class="ux-menu-item-main"><a href="/index.php?option=com_content&view=frontpage&Itemid=24" class="ux-menu-link-first current">Beginpagina</a>
</li>

I do not exactly understand since this is the URL which I can see in my browsers (Opera, FF and IE7)

Your module is working just fine in all 3 browsers. But I would like to see a correct validation for my website. Is there a PHP in your module which makes the translation of '&' into '&amp;' not correctly?
in 'class.JoomlaUtils.php in between line 88 to 112 I discovered:
Code:

function getLink($link, $xhtml = false, $clearItemId = true)
{
if (!AriJoomlaUtils::isJoomla15())
{
if (function_exists('sefRelToAbs')) $link = sefRelToAbs($link);
[color=#FF0000]if (!$xhtml) $link = str_replace('&amp;', '&', $link);[/color]
}
else 
{
$app = &JFactory::getApplication();
$router = &$app->getRouter();

if($router->getMode() == JROUTER_MODE_SEF && $clearItemId) 
{
$itemidPos = strpos($link, 'Itemid');
if ($itemidPos !== false)
{
$link = preg_replace('/Itemid(?:=[^&;]*)?/', '', $link);
}
}

$link = JRoute::_($link, $xhtml);
}

return $link;
}


I am using Joomla without SEF URL. If I can read PHP the read line should give '&amp;' instead of '&'.

What is going wrong here?

Best Regards,
Anne
The administrator has disabled public write access.
 
Go to topPage: 12