Mark Bloomfield
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link to PDF doesn’t workoh i see the problem now.. Wow, that is weird.. 🙁
Forum: Fixing WordPress
In reply to: Need help moving ad over in templateYou most likely have 2 sidebars setup… Just check that you’re adding the code widget to the correct sidebar..
In your widgets area, you should see a sidebar that has your recent posts, links, meta etc (assuming that’s all controlled with widgets)…
That’s the sidebar you should be adding this code widget to..
Forum: Fixing WordPress
In reply to: Link to PDF doesn’t workUsing Firefox, the link is clickable for me.. If you’re using IE etc, I imagine the problem is CSS related. You’ll probably find that the Amazon flash widget below, is overlapping the download links area and not allowing it to be clicked.
Open your CSS file and try this:
.sideBarUL li#text-3 {clear:both;margin:30px 0 0 0;}Forum: Fixing WordPress
In reply to: Display first 25 words of excerpt on index pageIf you’re looking for various length excerpts on various templates, then I’d suggest you use a plugin:
Kaf’s plugin “The Excerpt Reloaded” has been a favorite of mine for a long time and lets you change the length of the excerpt as & when you need it:
<?php wp_the_excerpt_reloaded('excerpt_length=24'); ?>Easypeasy 🙂
Forum: Fixing WordPress
In reply to: Moving WordPress SiteYour new server will most likely have its own hostname etc to the DB and you’ll need to update these logins in your
wp-config.phpfile.Forum: Fixing WordPress
In reply to: Move Posts to a PagePersonally, I’d open up the DB in PHPMyAdmin and change the post_type from
posttopage.That’ll be your easiest option.
i dont think its nextgen that’s the problem.. its a bad upgrade/upload of WP core files
i have the same issue (with all javascript related things not working in the admin, IE adding tags, thickbox for image uploads etc) and when i looked in the head of the doc, jquery & all the other standard jscript libraries aren’t in the head…
Forum: Plugins
In reply to: Filter & Display Attachmentsplease?
Forum: Plugins
In reply to: Filter & Display Attachments?
Forum: Plugins
In reply to: Filter & Display Attachmentsanyone?
Forum: Plugins
In reply to: Filter & Display Attachments*bump* ?
Forum: Plugins
In reply to: Filter and display attachmentsthank you! this is almost exactly what i’m looking for! 😛
i’m needing this list to generate the list of attachments of the current post
can the above script be tailored to accomplish this?
thanks for your help!
regardsForum: Fixing WordPress
In reply to: Latest posts list with category id as a class on list itemsHeya Chris 🙂
Here’s how its done:
<ul> <? $listCats = new WP_Query(); $listCats->query('showposts=10'); while ($listCats->have_posts()) : $listCats->the_post(); ?> <li><a href="<? the_permalink(); ?>" title="<? the_title(); ?>" class="<?php $category = get_the_category(); echo $category[0]->category_nicename ; ?>"><? the_title(); ?></a></li> <? endwhile; ?> </ul>Enjoy 🙂
Forum: Fixing WordPress
In reply to: Lightbox loginHi revlimiter
I covered this on my own site: You can get the tutorial here:
http://wpguru.co.za/admin/using-jquery-to-liven-up-your-wordpress-login/
Enjoy