gotmedia
Forum Replies Created
-
Forum: Plugins
In reply to: [BulletProof Security] Where to add 301 Redirects?Hi!
Well, the redirects are sort of outside the loop. This is a redirect I’d like to happen:
http://www.wepcoinc.com/smartroller.html
should redirect to
http://www.wepcoinc.com/smartroller/ (now WordPress)I see the link you gave me. What would you like me to do with the code that it generates? Where would that go?
Thank you!
Forum: Plugins
In reply to: [BackUpWordPress] [Plugin: BackUpWordPress] Zip files is corrupted?That worked much better. I could open up the folder to extract the files. Some minor icon png’s were corrupted, but overall everything worked fine. Huh. I wonder why I can download in FTP but not in the admin?
Well anyway, I’ll do that if I have problems like that again.
Thanks!
Forum: Plugins
In reply to: [BackUpWordPress] [Plugin: BackUpWordPress] Zip files is corrupted?Oh, I didn’t think of that. I’ll try doing that now, thanks!
Hi Doug,
Yeah, I had the same thing. You have to go back in to AG Custom Admin > Dashboard > and put a checkbox next to the Welcome message.
Forum: Themes and Templates
In reply to: Querying Posts on a Non WordPress Site? Help!Bump.
Forum: Plugins
In reply to: [Custom Field Template] Plugin IssuesBeen working with this plugin for the past 4 hours, still can’t get the fields to output to a page. If you can throw me a bone, that would great.
Forum: Themes and Templates
In reply to: the_time() outputting 2010?Ah, still, that’s weird! I’ll use the PHP output from now on, thanks π
Forum: Plugins
In reply to: Password Protect, Redirect Based on PasswordBump?
Forum: Fixing WordPress
In reply to: Call pages instead pagesIf anybody’s wondering, here’s the fix:
query_posts( array( 'post_type' => array('page', 'movie') ) );Add that before this:
<?php $i = 3; if (have_posts()) : while (have_posts()) : the_post(); ?>Full Example:
<?php query_posts( array( 'post_type' => array('page', 'movie') ) ); $i = 1; if (have_posts()) : while (have_posts()) : the_post(); ?>It worked out great!
Forum: Fixing WordPress
In reply to: Page Not Found: Sub-Pages under one parent pageGot it fixed! Turns out the Permalinks needed to be reset.
Forum: Fixing WordPress
In reply to: Page Not Found: Sub-Pages under one parent pageI’m having the same problem! Anybody have a fix for this?
Hi there,
Well, I just did this and it worked… is this what you mean? (I put it at the bottom of your CSS file):
table.wp-table-reloaded { float: left; }Forum: Themes and Templates
In reply to: Custom Post Types Custom FieldsYou mean, when you create like a normal page, there’s the title tag for that page? If that’s what you mean by title, then of course!
Yes, it is possible.
You could use the title tag or not. I think, in your case, I would just add 3 fields and then, in CSS, display them side to side.
Forum: Themes and Templates
In reply to: Custom Content Types – Displaying Content On 1 Page?This is what I ended up doing in combination with the Easy Post Types plugin (if anybody’s curious):
<?php $loop = new WP_Query( array( 'post_type' => 'events', 'posts_per_page' => -1 ) ); while ( $loop->have_posts() ) : $loop->the_post(); the_title(); the_ept_field('date'); the_ept_field('event_name'); the_ept_field('event_location'); the_ept_field('description'); the_post_thumbnail(); echo '<div class="entry-content">'; the_content(); echo '</div>'; endwhile; ?>Forum: Themes and Templates
In reply to: Custom Content Types – Displaying Content On 1 Page?Figured it out! Thank you esmi π π π Now, I can’t stop smiling.