ethanbeyer
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager - OpenStreetMaps] Maps load with missing imagesApologies, this issue was the result of a theme CSS conflict, and has been resolved.
Forum: Plugins
In reply to: [Events Manager - OpenStreetMaps] Maps load with missing imagesSorry for the unhelpful first post.
Maps are loading with several images missing. Zooming loads new images, but still contains gaps with no images at all.
I don’t see any errors in the Javascript Console, or 404s in the Network tab – it seems like everything is working. It’s just that the output is off.
Forum: Plugins
In reply to: [Blogger Importer] Migrate Image Files Blogger WordPress*headsmack*
I am such a dope. Thanks. I will report back with my results after I have some.
Forum: Plugins
In reply to: [Blogger Importer] Migrate Image Files Blogger WordPressThanks for your reply – I wasn’t sure if I was missing a step somewhere. But ironically, I’ve run into another snag.
I uploaded the
blogger-importerfolder to/wp-content/plugins/and then when I log into the back end, it doesn’t even show up in the plugins list. So I’m not sure what to do from there…Forum: Plugins
In reply to: [Blogger Importer] Migrate Image Files Blogger WordPressHello,
I was so excited to find this plugin – it says it does exactly what I need it to in these forums, but if I download the release from ww.wp.xz.cn, it says that images is one of the things not downloaded. I may just be daft – but is there a link to the current dev/working version that also imports images that you could provide me with?I’d love to help beta test it for you, if nothing else.
Thanks!
Forum: Themes and Templates
In reply to: An Organization/Taxonomy/Custom-Post-Type QuestionALMOST THERE!
Does anyone know what needs to go in those PHP tags on line 33??
Forum: Themes and Templates
In reply to: An Organization/Taxonomy/Custom-Post-Type QuestionStill hammering away at this…with no luck.
Here’s my code, which I’m afraid is dreadfully wrong.
Help?
Forum: Themes and Templates
In reply to: An Organization/Taxonomy/Custom-Post-Type QuestionThis isn’t a bump, but a progress report…
I have figured out how to add metadata to an attachment, even so far as how to save that metadata and so forth! I’m pumped.
But I’ve hit a new wall.
I’m creating pages called “Bedrooms”, “Kitchens”, etc.
What I need to do is first save the slug of the current page. I did that using this code:
<?php global $post; $slug = get_post( $post )->post_name; ?>Then I need to check
$slugagainst the meta_key_room‘s value to see if they match, because I only want Bedrooms on the Bedroom page. If they DO match, I need to display that image’s “Large List” size. I know how to do that. Really the only thing that’s out of my league is taking$slugand making sure it matches_room, and then link that image to its parent post.I know that is a lot. But I would appreciate it IMMENSELY if anyone could help shed some light on it for me!
Forum: Hacks
In reply to: Creating new metadata for attachments ?Scratch that – I had forgotten to rename the functions to match the filter call. Nevermind. Thanks for sharing this code!
Forum: Hacks
In reply to: Creating new metadata for attachments ?VJPO,
I am using a bit of your code because it was exactly what I was looking for…unfortunately I can’t get the radio buttons to actually show up in the Edit Media page. How did you do that?
Thank you in advance!
Forum: Themes and Templates
In reply to: Page Template: Irregular Width Subpage GalleryBurak,
I did make some progress, and all the thanks goes to Alchymyth!
Here’s the code for the page itself: http://pastebin.com/XQPM3giS
And here’s some code you’ll need to make sure makes it into your
functions.phpfile: http://pastebin.com/6huzHA1HAnd then finally, you’ll need to make sure you have some CSS for it:
http://pastebin.com/3HjZHp8gLet me know how it works for you. Also, paste a link!
Forum: Themes and Templates
In reply to: Page Template: Irregular Width Subpage GalleryFurther progress, but the issue of one subpage being displayed 4 times before moving on to the next subpage remain.
Most recent batch of code:
http://pastebin.com/qXZAzjCZHope somebody out there has some ideas!
Forum: Themes and Templates
In reply to: Page Template: Irregular Width Subpage GalleryAlright, I’ve made some progress. Here’s my code now:
…and how it looks in-browser: http://dev.ethanbeyer.com/work
The problem I’m running into is that it’s obviously pumping the same post through the four stops, and then starts over…but I want each of the boxes to link to a different post.
Any help out there?
Forum: Fixing WordPress
In reply to: Thematic: Display Content For Categories Rather Than ExcerptsWow – it took some digging – but I got it figured out.
Thematic had built into
the_content()arguments denoting whatthe_content()actually was in an entirely separate PHP file buried away.I edited that a little bit and whammo-blammo – got it working how I wanted it to.
If you’re interested, here’s the link that helped me out: http://themeshaper.com/forums/topic/full-posts-in-archive-pages#post-13520
Thanks for taking the time, pkenjora!
Forum: Fixing WordPress
In reply to: Thematic: Display Content For Categories Rather Than ExcerptsI’ve looked into both the Thematic <i>and</i> Boumatic code – this is archive.php:
<?php /* Template Name: Archives Page */ ?> <?php // calling the header.php get_header(); // action hook for placing content above #container thematic_abovecontainer(); ?> <div id="container"> <div id="content"> <?php the_post(); ?> <div id="post-<?php the_ID() ?>" class="<?php thematic_post_class() ?>"> <?php // creating the post header thematic_postheader(); ?> <div class="entry-content"> <?php the_content(); // action hook for the 404 content thematic_archives(); edit_post_link(__('Edit', 'thematic'),'<span class="edit-link">','</span>'); ?> </div> </div><!-- .post --> <?php if ( get_post_custom_values('comments') ) comments_template(); // Add a key/value of "comments" to enable comments on pages! ?> </div><!-- #content --> </div><!-- #container --> <?php // action hook for placing content below #container thematic_belowcontainer(); // calling the standard sidebar thematic_sidebar(); // calling footer.php get_footer(); ?>there’s nothing about
the_excerpt()– in fact, it IS callingthe_content()! I don’t know what to do…