banannah
Forum Replies Created
-
Forum: Plugins
In reply to: [AddToAny Share Buttons] Icons not displayingnevermind, it was duck duck go’s privacy extension blocking them loading. However other social share buttons (eg. Jetpack don’t) get blocked
thanks for getting back to me. Good luck with the development! ??
ok thanks for the speedy reply anyway ??
Forum: Plugins
In reply to: [Soundy Background Music] Not working: only play on certain pagesAlternatively is there a way to automatically stop Soundy playback when a video plays?
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] Allow users to add markersthanks for the response and good luck with all the work then ??
Forum: Plugins
In reply to: [Basic Google Maps Placemarks] Allow users to add markersCool, thanks for the response, I’ll figure it out ??
Forum: Themes and Templates
In reply to: Child theme page templates – don't think I'm doing it right?? I have asked them as well, but was wondering if I am making an obvious mistake – surely any custom page template could have calls to functions in it. Is this a common problem / mistake when making a child theme? Is there a broad principle I am missing here?
Forum: Plugins
In reply to: [Instagram for WordPress] plugin broken :(nevermind
Forum: Fixing WordPress
In reply to: query posts by custom field value by clicking on a link?@anevins heh, yes that would be better, but as the ‘events’ functionality needed to be modified and restructured quite a bit I just decided to modify the existing one – I was having trouble making some changes work using a child theme. But thanks, you’re completely right ??
Forum: Fixing WordPress
In reply to: query posts by custom field value by clicking on a link?sorry, my code did not seem to work – let’s try again:
Original that shows only upcoming events:
$is_events_child = cat_is_ancestor_of($_reserved_categories['events'], get_query_var('cat')); if( is_category('events')) {query_posts($query_string . '&meta_key=fw_event_time&meta_value='.time().'&meta_compare=>&orderby=meta_value&order=ASC'); } if($is_events_child) {query_posts($query_string . '&meta_key=fw_event_time&meta_value='.time().'&meta_compare=>&orderby=meta_value&order=ASC'); } /*there's prob a better way to do this but this worked to include events sub-categories*/
What I added to try and display only past events:
<a href="<?php echo $past_events; ?>">View past events</a> $past_events = query_posts($query_string . '&meta_key=fw_event_time&meta_value='.time().'&meta_compare=<&orderby=meta_value&order=ASC');
ok nevermind, I just set the width to 100% and the height to auto as it’s html5 video.
Forum: Plugins
In reply to: [heyyou] [Plugin: heyyou] PHP error on activationI have the same problem I think – on activation it just shows a message “The plugin does not have a valid header.”
Also using WP built in installer.
Any plans on updating / fixing the plugin?
wow! thanks so much ?? sorry about the repost, was having trouble submitting the comment – my connection sucks today. Will keep an eye on developments, looking forward to the next release – this is a really useful plugin.
Hi – any progress on this?
Forum: Plugins
In reply to: Best way to put video in Header?you can put any html (images, text, iframes, whatever) within an existing div, or a div within a div. Or a div within a div within a div…
Just open your php file and find the div you’re looking for and put stuff in it ??
Just make sure you close all your div tags etc </div> – remember that HTML and php have a nested structure