Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
Nick
Imagevue Hitman
Posts: 2872
Joined: 02 May 2006, 09:13

Re: Imagevue X2.7

03 Jun 2011, 06:52

Imagevuex X2.7.1.1

Fixes a couple of bugs:
  • Problem with language switch described by mabro in this thread
  • A server-specific config saving issue reported by email
firedev.com
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Imagevue X2.7

03 Jun 2011, 09:22

Hansen wrote:Isen't it possible to define a folder for pictures I want to sell?
You can enable or disable specific folders by adding a folder parameter for that folder.
i.e. to disable Fotomoto for the folder, use:
Code
fotomoto.enabled=false
Reference: https://forum.photo.gallery/viewtopic.p ... 28&start=3
 
Michel Morel
Experienced
Posts: 34
Joined: 03 Jun 2011, 10:50

Re: Imagevue X2.7

03 Jun 2011, 12:03

I have the same probleme that JLB (viewtopic.php?p=26688#p26688) and maybe Mabro (viewtopic.php?p=26694#p26694). The field is empty but is showed.
I had this probleme with 2.7.1 and 2.7.1.1, but not 2.7 .
One idea ?
Attachments
ImageVueX_2011-06-03_163505.png
ImageVueX_2011-06-03_163505.png (1.9 KiB) Viewed 13668 times
 
User avatar
macarius
Posts: 16
Joined: 20 Mar 2011, 21:47

Re: Imagevue X2.7

04 Jun 2011, 19:11

I have noticed the same error for awhile in the demo site, and have not seen it fixed as yet. In IE8, using the flash version of the demo, the option to add to cart and the full image are not able to be seen, nor made visible. Please, let me know if there is a work-around.

V/r,
Mac
Attachments
Cannot-add-to-cart.png
ImageVue 2.7 with FotoMoto Demo--issue in IE8: cannot add to cart.
Cannot-add-to-cart.png (149.8 KiB) Viewed 13617 times
Last edited by macarius on 05 Jun 2011, 12:24, edited 1 time in total.
 
User avatar
mjau-mjau
X3 Wizard
Topic Author
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Imagevue X2.7

05 Jun 2011, 01:48

mabro wrote:
mjau-mjau wrote:I see ... The problem is, you are using TITLE for only the icon.
mjau-mjau... see my post three items up concerning this problem... there is definitely something different in v2.7.1
If you look at http://www.martinbroeze.nl/g1/ and mouse-over 'Dutch' or 'Engels' then you'll see the title is being shown with an empty description.
In v2.7 this was not the case.
We did some changes here for 2.7.1, and we may need to do some further adjustments. However, in the end of the day, this is because some of you are using a mix of foldername + title. You are using the TITLE field to add the icon, but without following up with a title after the actual [icon.png]. Then it has to use the folder name, and this confuses the menu. I will see if I can add some conditional checks for this ...

Just for the record, you may have fixed your menu already, but now it looks like this:
Image
Would you prefer that tooltip to not display?

How to use graphic icons in the main menu:
https://www.photo.gallery/documentation/menu-icons/
 
User avatar
mjau-mjau
X3 Wizard
Topic Author
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Imagevue X2.7

05 Jun 2011, 02:10

Hansen wrote:But I have a question regarding the fotomoto features. Isen't it possible to define a folder for pictures I want to sell?
As it is now I'm not going to use the fotomoto because I have to disable a ton of pictures I don't want to sell?
This is a good question, which has two possible answers:

1. The easiest way to disable Fotomoto for any specific folder, is to simply add the following line to the folder-parameters field from your Imagevue admin:
Code
fotomoto.enabled=false
This will prevent the images from being added to the Fotomoto Dashboard for this folder, and also no buttons/interface will display for Fotomoto.

2. The second option, is to go to your Fotomoto Dashboard and set the "Not for sale" collection as default collection. All new photos will be added to this collection, and Imagevue will not display purchase buttons for any images that are not for sale. You can also "move" all your existing images from any other collection to the "not for sale collection". Your only job would then be to actually select what images to keep in your "For Sale" collection(s).
More about using Fotomoto Collections
Hansen wrote:Another annoying thing is the the thumb nail picture the site chooses when sharing the main website on facebook. I'm my case it takes a pictures from a design folder, and I can't change it? (Maybe a hidden folder for imagevuex to select thumb nails for sharing on facebook?)
It currently chooses the first thumbnail in the first folder, but we may need to figure out a way to set this. In the meantime, you can change it manually. Simply open the file iv-includes/templates/index.gallery.phtml and find the code approximately on line 121:
Code
<?php if ($this->firstImage): ?>
	<?php if ((ivPath::canonizeRelative(substr($this->firstImage->thumbnail, 0, strlen($this->contentPath))) !== $this->contentPath)): ?>
		<img src="<?php echo $this->url(array('c' => 'xml', 'a' => 'thumb', 'path' => $this->firstImage->getPrimary())) ?>" <?php echo htmlspecialchars($this->firstImage->title) ?>" style="float: left;" />
	<?php else: ?>
		<img src="<?php echo htmlspecialchars($this->firstImage->thumbnail); ?>?<?php echo $this->firstImage->getThumbnailMTime(); ?>" alt="<?php echo htmlspecialchars($this->firstImage->title) ?>" style="float: left;" />
	<?php endif; ?>
<?php endif; ?>
Delete all this code, and simply replace it with a hardcoded path to the thumbnail you wish to use. For example:
Code
<img src="/content/path/tn_image.jpg" />
 
User avatar
mjau-mjau
X3 Wizard
Topic Author
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Imagevue X2.7

05 Jun 2011, 02:42

Michel Morel wrote:I have the same probleme that JLB (viewtopic.php?p=26688#p26688) and maybe Mabro (viewtopic.php?p=26694#p26694). The field is empty but is showed.
I had this probleme with 2.7.1 and 2.7.1.1, but not 2.7 .
One idea ?
Do you have a link to your website? I would like to check exactly what attributes are being filled.
 
User avatar
mjau-mjau
X3 Wizard
Topic Author
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Imagevue X2.7

05 Jun 2011, 02:47

macarius wrote:I have noticed an error for awhile in the demo site, and have not seen it fixed as yet. In IE8, in the flash version on the demo, the option to add to cart and the full image is not able to be seen, nor made visible. Please, let me know if there is a work-around.
We will be looking into this ...
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Imagevue X2.7

05 Jun 2011, 06:11

mjau-mjau wrote:However, in the end of the day, this is because some of you are using a mix of foldername + title. You are using the TITLE field to add the icon, but without following up with a title after the actual [icon.png]. Then it has to use the folder name, and this confuses the menu.
Well, that is not the case. I indeed have in the title field an icon, but also a title:
Code
Title:
[dutch][en_vlag.png]Engels[/dutch][english][nl_vlag.png]Dutch[/english]
I compared your demo-gallery of v2.7.1.1:
http://www.martinbroeze.nl/g3/?theme=zanzibar
with the demo-gallery of v 2.7:
http://www.martinbroeze.nl/g4/?theme=zanzibar

In both I did the following changes:
1) I deleted the description and the preview image of the folder 'Pictures 1'
2) unchecked: menu.mainmenu.folderdescription.items: title
3) and for clarity reasons I took the theme zanzibar

Only version 2.7.1.1 (/g3/) showed an empty folderdescription square:
Image
mjau-mjau wrote:Would you prefer that tooltip to not display?
Yes, because it is not possible to do it with a folderparameter
mjau-mjau wrote:How to use graphic icons in the main menu:
https://www.photo.gallery/documentation/menu-icons/
So... the mentioned problem has nothing to do with the use of icons.
And it is the same problem as mentioned by Michel Morel an JLB.
 
User avatar
mjau-mjau
X3 Wizard
Topic Author
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Imagevue X2.7

05 Jun 2011, 09:22

mabro: There are some inconsistencies in the menu I will admit, so I will be looking into this one of the next days. I am however curious: Is it actually desirable to have menu tooltips enabled, but then not have descriptions or previewimage for a folder? (In addition to having the titles disabled)
 
User avatar
Martin
Experienced
Posts: 651
Joined: 30 Jan 2011, 23:24

Re: Imagevue X2.7

05 Jun 2011, 10:59

mjau-mjau wrote:mabro: There are some inconsistencies in the menu I will admit, so I will be looking into this one of the next days. I am however curious: Is it actually desirable to have menu tooltips enabled, but then not have descriptions or previewimage for a folder? (In addition to having the titles disabled)
I can only speak for myself and not for Michel Morel or JLB... but it would be nicer if it wouldn't show at my menu-item that switches languages....
But, if I were you, I wouldn't spend a lot of time on it... especially when in a few months, probably, there will be more changes in the menu-systems in v2.8...
 
User avatar
JLB
Posts: 18
Joined: 17 Nov 2010, 13:28

Re: Imagevue X2.7

05 Jun 2011, 12:27

Hello,
For me it's no big deal finally we can put different descriptions (see my website). You probably have other priorities! :wink:
JLB Photos
http://www.photosjlboitte.be
Photographe Sportif aux Editions de l'avenir.
 
User avatar
Nick
Imagevue Hitman
Posts: 2872
Joined: 02 May 2006, 09:13

Re: Imagevue X2.7

06 Jun 2011, 09:53

Imagevue X2.7.1.2

Minor bugfixes

Fix: Workaround for missing mb_string in PHP
Fix: Problems registering with Fotomoto in PHP less than 5.2
firedev.com
 
Michel Morel
Experienced
Posts: 34
Joined: 03 Jun 2011, 10:50

Re: Imagevue X2.7

06 Jun 2011, 10:16

mjau-mjau wrote:
Michel Morel wrote:I have the same probleme that JLB (viewtopic.php?p=26688#p26688) and maybe Mabro (viewtopic.php?p=26694#p26694). The field is empty but is showed.
I had this probleme with 2.7.1 and 2.7.1.1, but not 2.7 .
One idea ?
Do you have a link to your website? I would like to check exactly what attributes are being filled.
Hello, during an update, I make a test first on a local server. And since there was a problem, I had not done the update online. But for your needs, it is now (in 2.7.1.1; http://www.storygraphe.fr). Thank you for telling me when you have done your audits to submit my site to version 2.7.
And for your information, same with 2.7.1.2.
 
User avatar
mjau-mjau
X3 Wizard
Topic Author
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Imagevue X2.7

08 Jun 2011, 14:08

Imagevuex X2.7.2
Fixed a few issues, including the menu tooltip bug and the languages- bug reported recently in this thread.
  • Fixed: Language switcher bug introduced in one of the previous updates
  • Fixed: Bugs with main menu folderdescription/tooltips
  • Fixed: Authorization didn't work in IE
  • New: If Fotomoto is down Imagevue won't wait to load their scripts
  • New: Updated Dutch language
[Imagevue Downloads]

If you just want to fix the menu bug, you can download the latest imagevue2.swf here (right-click, and choose "save as"), and replace it in your gallery under iv-includes/.