gworks
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Edit pages/ Bulk editingDid you try editing the page on the full edit panel? There should be an option on the right hand side called ‘Publish’ that lets you change the status of the page.
Forum: Fixing WordPress
In reply to: Redirect to www from non-www while using permalinksGo to general settings (http://beanomalous.com/wp-admin/options-general.php) and change WordPress address (URL) and Blog address (URL) to http://www.beanomalous.com
[Sig moderated] Per forum rules.
Forum: Fixing WordPress
In reply to: 2.9.2 update – database errorYou should check your wp-config.php file to make sure that your db details are correct.
HTTP – 500 Internal Server Error is likely to be caused by .htaccess. Try backing up that file and temporarily deleting it from the server.And mrloo, I don’t hink you lost your blog posts, you should still have access to the database from your cpanel, and be able to recover them from there.
Best,
[signature moderated Please read the Forum Rules]Forum: Themes and Templates
In reply to: Add “Home” to the Pages sidebar linksDo you mean make home appear under those links? If so, create a page called ‘Home’ and it should appear under that list.
Best,
[Signature Moderated] As per the forum rules.
Forum: Themes and Templates
In reply to: New to WP. How would this design translate?The cornes are 4 separate images, so they shrink and expand automatically according to how much content you have, so I don’t see it as being a problem.
Regards,
[Signature Moderated] As per the forum rules.
In WP, you don’t create an image from a URL. You can include the image in your post by entering a URL in the media panel. Now if you want to include it in your Media library, first you need to download that image to your computer and then upload it to the image library.
best,
[Signature Moderated] As per the forum rules.
Forum: Fixing WordPress
In reply to: Random Logo Image – please help!Opening http://airfoolers.com/wp-content/themes/airfoolers/airfoolers/images/bgimage/rotate.php, I can see images being displayed. What is happening is that the file is returning the image and not it’s url ( which is what you need). You can use that in an image tag in your html. Like so:
<img src=”http://airfoolers.com/wp-content/themes/airfoolers/airfoolers/images/bgimage/rotate.php”>
To use it in a stylesheet, you would need to modify the code, eliminating the image mime type so the file echos a url rather than return the image.
Forum: Fixing WordPress
In reply to: Random Logo Image – please help!is rotate.php printing anything to the screen? Make sure it has an echo/print because it needs to return the image name. You can call the file directly to test, like http://airfoolers.com/path/path/….rotate.php and it should print the image to the screen.
Forum: Themes and Templates
In reply to: shose style using the URL ?Try catching it with php in the header.php of your theme, like so:
<?php if ($_GET[‘template’]==’template1′)
//load stylesheet1.css
elseif($_GET[‘template’]==’template2′)
//load stylesheet2.css?>