-
AuthorPosts
-
Klaus Ondrich Friend
Klaus Ondrich
- Join date:
- April 2015
- Posts:
- 67
- Downloads:
- 13
- Uploads:
- 0
- Thanked:
- 2 times in 1 posts
August 17, 2015 at 9:49 am #662328Hello,
I have a question regarding “back to top” button: It’s shown in navhelper on our site https://www.ulc-moedling.at/.
However, I realized that it is not working in every case:
On start site a click on the “back to top” button does not scroll back to top:
https://www.ulc-moedling.at/Viewing an article a click on the “back to top” button does not scroll back to top:
https://www.ulc-moedling.at/news/wettkaempfe/stadionwettkaempfe/894-internationales-josko-laufmeeting-andorf-2015In a category blog a click on the “back to top” button does scroll back to top:
https://www.ulc-moedling.at/news/wettkaempfe/stadionwettkaempfeIs this by design or should this be considered as a bug?
Thanks
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 17, 2015 at 10:24 am #662373Hi there
I don’t see that button on your site. Please tell me where is it.Thank you,
Viet Vujooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 17, 2015 at 10:24 am #662374Hi there
I also saw you have js error. Please turn off js compress first.Thank you,
Viet VuKlaus Ondrich FriendKlaus Ondrich
- Join date:
- April 2015
- Posts:
- 67
- Downloads:
- 13
- Uploads:
- 0
- Thanked:
- 2 times in 1 posts
August 17, 2015 at 10:49 am #662378It is right above the social Footer. JS and CSS optimization is disabled now.
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 17, 2015 at 12:05 pm #662485Hi there
You have js error
Uncaught ReferenceError: Browser is not defined
Thank you,
Viet VuKlaus Ondrich FriendKlaus Ondrich
- Join date:
- April 2015
- Posts:
- 67
- Downloads:
- 13
- Uploads:
- 0
- Thanked:
- 2 times in 1 posts
August 17, 2015 at 12:09 pm #662486Yes, I saw it in Firefox debug console. But how come?
https://www.ulc-moedling.at/templates/ja_fubix/js/script.js line 258 is reported as error source by console:
//fix validate.js error
if(Browser.ie && Browser.version <= 8){
Browser.Features.inputemail = false;
}
It’s a Fubix file. What can I do to resolve it?jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 17, 2015 at 12:51 pm #662487Hi there
Please turn off JS compress while we are working on this.
And in fact i would suggest not use it in any case.Thank you,
Viet VuKlaus Ondrich FriendKlaus Ondrich
- Join date:
- April 2015
- Posts:
- 67
- Downloads:
- 13
- Uploads:
- 0
- Thanked:
- 2 times in 1 posts
August 17, 2015 at 12:53 pm #662488Yes, it is disabled. Do you still see compressed JS?
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 19, 2015 at 4:08 am #662865Hi there
I saw you have some 3rd js in “none working page”
Please provide your site backend access. I’ll try to check it.In basically please do not install 3rd extension except we can handle it in hand 🙂
Thank you,
Viet VuKlaus Ondrich FriendKlaus Ondrich
- Join date:
- April 2015
- Posts:
- 67
- Downloads:
- 13
- Uploads:
- 0
- Thanked:
- 2 times in 1 posts
August 19, 2015 at 5:30 am #662901jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 19, 2015 at 9:01 am #662930Hi there
Please help me check your FTP access. I can login but can’t access directories.Thank you,
Viet Vujooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 19, 2015 at 9:01 am #745950Hi there
Please help me check your FTP access. I can login but can’t access directories.Thank you,
Viet VuKlaus Ondrich FriendKlaus Ondrich
- Join date:
- April 2015
- Posts:
- 67
- Downloads:
- 13
- Uploads:
- 0
- Thanked:
- 2 times in 1 posts
Klaus Ondrich FriendKlaus Ondrich
- Join date:
- April 2015
- Posts:
- 67
- Downloads:
- 13
- Uploads:
- 0
- Thanked:
- 2 times in 1 posts
Klaus Ondrich FriendKlaus Ondrich
- Join date:
- April 2015
- Posts:
- 67
- Downloads:
- 13
- Uploads:
- 0
- Thanked:
- 2 times in 1 posts
August 19, 2015 at 2:24 pm #663044Though my JS knowlege is very poor, I found a way to get those lines of code working:
Original code in /templates/ja_fubix/js/script.js, lines 258-260 that produce the JS error and prevent back-to-top button from working:
if(Browser.ie && Browser.version <= 8){
Browser.Features.inputemail = false;
}Fixed code /templates/ja_fubix/js/script.js, lines 258-260 that resolves JS error and makes the back-to-top button working everywhere:
if($.browser.ie && $browser.version <= 8){
$.browser.Features.inputemail = false;
}
Could you confirm that this fix is correct and free from side-effects? If that’s true, it seems to be a bug in Fubix.
-
AuthorPosts
This topic contains 22 replies, has 2 voices, and was last updated by jooservices 9 years, 3 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum