| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 1 month |
| seen | Apr 12 at 14:51 | |
| stats | profile views | 5 |
|
Apr 12 |
comment |
Randomly pick one testimonial post Sorry it's been along day, if I close the loop it works - which parameter is deprecated - showposts. Also is it possible to get the contents without the surrounding p tags. |
|
Apr 10 |
comment |
Post thumbnail caption moving to right Sorry and thanks, I haven't got a clue whats happening then. |
|
Apr 10 |
comment |
Post thumbnail caption moving to right The span appear inside the li in the source code. Is that CSS ? |
|
Apr 10 |
comment |
Post thumbnail caption moving to right It's not a css question. It's the code that is moving the spans. I was just trying to move it back with css |
|
Mar 19 |
comment |
Link images to post Travis, I don't accept too many solutions because i don't get the correct answers. |
|
Mar 19 |
comment |
Link images to post The posts and thumbnails will be shown on the same page. I just wnat to control where the thumbnails are shown. I don't want the thumbnails underneath the text of the post |
|
Mar 18 |
comment |
Link images to post Add Media. Can I add more than one image with Featured Image |
|
Mar 18 |
comment |
Link images to post Well I set the size of the thumbnail in the Media Settings and I just want to able to add the images with the post. I thought I might be able to link the images to the post or something similar |
|
Feb 25 |
comment |
List all pages and children in separate ul Might have spoken too soon. The first echo echo $page->post_title; just gives me text of the page but I need that to be a link as well |
|
Feb 25 |
comment |
List all pages and children in separate ul Thanks Michael, best part of a day messing with this and I was missing a "=" |
|
Feb 6 |
comment |
Create ul list in Custom Meta Box? I tried writing the content as HTML but after I save/publish it the html is removed |
|
Dec 3 |
comment |
How to Debug the 'save_post' Action? Fixed it - I'd left off a closing tag. |
|
Dec 3 |
comment |
How to Debug the 'save_post' Action? I'm still having the same problems with this functions.php. The Troubleshooting guide didn't help. Any other ideas on why I might look? |
|
Nov 29 |
comment |
Custom Meta Box white screen It's working now, sorry don't know what I had done to stop it. |
|
Nov 19 |
comment |
Randomly add a 'ul' list of images Got it working now put the images are low quaintly. How would I control which size image is used? |
|
Nov 18 |
comment |
Randomly add a 'ul' list of images I've added the above code to the functions.php and used [wpse73055-random-images] where I would like the images. I'm not getting any images - is there anything else I should be doing. |
|
Nov 15 |
comment |
Add thumbnails in 'li' list oH I didn't realise you could put them into a bullet list like that - that's that sorted then, thanks |
|
Aug 2 |
comment |
Slideshow missing when page loads? By enqueueing do you mean how and when I'm I loading the cycle plugin? I was loading the plugin in the header. If I don't load the plugin the slideshow still works. I'm using the NextGen Gallery which looks like it loads the cycle plugin. So if I don't load the plugin Wordpress loads the jquery then NextGen loads the cycle plugin. |
|
Aug 2 |
comment |
Slideshow missing when page loads? The static front page was set up as described in the Codex. I think my terminology might have confused the matter. front-page.php is the template I'm using for the page. This is the code used in the functions.php - <?php
function my_init() {
if (!is_admin()) {
// comment out the next two lines to load the local copy of jQuery
wp_deregister_script('jquery');
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js', false, '1.3.2');
wp_enqueue_script('jquery');
}
}
add_action('init', 'my_init');
?> |
|
Aug 2 |
comment |
Slideshow missing when page loads? The theme contains: footer.php, front-page.php (static page that is the front page), functions.php, header.php and index.php. I tried to replicate the situation outside Wordpress, but it works then - ttmt.org.uk/cyclegallery I think the cycle link might come before the jquery because I was following the advise here and getting the jquery in the functions.php - wpmu.org/… |