Hi.
When I active the ImageFrame plugin and I choose one of the frame for "Album Frame" it's working, but it removes the titles of each albums.
Thanks for any response.
That would be a feature of the theme you are using. If it detects that you are using a frame for a album it will not display the album title.
Dave _____________________________________________ Blog & G2 || floridave - Gallery Team
I'm using Matrix, so I'm not sure what I can to do to fix this..
How comfortable are you with smarty syntax? This is the code to edit:
<p class="giTitle"> {if $child.canContainChildren && (!isset($theme.params.albumFrame) || $theme.params.albumFrame == $theme.params.itemFrame)} {* Add prefix for albums unless imageframe will differentiate *} {g->text text="Album: %s" arg1=$child.title|markup} {else}
OK. I fixed this, but I'm not sure why the code is wrote like that.. :-/
We have to find this file (/themes/matrix/templates/local/album.tpl) and change code:
{if !empty($child.title)} <p class="giTitle"> {if $child.canContainChildren && (!isset($theme.params.albumFrame) || $theme.params.albumFrame == $theme.params.itemFrame)} {* Add prefix for albums unless imageframe will differentiate *} {g->text text="Album: %s" arg1=$child.title|markup} {else} {/if} </p> {/if}
{/if} </p> {/if}
to this code:
{if !empty($child.title)} <p class="giTitle"> {if $child.canContainChildren} {g->text text="Album: %s" arg1=$child.title|markup} {else} {/if} </p> {/if}
Thanks ;) You've been faster than me..
Posts: 22883
That would be a feature of the theme you are using. If it detects that you are using a frame for a album it will not display the album title.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 30
I'm using Matrix, so I'm not sure what I can to do to fix this..
Posts: 22883
How comfortable are you with smarty syntax?
This is the code to edit:
<p class="giTitle"> {if $child.canContainChildren && (!isset($theme.params.albumFrame) || $theme.params.albumFrame == $theme.params.itemFrame)} {* Add prefix for albums unless imageframe will differentiate *} {g->text text="Album: %s" arg1=$child.title|markup} {else}Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 30
OK. I fixed this, but I'm not sure why the code is wrote like that.. :-/
We have to find this file (/themes/matrix/templates/local/album.tpl) and change code:
to this code:
Posts: 30
Thanks ;) You've been faster than me..