-
AuthorPosts
-
March 1, 2011 at 9:23 pm #160885
I downloaded the JA Purity II template to replace the current version of the original in the hopes of utilizing some of the new enhancements. This has not worked well so far.
I first installed the ja_purity_ii.v1.2.0.zip file through the backent and had the template up and running but was unable to get any of the enhancements working correctly. the JA MENU PARAMS pluginn was loaded as well.
I have since removed the template from the system and revverted back to the original.
I tried downloading and installing the jatc_purity_ii.zip file (quickstart) but am unable to get this one to load AT ALL. when I select install the backend changes directly to the configuaration menu and the installation is not done.
Help is appreciated.
March 1, 2011 at 9:50 pm #379149Seems a reinstall of the original purity ii did the trick. Still could not install the other one though.
March 1, 2011 at 10:11 pm #379152Now I get this error on every page.
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)
Timestamp: Tue, 1 Mar 2011 22:10:31 UTCMessage: ‘Drag.Base’ is null or not an object
Line: 451
Char: 1
Code: 0
URI: http://cmc003.ca/003miss/templates/ja_purity_ii/js/ja.ddmod.jsdunglq Frienddunglq
- Join date:
- March 2010
- Posts:
- 108
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 6
- Thanked:
- 12 times in 13 posts
March 2, 2011 at 7:03 am #379223Hi,
Because you are using some extensions using jQuery library. Default joomla using mootools so there is some warning js, but everything still works well.
March 8, 2011 at 1:48 pm #380300Ok thats cool but I just notice another issue that I have no idea how to resolve. When testing from IE8 at home I have no issues but when I access the page from work I get this.
HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)
I can see the mega menu just fine but NO CONTENT is displayed.
Editing to add that I just attempted with a different browser from work and although I get content displayed the menu does not allow me to click on any menuitems.
Website http://cmc003.ca
Thanks
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
March 9, 2011 at 2:37 am #380413Dear bradgillies,
You can provide me your admin account,FTP Infors via the ticket of CCD-725-22643 I will have further checking on the issue for you.
0dass0a9d-asd Friend0dass0a9d-asd
- Join date:
- September 2014
- Posts:
- 60
- Downloads:
- 0
- Uploads:
- 7
- Thanks:
- 13
- Thanked:
- 2 times in 1 posts
March 13, 2011 at 3:59 am #381074I am having the same problem as above, no content being displayed in IE8 and only showing the menu.
Is thier a solution to this yet?
March 14, 2011 at 7:17 am #381207<em>@mcflause 227315 wrote:</em><blockquote>I am having the same problem as above, no content being displayed in IE8 and only showing the menu.
Is thier a solution to this yet?</blockquote>
Dear,
The problem you get is because some conflict with the version of mootools when you enable mtupgrade plugin. I’d like to give you the way to fix it.
– open file ja_purity_iijsja.ddmod.js and do something below
+ add these lines
if(!event.page)
{
event = new Event(event);
}
below these lines
moveGhost: function(event){
move: function(event){
+ Change this line
Drag.Resize = Drag.Base.extend({
by
Drag.Resize = (Drag.Base ? Drag.Base : Drag).extend({
Hope that It can help you fix this problem. If there’s any other cases please let us know and please give us the server information to check it easier.
Regards,
March 16, 2011 at 11:26 pm #381743<em>@hainn 227492 wrote:</em><blockquote>Dear,
The problem you get is because some conflict with the version of mootools when you enable mtupgrade plugin. I’d like to give you the way to fix it.
– open file ja_purity_iijsja.ddmod.js and do something below
+ add these lines
if(!event.page)
{
event = new Event(event);
}
below these lines
moveGhost: function(event){
move: function(event){
+ Change this line
Drag.Resize = Drag.Base.extend({
by
Drag.Resize = (Drag.Base ? Drag.Base : Drag).extend({
Hope that It can help you fix this problem. If there’s any other cases please let us know and please give us the server information to check it easier.
Regards,</blockquote>
I made the above changes to the code but the issue still exists. Funny that it works on different machines witht he same version of IE 8
March 17, 2011 at 3:19 am #381772<em>@bradgillies 228186 wrote:</em><blockquote>I made the above changes to the code but the issue still exists. Funny that it works on different machines witht he same version of IE 8</blockquote>
I’m sorry because I didn’t care this problem before. However, after looking around your site, I only guess the reason and the way to fix it because I can’t debug directly. I’d like to suggest that way:
edit file templates/purity_ii/libs/menu/mega.class.php by replace
var megamenu = new jaMegaMenuMoo ('ja-mainnav', {
'bgopacity': 0,
'delayHide': 1000,
'slide': <?php echo $slide ?>,
'fading': <?php echo $fade ?>,
'direction':'down',
'action':'mouseover',
'tips': false,
'duration': <?php echo $duration ?>,
'hidestyle': 'fastwhenshow'
});
by
var megamenu = "";
window.addEvent('load', function(){
megamenu = new jaMegaMenuMoo ('ja-mainnav', {
'bgopacity': 0,
'delayHide': 1000,
'slide': <?php echo $slide ?>,
'fading': <?php echo $fade ?>,
'direction':'down',
'action':'mouseover',
'tips': false,
'duration': <?php echo $duration ?>,
'hidestyle': 'fastwhenshow'
});
});
as you talk <blockquote>Funny that it works on different machines witht he same version of IE 8</blockquote> This bug is only work in some specific versions of IE (not only IE8).
If this bug still happen after you do this job, please give us FTP acount via the ticket of CCD-725-22643.
Regards,
1 user says Thank You to hainn for this useful post
March 21, 2011 at 1:14 pm #382514Sorry about the lack of FTP access but for some reason it is just not working for me to set it up. I have tried all I know but access is still not working.
March 23, 2011 at 7:20 pm #382934The last code change did the trick.
Thanks for the assistance
November 4, 2011 at 12:11 am #423142I have the same problem and made the above mentioned changes. However, now I get the following error messages:
this.tooltips.disableTip is not a function if (this.options.tips) this.tooltips.disableTip(el); mega.js (line 498)
this.tooltips.enableTip is not a function if (this.options.tips) this.tooltips.enableTip(el); mega.js (line 503)I should also mention that I was not able to find the following code in my ja_purity_iijsja.ddmod.js. (see post #8)
moveGhost: function(event)
Any help would be appreciated.
-
AuthorPosts
This topic contains 13 replies, has 6 voices, and was last updated by baud 13 years ago.
We moved to new unified forum. Please post all new support queries in our New Forum