Mike3853
Forum Replies Created
-
I wouldn’t know how to begin, unless there is a noob guide somewhere 🙂 Is there one?
I was just making the suggestion for you guys to add it to your plugin because it would be pretty essential for most events, and doesn’t seem like it would be very hard to create.
Thanks for your reply!Forum: Plugins
In reply to: [Posts for Page] [Plugin: Posts for Page] how to show "posted by" image?hmmm I tried that and it didnt work
hmmm this seems like a tough problem no one can crack. If anyone can solve how to make posts show up on the Events page (without using a plugin with ugly formatting like I am using now) I will send them $20 via paypal to show my appreciation. Send me an email to [email protected] and we can arrange to talk on an instant messenger, or skype, or I have a teamspeak server we could talk on. I think that would be easier then chatting back and forth on here.
I still haven’t solved this, but I installed this plugin called, “Blog-in-Blog” to display posts on the Events page, which it does…but with a bad formatting.
If you look at my website http://msflights.net/ and scroll down, you can see the posts with an ugly formatting (I would like the nice-n-neat default formatting that WordPress uses when displaying posts normally).
If anyone could help solve this problem it would be much appreciated!
thanks for your responce, but I need to keep Events displayed as posts or else it does not show who posted the event. Also that link seemed like the people were having trouble getting the sidebar to show. I did however try inserting some of those codes on my events page but it did not work.
Is there some code I can put in to retrieve my blog posts to show on the main events page? I want my posts to show up under the Events table on my homepage where it shows the list of events. http://msflights.net/
maybe a code like?
<?php $args = array( 'numberposts' => 3 ); $lastposts = get_posts( $args ); foreach($lastposts as $post) : setup_postdata($post); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_content(); ?> <?php endforeach; ?>all the codes I have tried don’t work. You would think there is a simple code you could add to my events template that would retrieve the posts.
Here is my events page template code if that helps.<?php /* Template Name: Events Blog */ ?> <?php get_header() ?> <div id="content"> <div class="padder"> <?php do_action( 'bp_before_blog_page' ) ?> <div class="page" id="blog-page" role="main"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h2 class="pagetitle"><?php the_title(); ?></h2> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="entry"> <?php the_content( __( '<p class="serif">Read the rest of this page →</p>', 'buddypress' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link"><p>' . __( 'Pages: ', 'buddypress' ), 'after' => '</p></div>', 'next_or_number' => 'number' ) ); ?> <?php edit_post_link( __( 'Edit this page.', 'buddypress' ), '<p class="edit-link">', '</p>'); ?> </div> </div> <?php comments_template(); ?> <?php endwhile; endif; ?> </div><!-- .page --> <?php do_action( 'bp_after_blog_page' ) ?> </div><!-- .padder --> </div><!-- #content --> <?php get_sidebar() ?> <?php get_footer(); ?>I obviously don’t know what I’m doing so if anyone could give me clearer instructions I would love it….nothing I try seems to work……What other information do I need to put into single-event.php? I put this and it didn’t work either:
[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
No I haven’t, would I place single-event.php directly in my child theme folder or does it go under other folders?
Also which file would I use as a template for single-event.php? I couldn’t find any files that are named single-event.php under Events Manager. Also does it matter if Events Manager is set to pages or posts when creating single-event.php?
does anyone have any suggestions? Iv’e tried everything
yea I’m having the same issue, you cant click into the input box when you want to reply. Looks great tho…can’t wait for an update! Also did you ever find a way to remove the “*” in each comment box? I saw in another post you said you had to put at least one character in the box or it will not work.
Forum: Fixing WordPress
In reply to: WordPress paste from Word formatting won't work…oh ok, I wasn’t copying text from a website, I was trying to create my own text/formatting in Word then copying it over.
Forum: Fixing WordPress
In reply to: WordPress paste from Word formatting won't work…oh ok, I was under the impression that the “Paste from Word” option under the Visual section of editing a page was to copy the Formatting such as bold/text/size/font directly from word. That’s what a Lynda WordPress video tutorial uses it for.
Forum: Fixing WordPress
In reply to: WordPress paste from Word formatting won't work…so do you mean the “Paste from Word” option does not work when editing pages?
I read an article that said to post the code before
`<?php if (have_posts()) : ?>
but I still get the issue where it makes the entire page blank, any help would be much appreciated 🙂
thanks, I tried that code but I’m still getting the blank page once I put it in. Maybe I’m putting the code in the wrong spot? Does it matter where I put it?
Here is my website: http://msflights.net/
The events page is the Home page, where I would like my blog posts to show up. I took that code out of the page template so you wouldn’t see just a blank page.Thanks!
yes I have, maybe I’m using the wrong code, but I tried:
<?php query_posts(‘cat=2’); ?>
When I try and tie my posts to the Event manager page it either just turns blank or doesn’t show up at all.
Is there another code I could use?
Thanks!