Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
As I can not reply to following topic, I create a new one
Is it an idea to just go to widgets-bundle > simple-masonry > tpl > default.php
Underneath line:
<?php echo wp_get_attachment_image( $item['image'], 'large', false, array( 'title' => esc_attr( $title ) ) ); ?>
add:
<?php echo ''; echo $title; echo ' '; ?>
add some css to your theme like:
.sow-masonry-grid-item a p {
display: none;
position: absolute;
z-index: 1;
bottom: 0;
left: 0;
top: 0;
right: 0;
margin: 0;
font-weight: bold;
color: #fff;
background: rgba(0,0,0,0.5);
padding: 25px;
}
.sow-masonry-grid-item a:hover p {
display: block;
}
Hi Andreas,
Thank you for the snippet. :)
Consider submitting a pull request for the SiteOrigin Widgets Bundle for its inclusion.