mYrAn
Forum Replies Created
-
Forum: Plugins
In reply to: Help me unravel media.php imagegallery..Anyone :<?
Forum: Themes and Templates
In reply to: Get Page content in templateI Really want to use the gallery as it is, just make it easier on myself when editing the images!
Forum: Fixing WordPress
In reply to: jQuery post popupI have now found the solution! Here’s how to do it for everybody that wants to do simular things. Im using ajax to get the info, and fancybox to display it. Initiate fancybox the usual way.
Where the content should be displayed you do like this:
<?php the_post_thumbnail(); ?> <?php the_excerpt(); ?> <a href="<?php the_permalink() ?>" class="popup" title="<?php the_title(); ?>">Popup</a>Add this to the head:
<script type="text/javascript"> $(document).ready(function() { $(".popup").fancybox({ 'transitionIn' : 'fade', 'transitionOut' : 'fade' }); }); </script>I think that’s right. Remember to make it a class, otherwise it will only show up in one post. Then you edit single.php to display what you want.
Forum: Fixing WordPress
In reply to: jQuery post popupYeah, i think we’re trying to achive the same thing! Like a lightbox with the content in.
Forum: Themes and Templates
In reply to: float clearing errorthank you, works like a charm!
Forum: Plugins
In reply to: Make improvements plugin?Bump 2 ._.
Forum: Plugins
In reply to: Make improvements plugin?Bump :c
Forum: Plugins
In reply to: Two posts per “row”Bump :c
Forum: Themes and Templates
In reply to: Remove border on gallery images?Thanks, it worked like a charm!
Forum: Plugins
In reply to: Create an if to make it write a textWow, i would have never figured that out :’o thanks!
Forum: Plugins
In reply to: Only show a short bit of the post in flowHelp please!
Forum: Plugins
In reply to: Gallery with artists and categoriesBut how can I see all the pictures of a specific artist then? And can I list them in any way?
Forum: Plugins
In reply to: Gallery with artists and categoriesIf an artist has created painted a picture, and I make a post and write a little about it and upload this in the paintings category, and 2 weeks later create a graphic, and I make a new post and put it in the Graphic categorie, how would it know which artist it is? I don’t understand that part.. Thank you for helping!
Forum: Plugins
In reply to: Gallery with artists and categoriesI don’t fully understand it :c I think I understand how you’re thinking, but i don’t understand how I should execute it.. Can each artist have multiple paintings or graphics in different categories?