I update the module and now the images are invisible an when I click on "edit media" there is the following error message: Notice: Undefined index: field_license in media_gallery_form_alter() (Zeile 846 von /home/weltjugendtag/public_html/drupal/sites/all/modules/media_gallery/media_gallery.module).
i use panels everywhere.
the panel has a row with two regions, "left" and "main". like this:
row
region region
left main
i added a visibility rule to "left" to make it not visible when the url is "brainshare", which is shown in "main", cause i want the content of "brainshare" to be using full page width, so "using" the not used space from "left".
I'm building a college site, I need a custom registration form so that user can select whether he is a student in this college or not and then get a custom registration form based on his choice, and a custom role after account confirmation (this last one is optional because I can change his role when the student registration form is filled correctly, but I really need two registration forms that show based on the user choice). I searched for modules but I only found deprecated ones (I'm on D7). any ideas ?
I created my own theme and my page.tpl.php file consists some images and i want add lightbox effect to those images.I downloaded lightbox scripts and those stuff.I added javascrpits of light box into js folder and stylesheets to css folder.After that i call those file as
<script type="text/javascript">
$(document).ready(function($) {
$('#gallery a').lightBox(); // Select all links in object with gallery ID
$('.gallery a').lightBox({fixedNavigation:true});
});</script>