sincewelastspoke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change posts order methodTry putting the following just before the Loop initializes in your template file (i.e., before
if (have_posts()) : while (have_posts()) : the_post();):
<?php query_posts('order=ASC'); ?>
Forum: Fixing WordPress
In reply to: Changes <div> to <p> in WYSIWYG editor ?*bump*
Can anyone help with this?
Forum: Fixing WordPress
In reply to: How do I select which template to use for my page?It now works. Absolutely no idea what I did different.
Thanks for the help folks ??
Forum: Fixing WordPress
In reply to: How do I select which template to use for my page?I just copied the ‘default’ folder, renamed it ‘newdefault’ , uploaded it, made it my main default theme and now can’t select different Templates for my Pages ??
please help
Forum: Fixing WordPress
In reply to: How do I select which template to use for my page?OK. Good shout.
Just for the record, to create a template I’d use the following code:
<?php /* Template Name: Corporate */ ?> <?php get_header(); ?> Corporate STYLEE <?php get_footer(); ?>
and upload it into wp-content/themes/newdefault , obviously the ‘newdefault’ is my default theme.
In my original ‘default’ theme I can select different template, but not in my new one ??
Thanks
Forum: Fixing WordPress
In reply to: How do I select which template to use for my page?The dropdown options I have are………..
Custom Fields
Comments & Pings
Password protect this Page
Page Parent
Page Order
Page RevisionsNothing else ??
Forum: Plugins
In reply to: Plug-in to swap images?Anyone?
Forum: Fixing WordPress
In reply to: Change robots to ‘index,follow’ ?Many thanks for the speedy response moshu ?? Fixed!
Forum: Fixing WordPress
In reply to: Order posts by ID ?Thanks for the reply. Still not working for me ??
Here’s my code:<?php $readposts = get_posts('category=13&orderby=ID'); ?> <dl> <? foreach($readposts as $post) : setup_postdata($post); ?> <dt><a href="#"><?php the_title(); ?></a></dt> <dd> <ul> <li><img src="<?php $supporting_image=get_post_meta( $post->ID, 'thumbnail', true ); if (''!=$supporting_image) { echo $supporting_image; } ?>" alt="<?php the_title(); ?>" style="float:left;padding-right:20px;" /> <?php the_content() ?></li> </ul> </dd> <?php endforeach; ?> </dl> </div> <? endif; ?>
It keeps it in the same order ?? Any other ideas?
Forum: Fixing WordPress
In reply to: My client has an Ampersand in his name – help!WP does not convert it from a & to a
&
however. When using that plug-in, it just leaves it & which is not valid XHTML ??Hmm, I even go into my database and the ‘aiosp_home_title’ value is
DG&M
so WP must be changing the AIO SEO ones to &.Perhaps I need to change it to: & # 3 8 ; ?
Woo-hoo changing it to the above worked wonders ??
Forum: Fixing WordPress
In reply to: My client has an Ampersand in his name – help!I hate having to bump, but does anyone have any experience of adding an & to the title in the ALL-IN-ONE SEO PACK and still retaining Valix XHTML?
Forum: Requests and Feedback
In reply to: Removing a post on this forum?Yes, my apologies but this was made about a day ago and the ‘Edit’ option has done a runner.
Is there an email addy or Mod I can get to help me out with this one?
Forum: Fixing WordPress
In reply to: My client has an Ampersand in his name – help!OK, I’ve tried that, but now I just get
DG%26M
rather thanDG&M
??Forum: Fixing WordPress
In reply to: Store your images?Nah you’re right. Best not to hack it.
I might look about and see if someone has done anything similar with CSS to what I’m after. Not sure it’ll make a huge difference in the great way of things.
Thanks for your help once more, have learned a great deal. Cheers!
Forum: Fixing WordPress
In reply to: Store your images?OK, I think I’ll work on it tomorrow, compressing as much as I can across the whole site. Shouldn’t really take too long ??
there is a way you can do that with a repeating background, but don’t overthink it…
with jpeg compression that gradient will take barely any additional space, and is *much* cheaper than an additional connection to pull the background plus the stock art.Yeeesh, wouldn’t know where to start. I’m cool having a background-repeat horizontally, but not to add the curves at each corner THEN position that image there. Seems a nightmare.
Oh and also `<link rel=”EditURI” type=”application/rsd+xml” title=”RSD” href=”https://www.thedomain.com/xmlrpc.php?rsd” />
<link rel=”wlwmanifest” type=”application/wlwmanifest+xml” href=”https://www.thedomain.com/wp-includes/wlwmanifest.xml” />` <– how do I remove these?Seems to be generated by wp_head(). Sorry again, for the newb-ness of this query.