JoomlaWorks Community Forum

LOGIN
Welcome to the JoomlaWorks Community Forum | If you have a question, please search before posting!
Official support for commercial extensions has moved into the new JoomlaWorks Ticket Support System.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board will remain public for purposes of knowledge exchange ONLY.

Author Topic: Noscript in the standalone version   (Read 1548 times)

Offline Chris97

  • Newbie
  • *
  • Posts: 4
    • View Profile
Noscript in the standalone version
« on: June 20, 2010, 06:29:48 PM »
Hello,

where I have to place the noscript-tag? I use the FPSS on a Wordpress blog. This hint doesn't work in the standalone version.

Thanks for your help.

Chris
Signatures appear only for members with more than 30 posts

Offline Katia

  • Administrator
  • Hero Member
  • *****
  • Posts: 8024
  • Ni Dios Ni Amo
    • View Profile
    • JoomlaWorks
Re: Noscript in the standalone version
« Reply #1 on: June 21, 2010, 01:14:00 PM »
JoomlaWorks Support Team

IMPORTANT NOTE: Please search before posting a question!

Offline Chris97

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: Noscript in the standalone version
« Reply #2 on: June 21, 2010, 01:25:41 PM »
Sure, where is the solution? Do you have an idea where I have to place
Code: [Select] [nofollow]
<noscript>...</noscript>
?

The FPSS works fine [nofollow], but a lot of my visitors haven't ativated JS. And that's really a problem.

Chris
Signatures appear only for members with more than 30 posts

Offline Katia

  • Administrator
  • Hero Member
  • *****
  • Posts: 8024
  • Ni Dios Ni Amo
    • View Profile
    • JoomlaWorks
Re: Noscript in the standalone version
« Reply #3 on: June 21, 2010, 01:44:58 PM »
Could you please provide us with a link to your site?
JoomlaWorks Support Team

IMPORTANT NOTE: Please search before posting a question!

Offline Chris97

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: Noscript in the standalone version
« Reply #4 on: June 21, 2010, 03:08:32 PM »
http://www.fixmbr.de/ [nofollow]

Take a look in my last Post. ;-)

Take a look with activated und deactivates JS.

Thanks for your help. :)

Chris
Signatures appear only for members with more than 30 posts

Offline Katia

  • Administrator
  • Hero Member
  • *****
  • Posts: 8024
  • Ni Dios Ni Amo
    • View Profile
    • JoomlaWorks
Re: Noscript in the standalone version
« Reply #5 on: June 22, 2010, 04:27:18 PM »
Place it right above or below the snippet of the slideshow. In there add some additional CSS to show some image and hide the slideshow block.
JoomlaWorks Support Team

IMPORTANT NOTE: Please search before posting a question!

Offline Chris97

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: Noscript in the standalone version
« Reply #6 on: June 22, 2010, 05:43:27 PM »
Thanks a lot, that was the hint, I need. For other users:

Before

Code: [Select] [nofollow]
</head>

you have to place:

Code: [Select] [nofollow]
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript"> jQuery(document).ready(function($){ $('#noScript').addClass('hide'); $('#showScript').removeClass('hide'); }); </script>

The snippet in your index.php:

Code: [Select] [nofollow]
<div id="noScript">Please enable JavaScript!</div>

<div id="showScript" class="hide"> Snippet FPSS</div>

For your style.css:

Code: [Select] [nofollow]
.hide {
display: none;
}

Wow, that's great. :)

Chris
Signatures appear only for members with more than 30 posts

Find this topic helpful? Why not share it with others?