Harry
Forum Replies Created
-
It’s after 1 now, not much can be done. First thing in the morning, try getting in touch with your hosting.
Generally the cost is relatively to how much work needs to be done, people have to have a guess basically, so I have no idea, it will be a ballpark figure.
Ask if your hosting does full site backups? And if possible ask them to roll back your wordpress + database back to an earlier time before you did any upgrades?
This could reset your website back to when it worked properly, and then I would suggest not clicking any update buttons until you get in touch with your friend.
Sadly no, again I just volunteer the odd bit of my time in order to point people in the right direction and help where I can. I always advise you should either continue to try and contact the person who built the original site, or hire someone with those skills.
Esmi posted a link to the WordPress jobs board where you can post a description of your problem and hire someone to fix it, someone should definitely be able to help you there.
Sorry I’m unable to help.
Your website looks to be partly working, albeit when you select a product it brings you to an IP address instead of the proper domain. And one or two of the links don’t seem to be functioning correctly. Like the ‘Our Story’ link. So there still may be a few kinks you need to work out yet.
Ideally the URL shouldn’t look like this http://79.170.44.80/slugsandsnails.ie/?wpsc-product=high-flyer. This could be a hosting issue.
There is no way to know exactly what the problem is without taking a lot at your WordPress setup. We can only see what WordPress is serving up, but we’re at best guessing what the problem is.
I would seriously suggest you go back to your friend, and ask them for their help and document what steps you took to get to this point.
Forum: Fixing WordPress
In reply to: Fatal error on wp-db.phpSounds like a server issue, could be a multitude of reasons. Try contacting your hosting to see if there is an issue with your account.
Take care.
Forum: Fixing WordPress
In reply to: how to display previous postsNo problem, marking it as resolved and you just saying it was thanks enough.
Forum: Fixing WordPress
In reply to: how to display previous postsTo add the links using the permalink function, I meant change:
echo '<li>'. get_the_title() .'</li>';To this:
echo '<li><a href="'.get_permalink().'">'. get_the_title() .'</a></li>';So I described adding the simple a HTML tag around the text that is displaying.
As for your ‘This is Information’ problem, if you want to hide it, I would say delete it. Unfortunately I don’t have the time to code this for you.
Good luck with your website
Forum: Fixing WordPress
In reply to: Create subdomain from a domain bought via WordPressAre you using a blog hosted on WordPress.com?
If so, this forum is for self-hosted/managed WordPress.org blogs. The kind people at the WordPress.com forums may be on hand to help you out. There should be a way to add a subdomain like you want. I’ve done it on my own servers before. I’m not familiar with their setup, but I’m sure there is someone who knows what to do:
http://en.forums.wordpress.com/
Good luck with it.
Forum: Fixing WordPress
In reply to: Website is downPost your problem here: http://en.forums.wordpress.com/ as they deal with WordPress hosted sites, this forum is for self-hosted sites.
Forum: Fixing WordPress
In reply to: how to display previous postsWith regards to your URL structure. Please clarify, the “this is information” changes per keyword, yes?
You can split the text by say using a specific character such as a space and always display the first word which is the keyword. As long as the keyword is never two words this would be a relatively easy thing to do. Let me know if this is what you need.
Forum: Fixing WordPress
In reply to: how to display previous postsCorrect, It should go somewhere in your single php. Where exactly though depends entirely on the theme you use. Try finding where the end of your post is output and put it after that. Your code was removed as it was too long. Do not paste full file code into here, use Pastebin as suggested by the mods.
Forum: Fixing WordPress
In reply to: how to display previous postsecho '<li>'. get_the_title() .'</li>'Should be:
echo '<li>'. get_the_title() .'</li>';It’s missing the semi colon, I modified it from existing code removing stuff you don’t need. There should be no other problems. You’ll have to add the link using the permalink function. But that should be straightforward.
Forum: Fixing WordPress
In reply to: how to display previous postsIt is possible, it depends on comfortable you are with PHP and wordpress.
You could write a simple function (it shows 5 random posts in a bullet point list):
<ul> <?php $postargs=array( 'showposts' => 5, 'orderby' => rand ); $random_posts = new WP_Query($postargs); while ($random_posts->have_posts()) : $random_posts->the_post(); echo '<li>'. get_the_title() .'</li>' endwhile; ?> </ul>If you’re not familiar with editing themes, try searching for a related posts plugin.
Forum: Fixing WordPress
In reply to: Very strange issue happening with content on my WP site..??Try running a repair on the database (in phpmyadmin). Sometimes MySQL has a hiccup, and it just needs to rebuild the table index.
Just a suggestion, as it’s a weird problem definitely.
Forum: Fixing WordPress
In reply to: Click a link get search resultsSo it’s not a search you want, it looks like a link to a particular category. So your description and title gave the indication you wanted a search, with no examples it was very difficult to decipher what you were indeed looking for. You’re looking for information on Categories.
If you set up a good category structure, where posts can appear in more than one, you can set up navigation by just linking to those categories.
So if you had:
Climbing Equipment
– Harnesses
– Ropes
– FootwearBrand
– North Face
– KathmanduYou can include a post about North Face Harnesses in both Climbing Equip. > Harnesses and Brands > North Face.
This is how I believe a similar functionality could be achieved.
Then in WordPress you could see the list of items by going to:
yourdomain.com/category/climbing-equipment/harnesses/ or
yourdomain.com/category/brand/north-face/You could add a + icon linked with one of the above URL’s. This is more of a high level explanation of how to achieve this. If you are planning on building a shop, you would need to clearly map out the crossovers of products into multiple categories. Hope this helps.
Good luck.