34 comments found.
Good luck with your sales
Hello, new to the project? Optimize performance with contextual promotional box. Popup is a great way to show our message.
insert code or layout inside, be it banners, newsletter sign, contact forms, special offer display, images, galleries, iframe, video,
Popup box to start site 24hours per session ip “cookie” Set a custom cookie for visitors such as the site here http://www.h-15.com/possible? have demo with demand
thank you
Hi,
Sorry, my plugin does not have the feature you need.
Regards.
hi,you said that you will add the functionality. on a new project you talking about the cookie feature ?.Regards.
Hi,
I have not ready released a new thing at this time. I am working for other projects.
Regards.
Hello, To open a pop up lightbox as a newsletter, a particular image or other iframe to open a page automatically. Is it possible that a window opens to the page loads? San but we have to click on a link. I would like ca runs the page loads. Do you know how I can do? create a cookie and be able to specify that this popup will open once every 24 hours, for example. thank you
Hi,
MetroBox plugin can’t open automatically at page load. It is just opened by clicking. If you are looking for a lightbox that can auto open at page load you can try to check my OpenPanel jQuery plugin.
Kind regards.
Hello,
I am very interested by your plugin * for example Your script to open a popup to open a html page, to set the automatic closing, create a cookie and be able to specify that this popup will open once every 24/48 hours. That is possible
Thank you
Hi,
Sorry, my MetroBox plugin does not have the feature to control cookies at this time.
Thank you for your interest. Maybe I will consider this feature in next time.
Regards.
Hi, Okay okay, so this is possible? Integrate a javascript in our index.php? with a code as in Example Do you have such a trick to that popup, when closed will not open the page reload? How do you not that it appears each click? (Page change, for example?) For I but the “javascript” code in the index.php file in the head tag, but it appears to avoid ever !!! how to make my Popup opens only once (say 1 time per day) per user session to specify that this popup will open once every 24/48 hours for example. Cordially.
HI,
I would like lightbox fact to open a popup to open a html page, to set the automatic closing, create a cookie and be able to specify that this popup will open once every 24 hours, for example.
implemented a popup to open its site to display information or a pub?
Thank you
Hi,
Sorry, MetroBox plugin does not have the feature that you want at this time. I will note you comment as a feature request for next time.
Kind regards.
Thank you
can other users leave comments? I am not seeing how to leave comments for each gallery. Could this also be user generated images? Thanks!
Hi,
MetroBox is just a lightbox that is used to display your images/content/comments. It does not have a full comment system so you can not submit comments.
Kind regards.
Hi, I’m having trouble getting the plugin to work in Dreamweaver (html version). The links to the content don’t seem to be clickable, so I can’t get the content to show up. Is there anything special I should be doing to embed the plugin in dreamweaver? Thank you.
Hi,
You can use Dreamweaver to edit my MetroBox plugin without problem. Maybe there is something wrong when you changed the HTML code. If you can give me the page you changed I will check it for you.
If you have more questions you can open tickets on my support system: http://talk.sonhlab.com
Kind regards.
Thank you for answering. Here is the page. Your help would be much appreciated. http://retepchase.free.fr./pages/textes.html Greetings.
I checked your site but I do not see Metrobox on it.
Sorry, I tried something else in the meantime. Here it is : http://retepchase.free.fr./pages/textesmetro.html
Ok. I think you should try to remove these lines on your page:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
Because you added many jQuery library versions in the same page so it made conflicts on your page. In same page, you should use only one jQuery library.
Kind regards.
Thank you for answering. The problem is I need the jQuery libraries you mention for the mmenu plugin. And there seems to be a conflict with the mmenu plugin. If I take one of them out the other one works, otherwise neither of them works. (That is, if I am doing things correctly) Greetings.
You do not need to add many jQuery libraries for many jQuery plugins. Just keep only one jQuery library version and always add jQuery library before plugins.
On your page, I see you added two jQuery version (2.1.1 and 1.9.0). My MetroBox can work with both versions. So if your mmenu plugin can not work with 2.1.1 version you can remove it and keep 1.9.0 version.
Kind regards.
the lightbox looks great, going to purchase but im just wondering if its possible to have a slide animation on the images when going next/prev ?
Hi,
At this time, it just has only fade effect animation when moving next/prev content.
Kind regards.
<div id="mb-mainbody">
<ul id="mycarousel" class="jcarousel-skin-ie7">
<?php for($f=0; $f<=$cantidadOfertas - 1; $f++){ ?>
<li class="thumbnails" data-mbgid="mb-contentgroup-1" data-mbid="mb-content-<?php echo $f+1 ?>"><img src="<?php echo $listaOfertasThumb[$f] ?>" width="132" height="99" class="sombraImagen" /></li>
<?php } ?>
</ul>
</div>
and the qa page where it can be show:
http://qa.jumbo-web.com.ar/ofertas-acoyte_1.html
Regards. Ruben.
Hi,
I think you need to check your content packages that you prepared in “mb-content.php” file. I checked your site and see when I click on your thumbnails it just show one content package (it should load all content packages in the same group) so the next and prev do not display. Maybe your “if…else” statement need to improve.
Kind regards.
// MetroBox Content Group
function mbContentGroup() {
alert ($mbgid.length);
if ( $mbgid !== undefined ) { // Check group exist
// Add Prev and Next button
$('#mb-header').append("<div id="mb-next" /><div id="mb-prev" />");
var $numItems = $('.'+$mbgid).length;
alert ($numItems);
var itemgroup=new Array();
for ( var i=0; i<$numItems; i++) {
itemgroup[i] = $('.'+$mbgid).eq(i).attr('id');
alert (itemgroup[i]) ;
}
And the code in mb-content.php is:
$nombreSucursal= $row["name"];;
//include "admin-ofertas.php";
//inicializo un índice
$i = 0;
//inicializo el array que almacenará los objetos
$listaOfertas = array();
$listaLegales = array();
do{
$listaOfertas[$i] = "../../admin/user_files/images/org/".$row["file_name"];
$listaOfertasThumb[$i] = "admin/user_files/images/small/".$row["file_name"];
$listaLegales[$i] = $row["description"];
if ($row["file_name"]!=""){
$i++;}
} while ($row = mysql_fetch_assoc($g));
$cantidadOfertas = $i;
$stridimg = $_POST['mbid'];
$posstart = strrpos ($stridimg, "-");
$idimg= substr($stridimg, $posstart + 1);
$idimgarr = $idimg - 1;
$imgname ="";
for($f=0; $f<=$cantidadOfertas; $f++){
if($f == $idimgarr)
{
$imgname = $listaOfertas[$f];
}
}
?>
<!-- oferta 1 -->
<div id="mb-content-<?php echo $idimg ?>" class="mb-contentgroup-1">
<div class="mb-content">
<div class="mb-imgholder">
<img src="<?php echo $imgname ?>" alt="" class="mb-responsive-img mb-swipe" />
</div>
</div>
</div>
<!-- oferta 1 -->
$nombreSucursal= $row["name"];;
//include "admin-ofertas.php";
//inicializo un índice
$i = 1;
//inicializo el array que almacenará los objetos
$listaOfertas = array();
$listaLegales = array();
do{
$listaOfertas[$i] = "../../admin/user_files/images/org/".$row["file_name"];
$listaOfertasThumb[$i] = "admin/user_files/images/small/".$row["file_name"];
$listaLegales[$i] = $row["description"];
if ($row["file_name"]!=""){
$i++;}
} while ($row = mysql_fetch_assoc($g));
$cantidadOfertas = $i;
$stridimg = $_POST['mbid'];
$posstart = strrpos ($stridimg, "-");
$idimg= substr($stridimg, $posstart + 1);
$idimgarr = $idimg - 1;
$imgname ="";
for($f=1; $f<=$cantidadOfertas - 1; $f++){
?> <!-- oferta 1 -->
<div id="mb-content-<?php echo $f ?>" class="mb-contentgroup-1">
<div class="mb-content">
<div class="mb-imgholder">
<img src="<?php echo $listaOfertas[$f] ?>" alt="" class="mb-responsive-img mb-swipe" />
</div>
</div>
</div>
<!-- oferta 1 -->
<?php
}
?>
and its work perfectly.
Best regards.
It is good to hear that. Regards.
Hi, i would like to buy metrobox, can I make image zoom like facebook? and the plugin take the content text with or without styles?
I just bought it, and i dont have the html file
Hi,
I just send you the HTML file via email. Please check your mail box.
MetroBox plugin does not have zoom function at this version. I don’t know which content text that you are mentioning? Could you make it clearly?
Kind regards.
Hi I send you and email with some questions, because I have a plugin that Mark the word you searched with some style and I would like to load all mb-customcontent and mb-customcontent in one query without the php files (all my info is in my database)so the plugin can mark that word and display it in the lightbox with some style. What should i do?
I replied your email. Please check your mail box.
Does this box support next and previous in popup for ajax html files?
Hi,
The next and previous function in the plugin can move photos in the same group only. It does not support to open a new ajax file at this time.
Kind regards.
Your product description says that files included are: JavaScript JS, HTML, CSS, PHP. But after downloading the product I found out that there is no single HTML file. I think you need to check it out. Please I will like you to send me the HTML version.
Thanks
Hi,
You can send me email to get the HTML version.
Kind regards.
OK. I just sent you an email. Thanks.
I replied your email with the HTML version. Please check your inbox.
Regards.
Hello SOHN,
I just bought your product and have tried installing it but to no avail. I am not using php. Please could you provide me with the HTML version.
Thanks.
Hi. Just bought this item but it seems i am going to need an HTML version. Could you provide me with one? Thanks.
Hi,
I replied your email and sent you the HTML version in the email.
Kind regards.
I’m using this with a PHP based CMS and need to modify where the php file is located mb-content.php & mb-comment.php
Also, it would be helpful to be able to drop the .php file extension, is this possible?
Hi,
If you want to change mb-content.php and mb-comment.php location you need to edit the javascript file (metrobox.dev.js) in “js/’ folder.
Open the metrobox.dev.js, then search “content/metrobox/” you will see the file path settings (line 390 for mb-content and line 661 for mb-comment). You can change the path (and file extension) to where you like.
About ”.php” file extension you can edit at file path settings or use “ext” param to change file extension.
I am making an only HTML version for this plugin and will be released in next time. If you are interested in HTML version you can email me to get it soon or wait for an official release.
Kind regards.
Ok thanks, it looks like I’ll need the HTML version as the PHP is conflicting with my CMS, will email you now
Hi,
I replied your email. Please check your inbox.
Kind regards.
Hi ^^
Can I use this for wordpress ? Will you have any plan to make a wordpress version ?
I also send an email to you, hope to hear from you asap
Many Thanks
Phoebe
Hi,
Thank you for your interest in MetroBox.
This plugin is not supported for Wordpress system.
I replied your email, please check your inbox.
Kind regards.
Can this be programmed to load on page load ?
Hi,
No, MetroBox just work when an element is clicked.
Kind regards
Hi. I have it on a Slider and it works pretty nice. But then I move the slides and when I go back to the slide with MetroBox it doesnt work. Only the second and more times. The first time works great. Any advice?
Hi
I think you should try to re-call MetroBox when you call it from the second call.
Kind regards
Hello again Sohn,
I noticed a small bug that occurs only with small resolutions (768×1024 for example). The information box (.mb-customcontent) makes the image disappear when its open, can you please look at it?
Hi,
It’s not a bug. On mobile devices or small screen the main content will be hidden when sub contents is displayed. The small screen will be messy if it displays a lot of things.
Kind regards
I’m planning to use the information box to display only 2 lines of text and a button and im going to use opacity for the background so if its even displayed on top of the image, it wont be a problem.
Can i disable that auto content hide for small resolutions?
If you don’t want the main content be hidden you you can remove ( or comment 2 lines ) in metrobox.dev.js: 619 and 703.
line 619: //$(’#mb-contentzone’).css({‘display’:’none’});
line 703: //$(’#mb-contentzone’).css({‘display’:’none’});
Please update the instructions. I get the following js with the package and it doesn’t match the instructions:
jquery-ui-1.10.1.custom.min.js jquery.min.191.js jquery.jscrollpane.min.js jquery.mousewheel.min.js metrobox.dev.js metrobox.min.js touchpunch.min.js
What are each and can I put in footer, not header. I am using the jQuery off of google. Hopefully this works in 1.9.1 JQuery.
I need to not have any comments and I don’t want to use the jQuery UI, it’s a lot to load. What is the bare min. for lightbox with touch?
I updated the documentation. Please check here: http://docs.sonhlab.com/metrobox-unique-responsive-lightbox/
Usually you can put javascript files in footer without problems.
jQuery UI is required in this plugin at this time. If you remove it many features will not work.
Kind regard
Can you make a version without comments? I won’t need them and I bet many people don’t use them.
Also, does this work with jQuery 1.9X?
Thanks!
Hi,
If you do not need comment module you can disable it, just open “metrobox.css” file in “css” folder. Then search ”#mb-cmshowbt” and add “display:none;” for it. You can do the same for other buttons.
MetroBox work well with jQuery 1.9.1.
Kind regards,