klagreca
Forum Replies Created
-
Download link looks dead. Any alternate sources?
still not working for me. I guess we’ll sit tight and wait for a update. Thanks though!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] watermark placement in slideshowsupdate: with the slideshows and watermarks, I made the watermark image the same width and length as the slideshow, thereby getting around any placement issues with that. Problem solved.
Setting watermarks on images in the gallery still isn’t working right. Anyone have comments on this?
Forum: Plugins
In reply to: [Plugin: All in One SEO Pack] Not rewriting page and post titles (only index)Not working for me either since upgrading to 2.7.1. I would sit tight for now. If I find time, I’ll check out the AIO code and see if I can come up with a temporary fix.
Forum: Fixing WordPress
In reply to: Safari 4 beta and 2.7.1 EditorTurn lemons into lemonaide. Have Safari 4 open to the target page to view changes, while you have Firefox open to do the actual edits. Its a nice workflow/process.
??Forum: Fixing WordPress
In reply to: How do I get the last post’s permalink from a certain category?check this out:
https://www.dagondesign.com/articles/latest-post-from-each-category-plugin-for-wordpress/I think it’s exactly what you’re looking for!
K
Forum: Plugins
In reply to: [plugin: Next Gen Gallery – After update it doesn’t slideshowJosh’s recc. of renaming the plugin folder to “nggallery” worked for me. Thanks Josh!
Kris
Forum: Plugins
In reply to: NextGen Gallery- Moving Images from 1 Gallery to AnotherCount one more for this feature request.
Thanks Alex for your awesome work.
K
Forum: Fixing WordPress
In reply to: Bug? (Multiple Loops in Page gives wrong info)Figured it out. If anyone is interested, I “reset the loop” by using the rewind_posts() call. Here’s what I have now:
<?php get_header() ?> <div id="container"> <?php get_sidebar() ?> <div id="content"> <?php the_post() ?> <div id="post-<?php the_ID(); ?>" class="<?php sandbox_post_class() ?>"> <h2 class="entry-title"><?php the_title(); ?></h2> <div class="entry-content"> <?php the_content() ?> <br/ > <h2 class="entry-title">Most Recent Posting</h2> <?php rewind_posts(); ?> <?php query_posts('showposts=1');?> <?php while (have_posts()) : the_post(); ?> <div> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <?php the_date(); ?> <?php the_excerpt(); ?> </div> <?php endwhile;?> </div> </div><!-- .post --> </div><!-- #content --> </div><!-- #container --> <?php get_footer() ?>
Have fun!
KrisForum: Fixing WordPress
In reply to: Bug? (Multiple Loops in Page gives wrong info)Not sure if this is related, but I too want to display the most recent post on a Page. However, query includes Pages as well. Here’s what I have in my custom page template:
<h2 class="entry-title">Most Recent Posting</h2> <?php query_posts('posts_per_page=1'); foreach ($posts as $post) : setup_postdata($post); ?> <div> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <?php the_date(); ?> <?php the_excerpt(); ?> </div> <?php endforeach; ?>
Any ideas what’s up here? I also tried a get_posts query as well. The results are the same.
Thanks!
KrisForum: Fixing WordPress
In reply to: XML Parsing Error: attributes construct error when validatingWell, looks like it fixed itself. Can’t say the upgrade to 2.5.1 fixed anything, because it was still happening after the upgrade. So my apologizes if you have the same issue. I don’t know how it was corrected.
Kris
Forum: Fixing WordPress
In reply to: XML Parsing Error: attributes construct error when validatingJust to give things a “bump” here is a precise example of that’s happening:
In my code view, a link looks like this:
<a title="Website design by LaGreca Arts" href="https://www.lagrecaarts.com/technology-services/services/web-design">Web Design</a>
Looks good, right? Well, when I use a code view from Safari or in the W3C output view, the link looks like this:
<a href="https://www.lagrecaarts.com/technology-services/services/web-design"title="Website design by LaGreca Arts" >Web Design</a>
Now that’s not right. Why/where is WordPress doing this?
Forum: Fixing WordPress
In reply to: inline uploader missingupdate:
I can get the uploader to show up if I change the permissions as follows:
wp-content = 766
wp-content\uploads = 766BUT, if I use 766 on wp-content, the site does not show up. When I enter in the main URL, I just get a white page. No text or error message.
I change wp-content to 767 and *poof* the uploader disappears.