The following warnings occurred:
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message



GetSimple Support Forum
Lightbox for objects - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Feature Requests (http://get-simple.info/forums/forumdisplay.php?fid=7)
+--- Thread: Lightbox for objects (/showthread.php?tid=26)



Lightbox for objects - kristjanmik - 2009-08-08

great way to display object is with this eye candy:
http://www.nickstakenburg.com/projects/lightview/

I recommend you to use it in the future


Lightbox for objects - someone - 2009-08-08

again. this can (and SHOULD) be done in theme. not necessary to bloat the system.


Lightbox for objects - ccagle8 - 2009-08-08

I already use a small-footprint modal window called superbox to show a few things such as images in the 'Files' tab and the navigation & ticket system.

I think I am going to stick with that for a while b/c it's very lightweight and is simple to use for many different things within the admin panel.


Lightbox for objects - focoves - 2009-12-12

ccagle8 Wrote:I already use a small-footprint modal window called superbox to show a few things such as images in the 'Files' tab and the navigation & ticket system.

I think I am going to stick with that for a while b/c it's very lightweight and is simple to use for many different things within the admin panel.
____________
Hi Chris
yes, I'mm seeing at ADMIN->FILES , the attribute
Code:
href="../data/uploads/myimage.png" rel="superbox[gallery][imgList]">

shoud we hard-code it on code editor, when creating page's content ?

or is it there a interface way ?

thanks


Lightbox for objects - Zegnåt - 2009-12-12

focoves Wrote:shoud we hard-code it on code editor, when creating page's content ?

or is it there a interface way ?
There is no way at all to use it on your pages. This is because it is used by the admin backend and the Superbox code doesn’t load when you are browsing your site. As someone said, this “should be done in [the] theme”.

You will have to add the Lightbox/Superbox/whatever files to your theme, make sure the Javascript is being called by your theme, and only then will you have to bother about adding the right parameters to your images. I believe most attributes are accessible from the page editor already when placing an image so that wouldn’t even be much of a problem.


Lightbox for objects - focoves - 2009-12-13

foy anybody that would like use a modalbox on GS

1- modify template
link to JS + CSS, needed for modalbox (Chris likes superbox, so )

Code:
<link rel="stylesheet" href="jquery.superbox.css" type="text/css" media="all" />
<script type="text/javascript" src="jquery-min.js"></script>
<script type="text/javascript" src="jquery.superbox-min.js"></script>

2- modify TinyMCE, in order to allow SIMPLE adition to link attributes like rel="superbox"

tutorial here
http://www.bibblan.com/martin/tinymce-rel-with-lightbox

Important:
a) for turning of the ADVLINK of TinyMCE
ADMIN/TEMPLATE/JS/TINYMCE/PLUGINS/ And delete ADVLINK folder

b) for set 1) of tutorial, (modify TinyMCE adding the CLASS to LINK-WINDOW) YOU NEED TO add
Code:
theme_advanced_styles : 'Link to Image=lightbox',
in ADMIN/edit.php

hope this helps


Lightbox for objects - focoves - 2009-12-13

focoves Wrote:foy anybody that would like use a modalbox on GS
hope this helps

forgot (and forgive that post)

here the solution of Lightbox (superbox) integration
http://get-simple.info/forum/viewtopic.php?pid=1448#p1448