Hi, I’m really pleased with Fixel and so far has been very easy to use and update. The one issue I cannot resolve so far is to link the images used in a gallery post to a specific page. Url is http://theretailroom.co.uk (Its the large feature gallery post in the bottom right side)
Any help would be really appreciated.
Many thanks
Raj
1 Answers
Currently there is no option to link images in gallery post to a page, but you can link it to the gallery post itself. To do that, you can open up the content-gallery.php file in themes/dw-fixel folder, find the code below (around line 13):
<div class="carousel-inner">
...
</div>
and change it into this:
<a href="<?php the_permalink(); ?>" data-toggle="modal" data-post-id="<?php the_ID(); ?>" class="info">
<div class="carousel-inner">
...
</div>
</a>
Hope this helps!
Please login or Register to submit your answer