argraff
Forum Replies Created
-
Forum: Hacks
In reply to: Custom taxonomies: getingt rid of link on display??@aut0poietic – thank you for that. I was looking to do the same thing, and that saved me a lot of headaches. Back to coding!
Forum: Plugins
In reply to: [Plugin: the-events-calendar] Call to undefined functionAfter a night of not sleeping, I feel like I should clarify: posts tagged as ‘Events’ show up as requested, but not using the TEC templates. They just show up as normal posts.
My course of action for the morning is to download a misbehaving site locally and see if it resumes functioning correctly locally. Any ideas are appreciated.
+1 on this end!
No links that I can find, but I found a short bit of code that might get you moving in the right direction:
<?php $gal = apply_filters('the_content', '[slideshow id=x]' ); echo $gal; ?>Replace ‘x’ with the gallery of your choice, and the [shortcode] as needed. Hope this helps someone, I spent the good part of the afternoon looking for this.
Forum: Plugins
In reply to: nextgen-gallery embedding thingy in a templateI used the following code to embed a nextgen slideshow into my sidebar. Probably too late to help you out, but for others looking for a way…
<?php $gal = apply_filters('the_content', '[slideshow id=x]' ); echo $gal; ?>Change ‘x’ to the gallery number you need. Hope this helps someone! (Note: I modified someone else’s code – I could never have figured that out alone!)
My new hero of the night is mdedmon. THANK YOU!
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Recommended way to override CSS+1 to fix. This issue drives me absolutely bonkers. Other than styling it, I adore it!
Forum: Plugins
In reply to: Custom CSS and upgrades [plugin: the-events-calendar]Awesome – thanks for posting. I hadn’t considered the !important tag solution at all. I will be trying that out!
I did find out that my stylesheet was being called before the TEC one, hence the issues. I wish WP had a way to designate “put plugin stylesheets here” in the header…
For my temp fix, I simply put the call for my stylesheet at the very bottom of the head.
I thought I was going crazy. Thank you for the clue as to why things were wonky on my site! A fix on this would be appreciated greatly.
Forum: Fixing WordPress
In reply to: Two WP installations – one for main site and one for blog?Wondering how this will affect wp-hive users…It’s working brilliantly at the moment!
Forum: Fixing WordPress
In reply to: Of Submenus & SidebarsI was doing something similar. Check out this page in the Codex and see if that helps with your situation.
I am so in love with the Codex.
Forum: Plugins
In reply to: Custom CSS and upgrades [plugin: the-events-calendar]Thanks! I’m really hoping this is something silly.
Forum: Requests and Feedback
In reply to: Database SchematicAfter some more research, it looks like UML is used. Found Dia on linux (also available for Windows). Seems to work pretty well. Just wanted to post that here in case anyone else was interested.
Thanks MichaelH!
Forum: Requests and Feedback
In reply to: <br /> for gods sakeNone of the above are semantically correct. I don’t want to add a class to every break, my clients don’t know how to, and extraneous paragraph tags are annoying. I seriously hope WP fixes this!
Forum: Plugins
In reply to: [Plugin: The Events Calendar] How to Start the Events CalendarPam – I’ve got it. It will depend on your permalink structure, but I set my options for the Default View to ‘event list.’ Then I created a few posts that I marked as an event as above.
Then, the magic: go to your category page for whatever category you are organising the info under (mine is ‘events’). There’s a button on the top right to switch between views.
For example, my event is at xyz.com/2010/02/post-title/ and the calendar page is xyz.com/category/events/month/ . <– (literal, not a placeholder example like /category/happenings/January)
Boy that’s kind of hard to explain. I hope I helped make it clearer. I’d provide links, but I’m not going live just yet.