Hello mates...
Is there any way to make this module works for more than one language ! Its like English is the only supported language and my website has 2 languages and every time I disable the translation feature it works but its a big issue for me cause even when I define the content type to be for one language I still get the same issue.

The error I get when I try to add a slide is:
* user warning: Unknown column 'n.language' in 'where clause' query: SELECT vid, title FROM node WHERE (n.language ='en' OR n.language ='' OR n.language IS NULL) AND ( type = 'fpss_slideshow') in /home/content/p/b/s/pbsramees/html/sites/all/modules/fpss/fpss.module on line 361.
* You must create a slideshow before you can create a slide.

When I open fpss.module on line 361:
line 358 $options = array();
line 359 $options[0] = '--Select--';
line 360 $sql = "SELECT vid, title FROM {node} WHERE type = '%s'";
line 361 $result = db_query(db_rewrite_sql($sql), 'fpss_slideshow');
line 362 while ($data = db_fetch_object($result)) {
line 363 $options[$data->vid] = $data->title;
}

Please help !!!
Thank you

P.S Even when I disable the translation and try the module it works but the pictures doesnt show up... Only the thumbnails work !!!

Comments

ain’s picture

Yup. That's pretty much the case right now. Trying to sort it out myself, we'll see how it goes...

dddave’s picture

Status: Active » Closed (duplicate)