Tracey Grady
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images no longer showing in media library or on the siteAll of the above.
Also, when I try to open the image using its file path (…/wp-content/uploads/year/month/image.jpg) I get the 404 message. But when I connect to the website’s server via FTP the images are there.
Forum: Fixing WordPress
In reply to: Images no longer showing in media library or on the siteAll images in the media library are affected, from photos I uploaded 2 days ago to photos uploaded last year.
At this point I’ve run out of ideas and I’m on the verge of re-installing WordPress.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] 500-Internal Server Erroroops, that should be version 3.0.13.
To clarify, I want to create a product which is interactive. I can embed the interactive product in a WordPress post and now I want to know if I can add the WP post as a WooCommerce product.
Forum: Plugins
In reply to: [Contact Form 7] Setting up an uploads folder for CAPTCHAI managed to fix this after Googling the answer. It would help if the alert message (quoted above) included advice to check the path for the uploads folder in Settings > Media.
Forum: Fixing WordPress
In reply to: Using get_archives command but leaving out a categoryThanks. I went to the link included in your reply and from that page I got the idea to use the following code:
<?php global $post; $myposts = get_posts('numberposts=5&category=1'); foreach($myposts as $post) : ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?>It’s working exactly how I was hoping it would, and I’m using it in two separate places on the front page with a different category number in each. That’s been a big help.
Forum: Fixing WordPress
In reply to: New sidebar won’t loadOk now I’ve got it working. After searching through the WordPress Codex for the umpteenth time, I’m now using
<?php include (‘sidebar-about.php’); ?>
But it looks like the problem really lay within the code in my new sidebar file. I had inserted an image using
<img src=”<?php bloginfo(‘template_url’); ?>/images/myimage.jpg” alt=”<?php bloginfo(‘name’); ?>” />
which didn’t work. Interestingly, I tried to insert the image using straight html
<img src=”images/myimage.jpg” />
which didn’t work either, and neither did
<img src=”images/myimage.jpg” width=”200″ height=”250″ />
and the way I finally got it to work was to create a new <div> and insert the image as a background image, with width, height, margin and padding attributes all included.
Forum: Fixing WordPress
In reply to: New sidebar won’t loadI’ve now tried
<?php get_sidebar(); ?>
which brings up a whole screen of error messages. When I change the code to
<?php get_sidebar(‘about’); ?>
(which reflects the name of the new sidebar file, sidebar-about.php) it goes back to a blank sidebar with just the title of the website showing in it – same problem as I began with.
Forum: Fixing WordPress
In reply to: New sidebar won’t loadThe template page which calls up the sidebar has the code I mentioned above (I didn’t create the template page – it came with the theme). All I did was to change the file name from sidebar_page.php to sidebar2.php.
Forum: Fixing WordPress
In reply to: New sidebar won’t loadNo error – what happens is that the page loads, and where the sidebar SHOULD be, instead the only thing that comes up is the title of the site (and I can’t work out why that is, either)