Ga naar admin-deel, klik op componenten/phoca gallerij/config
Als je deze geopend hebt zie je in de rechterbovenhoek van het adminscherm (vlakbij logout) een knop preferences/voorkeuren (afhankelijk van welke taal je gebruikt)
Als je daarop klikt kun je heel veel eigenschappen van het fotoalbum aanpassen. Ongeveer halverwege kun je de eigenschappen van de popup opgeven (detailblik-instellingen /detail view settings). Probeer via het scrollmenu dat daar staat de JAK-versie maar eens, die is ook fraai.
Voorbeeld JAK-presentatie:
http://www.infopolitie.nl/index.php?opt ... &Itemid=52
problem since version 2.5.8
-
thijeleo
- Phoca Member

- Posts: 35
- Joined: 05 Jan 2008, 21:24
- Location: Netherlands
- Contact:
Re: problem since version 2.5.8
Last edited by thijeleo on 11 Dec 2009, 17:11, edited 1 time in total.
-
gilsingb
- Phoca Member

- Posts: 48
- Joined: 14 Feb 2008, 15:07
Re: problem since version 2.5.8
on the advice from another joomla member have I changed the language to: english -us. this makes no difference either. icould possibly try a nightly built from joomla, but the I run out of other ideas
-
gilsingb
- Phoca Member

- Posts: 48
- Joined: 14 Feb 2008, 15:07
Re: problem since version 2.5.8
OK, Now I have also tried different types of boxes including the JAK version but if I do that, I loose all the text that has been written to every picture. What to do, I am at a loss here?
-
gilsingb
- Phoca Member

- Posts: 48
- Joined: 14 Feb 2008, 15:07
Re: problem since version 2.5.8
I have temporarely turned of compression of css files. I hope that the stylesheets will become visible and hopefully we can detect what stylsheet contains the problem.
-
thijeleo
- Phoca Member

- Posts: 35
- Joined: 05 Jan 2008, 21:24
- Location: Netherlands
- Contact:
Re: problem since version 2.5.8
If you have selected a way to show a popup, under the selectionbox in preferences, you see the settings per viewtype.gilsingb wrote:OK, Now I have also tried different types of boxes including the JAK version but if I do that, I loose all the text that has been written to every picture. What to do, I am at a loss here?
Onder het dropdownmenu staat per popup-mogelijkheid een aantal instellingen. De naam van het type popup staat er boven, daaronder de instellingen voor dat type. Daarmee kun je de beschrijving aan/uit zetten.
Overigens: als ik nu naar de broncode van een popup kijk zie ik:
<link rel="stylesheet" href="/templates/system/css/template_rtl.css" type="text/css" />
Je roept dus de template_rtl.css op oftewel: righttoleft.....
At the source of the popup I see:
<link rel="stylesheet" href="/templates/system/css/template_rtl.css" type="text/css" />
In other words, you call to a css which shows from right to left.
-
gilsingb
- Phoca Member

- Posts: 48
- Joined: 14 Feb 2008, 15:07
Re: problem since version 2.5.8
OK, after some experiments I found out that if I use the JAK lightbox and put my descriptions under them they come up right. the dots are at the end of the line and all looks ok. In other words it does not look like it has anything to do with the stylesheet. In the folder\template.css are more files with rtl extentions like error_rtl.css and offline_rtl.css and template_rtl.css but they are compensated by the same files without the _rtl.
I have renamed the template_rtl.css to template_rtl.sss and now the program takes the template.css as a standard and the problems are solved. This does not solve the issue of where the reference to template_rtl.css comes from as the template.css is in the same directory. If I look into a backup file from 3 months ago the same template_rtl.css is also there and at that time we did not have these problems.
I have renamed the template_rtl.css to template_rtl.sss and now the program takes the template.css as a standard and the problems are solved. This does not solve the issue of where the reference to template_rtl.css comes from as the template.css is in the same directory. If I look into a backup file from 3 months ago the same template_rtl.css is also there and at that time we did not have these problems.
-
gilsingb
- Phoca Member

- Posts: 48
- Joined: 14 Feb 2008, 15:07
Re: problem since version 2.5.8
By the way thanks Thijeleo. You helped me and others as well.
Isn't the world a great place if we all help each other!!!

Isn't the world a great place if we all help each other!!!
-
thijeleo
- Phoca Member

- Posts: 35
- Joined: 05 Jan 2008, 21:24
- Location: Netherlands
- Contact:
Re: problem since version 2.5.8
I don't know your template, but maybe you could take a look at it's setting (admin/extentions/templates, click on your template and look at the parameters. Maybe there is a parameter which says rtl instead of ltr.
I'm glad it all works like you want it.
I'm glad it all works like you want it.
-
gilsingb
- Phoca Member

- Posts: 48
- Joined: 14 Feb 2008, 15:07
Re: problem since version 2.5.8
I have gone trough all of them and there is no mention of RTL in any of them. The extention RTL comes with the joomla package but the reference to the template_rtl.css comes as far as I can see from the phoca gallery. I have 3 websites running currently and all of them have the same css files in the template/system/css . Have had no problems with the others but they do not have phoca gallery on them either. I will try to install the whole thing again on backup server to see if the problem persists if I put the latest phoca gallery on it directly without an update. It could have something to do with that.
Regards,
Ben Gilsing
Regards,
Ben Gilsing
-
thijeleo
- Phoca Member

- Posts: 35
- Joined: 05 Jan 2008, 21:24
- Location: Netherlands
- Contact:
Re: problem since version 2.5.8
I'll mention one more possible solution.
If you look at admin/extentions/your template you can edit the html.
At about line line 57 you should see:
If you have any other code here, joomla will revert to standard rtl direction
If you look at admin/extentions/your template you can edit the html.
At about line line 57 you should see:
Code: Select all
<?php if($this->direction == 'rtl') : ?>
<link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/template_rtl.css" type="text/css" />
<?php else : ?>
<link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/menu.css" type="text/css" />
<?php endif; ?>