Does NOT validate!!!
-
There are SOOOOOOOO many validation errors.. will post more solutions as I find them..
In the meantime, this error “Element link is missing required attribute property“
The RIGHT fix would be for the authors to properly enqueue the stylesheets and javascripts this plugin needs so they are inside the head tag..
In the meantime the bandaid (not as good) fix is to make the following changes..
In the file: wp-content/plugins/gallery-images/Front_end/gallery_front_end_view.php
Find this block of code:
<!--Huge IT gallery START--> <!-- GALLERY CONTENT POPUP --> <?php include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( !(is_plugin_active( 'lightbox/lightbox.php' ) )) { ?> <link href="<?php echo plugins_url('../style/colorbox-'.$paramssld['light_box_style'].'.css', __FILE__);?>" rel="stylesheet" type="text/css" /> <?php } ?> <link href="<?php echo plugins_url('../style/gallery-all.css', __FILE__);?>" rel="stylesheet" type="text/css" /> <script src="<?php echo plugins_url('../js/jquery.colorbox.js', __FILE__);?>"></script> <script src="<?php echo plugins_url('../js/gallery-all.js', __FILE__);?>"></script> <link rel="stylesheet" href="<?php echo plugins_url('../style/style2-os.css', __FILE__);?>" /> <script src="<?php echo plugins_url('../js/jquery.hugeitmicro.min.js', __FILE__);?>"></script> <link href="<?php echo plugins_url('../style/lightbox.css', __FILE__);?>" rel="stylesheet" type="text/css" />
Replace it with this:
<!--Huge IT gallery START--> <!-- GALLERY CONTENT POPUP --> <?php include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( !(is_plugin_active( 'lightbox/lightbox.php' ) )) { ?> <link href="<?php echo plugins_url('../style/colorbox-'.$paramssld['light_box_style'].'.css', __FILE__);?>" rel="stylesheet" property="stylesheet" type="text/css" /> <?php } ?> <link href="<?php echo plugins_url('../style/gallery-all.css', __FILE__);?>" rel="stylesheet" property="stylesheet" type="text/css" /> <script src="<?php echo plugins_url('../js/jquery.colorbox.js', __FILE__);?>"></script> <script src="<?php echo plugins_url('../js/gallery-all.js', __FILE__);?>"></script> <link href="<?php echo plugins_url('../style/style2-os.css', __FILE__);?>" rel="stylesheet" property="stylesheet" type="text/css" /> <script src="<?php echo plugins_url('../js/jquery.hugeitmicro.min.js', __FILE__);?>"></script> <link href="<?php echo plugins_url('../style/lightbox.css', __FILE__);?>" rel="stylesheet" property="stylesheet" type="text/css" />
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Does NOT validate!!!’ is closed to new replies.