katymoon
Forum Replies Created
-
Forum: Plugins
In reply to: [CiviEvent Widget] Change link to event detail pageYour last post sorted it totally.
Thank you 🙂
Forum: Plugins
In reply to: [CiviEvent Widget] Change link to event detail pageJust noticed that the link has updated but not the text…
Forum: Plugins
In reply to: [CiviEvent Widget] Change link to event detail pageHey.
I’ve tried your ‘hack’ to change the link and the text – can see the changes in the code if I click ‘edit’ from the plugins page on the site… but nothing is showing up on the pages.
I know this is a little outside of support for this extension, but wondering if you have any idea why I’m not seeing the change?
Thanks!Forum: Plugins
In reply to: [CiviEvent Widget] Change link to event detail pageMakes sense.
I was recreating a listing where there was a ‘more info’ link. But I think I’ll just miss the button and say that having the titles as links is good enough. Am I being silly? I can’t see how to easily omit the links to the register now page in the shortcode…Forum: Plugins
In reply to: [CiviEvent Widget] Order of parametersMakes sense.
I think being able to choose the order would be a valuable addition to the extension.
Thanks again for providing this.Forum: Plugins
In reply to: [CiviEvent Widget] Order of parametersThanks. Feels like a more logical order would be:
Event title
City
Summary text
Register NowIf that’s an easy change, might be worth considering.
Check this post for the solution: http://ww.wp.xz.cn/support/topic/plugin-smart-archives-reloaded-include-instead-of-exclude-categories?replies=8
jsherk – did you ever find a way to do this?
Forum: Fixing WordPress
In reply to: Displaying multiple images with same custom field keyUpdated needs 🙂
So I have this page with several images all with the same custom field key. I want to modify the above code that esmi so helpfully sorted out for me to display just one of the instances of
$thumbat a time, at random, and to change, at random, on page refresh to another$thumb. Any ideas? I guess it’s changing this bit:<?php foreach($thumbnails as $thumb) { echo '<img src="' . $thumb . '" alt="" />'; } ?>to say ‘ show one’ not ‘show all’ and then some additional code to change image on refresh…
Thanks a lot for any help offered 🙂
Forum: Fixing WordPress
In reply to: Featured Image – Displaying 3 random images on the homepage?I’m gonna start again with this with a different approach so don’t worry about trying to help 🙂 Thank you
Forum: Fixing WordPress
In reply to: Featured Image – Displaying 3 random images on the homepage?If I add a fourth post – I’m now seeing 4 versions of the same image for each post.
Forum: Fixing WordPress
In reply to: Featured Image – Displaying 3 random images on the homepage?My whole index.php is
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Fixing WordPress
In reply to: Featured Image – Displaying 3 random images on the homepage?Thanks Esmi, that just shows 3 versions of the correct picture for each post! There’s something funny going on with the 3 thing here….
Forum: Fixing WordPress
In reply to: Featured Image – Displaying 3 random images on the homepage?underneath
<?php the_content(); ?>Forum: Fixing WordPress
In reply to: Featured Image – Displaying 3 random images on the homepage?<?php $thumbnails = get_posts('numberposts=5'); foreach ($thumbnails as $thumbnail) { if ( has_post_thumbnail($thumbnail->ID)) { echo '<a href="' . get_permalink( $thumbnail->ID ) . '" title="' . esc_attr( $thumbnail->post_title ) . '">'; echo get_the_post_thumbnail($thumbnail->ID, 'thumbnail'); echo '</a>'; } } ?>