Equal
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Server not found Problem.I would login and then switch the the twenty eleven theme and check your front end is working then. If it is there is a problem with your theme somewhere.
Forum: Installing WordPress
In reply to: WP 3.2.1 breaks my website with 404 errors!The first thing I would try is re-saving your sites permalinks in the dashboard settings page.
Forum: Installing WordPress
In reply to: Having trouble installing WP in ByethostIt depends. If you want your installation of WordPress to be in the root of your domain (e.g. http://domain.com) then put the extracted files (not in a folder called WordPress) here:
htdocs/
If you did the above your WordPress site would be viewable at http://domain.com
Otherwise they can go in a sub folder like /wordpress, in which case you would upload them here:
htdocs/wordpress/
If you did the above your WordPress site would be viewable at http://domain.com/wordpress
Forum: Themes and Templates
In reply to: [Piano Black] Editing "page not found" messageTry editing the 404.php file in your themes folder. If there isn’t one you can create one.
Forum: Themes and Templates
In reply to: [LightWord] Adding widgets to footer (LightWord)You would have to register the widgets areas that you want to include in your footer area first and then add code to the footer template file to accept those widgets. Once this is done you can then add the widgets in the same way you do in the sidebar. Some CSS styling and you’re done.
Below is a link to a comprehensive guide all about it:
http://justintadlock.com/archives/2010/11/08/sidebars-in-wordpress
Forum: Fixing WordPress
In reply to: trouble with Read moreA couple of resources that may help:
Forum: Themes and Templates
In reply to: Help with Rss "Subscibe" button ?Can you provide a link to the site?
Forum: Fixing WordPress
In reply to: child_of not working with wp_list_categoriesBy adding child_of you are saying only show categories that are a child of category with the ID 5. Is this correct?
Forum: Fixing WordPress
In reply to: WordPress editor used to update pages and postsYour theme is probably using a editor Style sheet to style the editor so it tries to look similar to the live site. Check in your theme files for editor-style.css and you can amend the class or id that is limiting the width.
Forum: Fixing WordPress
In reply to: can't seem to log inPerhaps take a look here:
Forum: Fixing WordPress
In reply to: PLEEEZ Help to create multi page email form in wordpressPretty sure Gravity Forms will do that will it paginated forms:
Forum: Fixing WordPress
In reply to: include costum post types in wp_page_menu()Could you use
get_posts()as this has a post_type parameter?Forum: Installing WordPress
In reply to: Website does not work after uploadedWordPress contains two part really – the php files which includes the wp-config.php file and all the files that make WordPress work including themes and plugins etc. It also runs off a database (MySQL) which stores all the data for your site like the contents (text) with your posts etc. and other stuff.
When moving the site you need to move both things – the files and the database. Take a look here:
Forum: Fixing WordPress
In reply to: Drop downs not workingA good starting point for wp_nav_menu is here:
Forum: Fixing WordPress
In reply to: Attachment Page – Image AlignThe link links to the same as before which is correct. You will have to take a look at your template file in order to work out what to remove etc.