FAQ Module?

This is a forum to suggest new features for mojoPortal. 

This thread is closed to new posts. You must sign in to post in the forums.
4/8/2011 9:51:35 AM
Gravatar
Total Posts 18439

Re: FAQ Module?

Hi Erhan,

Thanks for the clarification. This is now fixed in the source code repository.

Best,

Joe

4/8/2011 10:33:36 AM
Gravatar
Total Posts 51

Re: FAQ Module?

Thanks Joe,

New FAQ feature is very useful. I have a suggestion:

A button or a link to close all opened FAQ's at a time??

 

4/13/2011 10:58:18 AM
Gravatar
Total Posts 21
Silviuz

Re: FAQ Module?

@Joe says: In mojoPortal 2.3.6.4 we also added a Content Template for FAQ, that uses a little jquery (but not accordion). You can see it on our FAQ page.

Best,

Joe

Hi Joe

Nice solution! Could you please explain how to implement this feature as on your FAQ PAGE? Did you use something like this ?

Do I have to create a folder named (eg) "jquerySimpleFAQ" under ClientScript ....and then??

Thanks

 

 

4/13/2011 11:13:01 AM
Gravatar
Total Posts 251

Re: FAQ Module?

No, you just need to use the "content template" button in the wysiwyg html editor of a page

4/13/2011 11:16:39 AM
Gravatar
Total Posts 18439

Re: FAQ Module?

You also need to make sure you have this in your style.config file

<file cssvpath="/Data/style/common/style.css" imagebasevpath="/Data/style/common/">none</file>

See also the sticky thread in the skinning forums Important Skin Changes

I'm not sure the on you linked to is the exact one we used but it is something very similar.

Hope it helps,

Joe

4/13/2011 11:25:50 AM
Gravatar
Total Posts 21
Silviuz

Re: FAQ Module?

@Magnetic_dud

in the wysiwyg html editor i can see only "accordion-jquery" , "accordion no auto height-jquery"," tabs-jquery"...and then 2-3-4 colums

 

@Joe

ok, I give it a try!

4/13/2011 11:28:06 AM
Gravatar
Total Posts 18439

Re: FAQ Module?

doesn't sound like you are using mojoPortal 2.3.6.4 if the FAQ template is not shown. It does not exist in older versions. You can check your version from Administration > System Information

4/13/2011 11:31:11 AM
Gravatar
Total Posts 21
Silviuz

Re: FAQ Module?

2.3.6.2.... you're right! :-(

Must update!

Thanks

 

12/6/2011 9:05:10 PM
Gravatar
Total Posts 24

Re: FAQ Module?

Anyone know how to change the little 'Q' and 'A' images on the FAQ template?

Or the css for it to change the font , color etc..?

12/6/2011 9:17:43 PM
Gravatar
Total Posts 24

Re: FAQ Module?

Figured it out

The icons are in /Data/style/common as Joe mentions above and you can change the font with the style.css file in the same folder

12/7/2011 1:02:12 PM
Gravatar
Total Posts 2239

Re: FAQ Module?

Hi,

I don't suggest changing the files insideof /Data/style/common. These files will be overwritten by upgrades.

To change the images in the FAQ template you should create your own CSS rules to override the rules from /data/style/common/style.css. For instance, adding this to the style.css file in your skin directory will override the images:

.faqs dt {
  background: url('question.png') no-repeat scroll 0 0 transparent;
}

.faqs dd {
  background: url('answer.png') no-repeat scroll 0 0 transparent;
}

For the above to work, you would need files named question.png and answer.png in your skin directory.

HTH,
Joe D.

You must sign in to post in the forums. This thread is closed to new posts.