WP Plugin for Images on Left and Content on Right?

5 replies
I have an association client that records teleseminars. Then they post a photo of their speaker on the left and content about the teleseminar on the right along with a buy link.

Now imagine 50 of these thumbnail images down a page with content on the right. Easy to do in their old dreamweaver site where I finally got them away from using tables. Impossible for client to maintain in their new WordPress site without html knowledge.

I figured there would be something out there like a gallery plugin where you just upload your images, type in whatever content you want, and pick the order on the page that you want the pic along with the content to display. But all of them that I've seen just have the thumbnail with rollover effects showing text. We need these images and content to be displayed without rollover so that it all just looks like content on a page, with pics on the left and content on the right.

What plugin would you recommend? Paid or free, I don't care at this point.
#content #images #left #plugin
  • Profile picture of the author SteveJohnson
    Why do you need a plugin?

    Insert the image into the post, set it to align left, type the content, rinse and repeat.

    In your stylesheet, set the aligned images to float left and clear both, with some padding on top to provide some separation above the previous entry.

    Or you could add a custom post type that uses text and a featured image; they would type in the text, load the image, go on to the next one. If you set the custom post type up as a page, with page attributes, you can use page order to order the results in the query that pulls the content.

    EDIT: I suppose the custom post type suggestion could be turned into a plugin, maybe using shortcode to display on the desired page.
    Signature

    The 2nd Amendment, 1789 - The Original Homeland Security.

    Gun control means never having to say, "I missed you."

    {{ DiscussionBoard.errors[7759615].message }}
    • Profile picture of the author lerxtjr
      Problem with floating it is if the content description goes longer than the height of the book cover, it will wrap around. Then we'll have line space issues too every time they change the description.

      Problem with posts is that every tele-seminar, book, cd, whitepaper, or resource would need its own page/post. That would be just a nightmare of hundreds of pages to expect this client to sift through to manage. And, and the custom post type will jack up the permalink structure.

      Whereas, with a plugin, they could go into the plugin admin, see a list of uploaded photos/images, scroll to the description of their choice, make their edit and save. That's the dream anyway
      Signature

      Come practice your public speaking skills with us FREE every week! SpeakersSpeakLIVE.com >>

      {{ DiscussionBoard.errors[7759687].message }}
  • Profile picture of the author SteveJohnson
    So you basically want to edit the content of one page/post entry through a plugin, keyed visually to the thumbnail image?

    Correct me if I'm misunderstanding, but wouldn't the plugin 'admin' have to show those hundreds of image/text combos also? That would make for one long-ass admin page - that could also take quite a while to load, if it has to display all of the images.

    A couple of points:
    • you can control how many post listings are shown on the 'All posts' landing page through the click-open options panel at the top of the page. I think the current max is 200.
    • A custom post type doesn't jack up the permalink structure. The only time a custom permalink structure is needed is if the custom type needs to be shown as a single entry, with a custom prefix.

    All of this is moot, though, if your client absolutely needs visual aids to determine what description to edit.
    Signature

    The 2nd Amendment, 1789 - The Original Homeland Security.

    Gun control means never having to say, "I missed you."

    {{ DiscussionBoard.errors[7759770].message }}
    • Profile picture of the author lerxtjr
      haa, yep, one long-ass admin page indeed. Best I can hope for is that the plugin (sounds like I'll be paying someone to create) could be categorized so that only images and descriptions for a particular page would display based on selection area name inside admin. For example, teleseminars recorded 2012 would show from clicking one admin tab, teleseminars recorded 2011 would be in another tab, books we recommend would be another tab.

      And, yes, the whole challenge here is making an admin page that looks like a Dreamweaver table. Visual image or photo on left column, description in a text field on right column.

      I really appreciate your comments by the way. Figured there would be tons of need for this type of thing years ago but apparently I'm the first or all in the past have just given up on the idea.
      Signature

      Come practice your public speaking skills with us FREE every week! SpeakersSpeakLIVE.com >>

      {{ DiscussionBoard.errors[7759844].message }}
  • Profile picture of the author SteveJohnson
    Marty (I'm assuming that's your name, from your sig), I'm going to give one last shot at trying to keep you from reinventing the wheel - no more, I promise

    You mentioned in your last post that the images and descriptions are split up into separate pages ( "only images and descriptions for a particular page" ). That means that there is obviously some sort of taxonomy being applied - date, publication type, or even a combination of several taxonomies.

    You have discreet chunks of data - let's call them publications - that each have their own discreet components: date, image, description, buy button. Right now, you have no way of organizing that data. You build a page by building a table of these publications, pasting the image, description, and button in where they're supposed to be, with the page being those publications produced in a certain year. Do I have that right?

    What if, at some point, your client wants to rearrange the publication list by grouping them in, let's say, publication types like books, teleseminars, etc. It couldn't be done without doing the copy/paste thing into new pages, which would take forever.

    These publications and their associated data are what databases do best - store and retrieve discreet data bits based on certain criteria.

    You can do this with WordPress with a custom post type and custom taxonomy, and still satisfy your client's need for visual cues by adding the featured image thumbnail to the column display in the backend. They would be able to filter the publications by taxonomy (category), be able to quickly edit the description through the Quick Edit function. They would be able to easily add new publications without having to know anything about HTML, CSS, dogs and cats, or chimpanzees. If they can edit a post, they can manage their content easily.

    YOU would then be able to display the publications based on whatever criteria you choose - pub date, taxonomy, artist, author, whatever - just by some simple changes to the selection function that spits out the publication list.

    And this functionality could easily be packaged in a plugin so it would not be theme-dependent.

    OK, pitch over
    Signature

    The 2nd Amendment, 1789 - The Original Homeland Security.

    Gun control means never having to say, "I missed you."

    {{ DiscussionBoard.errors[7760122].message }}

Trending Topics