The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
|
SlimBox Plugin ?? - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Plugins (http://get-simple.info/forums/forumdisplay.php?fid=13) +--- Thread: SlimBox Plugin ?? (/showthread.php?tid=5269) |
SlimBox Plugin ?? - phpman - 2013-10-12 Dear All, anybody has made a plugin to implement slimbox2 easier into get simple Hope anyone can help. Harald RE: SlimBox Plugin ?? - shawn_a - 2013-10-12 fancybox is already in core, there is a plugin for its use on front end. RE: SlimBox Plugin ?? - phpman - 2013-10-12 correct but if i add the "I18N" language switch into my template the fanybox plugin dosn´t work again. see here.... sample page RE: SlimBox Plugin ?? - Kolyok - 2013-10-12 Hmmm i cant seem to find where you "Fire" fancybox. Have you added $("your_selector").fancybox(); to your code? Edit: Just checked the fancybox plugin and noticed that it sets automatically the selector so nvm about that but I cant even find fancybox lib loaded nor the plugin on your site. RE: SlimBox Plugin ?? - phpman - 2013-10-12 hmm.... confused me now than use the same config here (non dev page without multilanguage support) sample with same config and other result RE: SlimBox Plugin ?? - Kolyok - 2013-10-12 Well there might be something missing/wrong in your templates <head> section since the non-dev version loads both fancybox lib and the fancybox plugin. Can you check the head section of your dev and non-dev template file to see if theres any diferences? Or maybe paste it here? RE: SlimBox Plugin ?? - phpman - 2013-10-12 non dev version head section Code: <head> dev version head section Code: <head> RE: SlimBox Plugin ?? - Kolyok - 2013-10-12 Well first of all move the langswitch outside of the head tags put it just after the body tag Code: <head> It seems that get_i18n_header(); doesnt loads queued scripts at all. (checking it now to see whats the problem) Edit: Not sure if this is how its supposed to be but get_i18n_header() misses the get_scripts_frontend() so no queued scripts are loaded at all (or im doing something wrong). So editing the i18n_base/frontend.class.php and adding get_scripts_frontend() to the outputHeader() solves this. Edited frontend.class.php PHP Code: // like get_header, but tags beginning with _ are ignored and the language is appended to the canonical URL RE: SlimBox Plugin ?? - shawn_a - 2013-10-12 That is a huge bug, is this the latest i18n version ? I cannot imagine that noone has ever caught this before. RE: SlimBox Plugin ?? - Kolyok - 2013-10-12 Yep its i18n 3.2.3 version available on extend. RE: SlimBox Plugin ?? - phpman - 2013-10-12 yes i´ve use the latest version of I18N plugin RE: SlimBox Plugin ?? - Kolyok - 2013-10-12 (2013-10-12, 18:05:36)phpman Wrote: yes i´ve use the latest version of I18N plugin Replace the frontend.class.php file in plugins/i18n_base/ folder with the attached one below and it should work. frontend.class.php (Size: 12.02 KB / Downloads: 10) RE: SlimBox Plugin ?? - phpman - 2013-10-12 you´re right ! Thanks for the fix. But in this case i have another point of the fancybox which installed in the base of the CMS. If you now look on the devpage (with new frontend.class.php) it flicker it i switch from one picture to another one. On lightbox plugins (like galleries) it isn´t so. What i must do to fix this too? RE: SlimBox Plugin ?? - Kolyok - 2013-10-13 Hmmm i just checked your dev-page and i still see the old head section so i cant see what could be the problem with fancybox. Is the frontend.class.php changed and the plugin activated? Edit: I see the plugin was updated by @mvlcek so u should update your plugin and after we see whats with the fancybox thing. RE: SlimBox Plugin ?? - phpman - 2013-10-13 i´ve used your modified I18N frontend.class.php File and if i use it, it work. But now after @mvlcek has update the plugin i replace the complete plugin with the new version to check if my new problem solved or not. In this case (see my last posting in the I18N area i´ve check the fancybox issue too. After Update of the new version (replacement of your file with authors files if dosn´t work again. Now i wrote to mvlcek that he look on your solution to update the plugin to fix this issue too. RE: SlimBox Plugin ?? - Kolyok - 2013-10-13 (2013-10-13, 02:39:09)mvlcek Wrote: I18N version 3.2.5: Take this one, its updated with the needed code. |