Equal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do i remove the right sidebar?they will be located on your server where you uploaded the WordPress installation to in the following folder where youthemename is the folder for the theme you are using:
wp-content/themes/yourthemename
Forum: Fixing WordPress
In reply to: Logged into all blogs simultaneouslyAre the blogs using 1 WordPress installation and then multisite for the different blogs or are you using different WordPress installations for each blog?
Perhaps using a multisite setup with 1 WordPress installation will keep a user logged into all blogs on which they are a user.
Forum: Fixing WordPress
In reply to: Edit from Page option is now missingThe ‘Edit this page’ link will only appear if you are logged into your WordPress site. Check that you are logged in before viewing the page and then see if the edit link is there.
Forum: Fixing WordPress
In reply to: Menu formatting – Non-alphabeticalIt depends how your theme displays the menu. You could try adding a number to the page order box on the write page screen starting at ‘0’ for the first page and then the higher the number the further down your list the page will move.
Forum: Themes and Templates
In reply to: How do i remove the right sidebar?Remove the call to
<?php get_sidebar(); ?>in your themes templates files. You may also have to change some CSS styles in your themesstyle.cssfile in order to make the main column expand into the sidebars space.Forum: Fixing WordPress
In reply to: Font colourYou should find a colour button for the text in the Write Page/Post screen. Make sure that you are looking at the ‘Visual’ tab rather than the ‘HTML’ tab in the write post screen.
Forum: Hacks
In reply to: Functions.php scopeA lot of plugins do that, but it is not the best way in my opinion. I think the main problem with doing something this way is that is the path to wp-load.php may change if a blog stores the WordPress files in a different folder to the actual WordPress site.
Forum: Hacks
In reply to: How to pass custom fields of a post with pending status created just before…?Even though the post is pending it will still have its ID and the
wp_insert_postfunction return the post ID.Therefore you can store the returned ID in a variable and then use this in your
add_post_metacall like this:$thisPostID = wp_insert_post($insertpoststuff); add_post_meta($thisPostID, 'customfieldkey', 'customfieldvalue', true);Hope this helps.
Forum: Hacks
In reply to: Functions.php scopeForum: Plugins
In reply to: User Content Submission plugin adviceI use Gravity Forms in order to submit content on the front end and it works well. Not sure about file uploads though.
Forum: Fixing WordPress
In reply to: I want to people double opt in befor they post a commentThere are some plugins that will make the wp signup page do a little more by enabling you to get more information off your users. Here is an example I have used in the past:
Forum: Fixing WordPress
In reply to: Seperating Post Title and Page TitleYou need to put your titles inside the loop on the template. Therefore you need to replace:
<h2 class="post-title"><span><?php the_title(); ?></span></h2>with whatever you want to use as your title – I guess something like this:
<div class="pagename"><h1 class="entry-title"><span><?php the_title(); ?></span></h1></div>Forum: Fixing WordPress
In reply to: Homepage policy: How to regulate what shows on your homepageCreate a page for your home page. Then go to the Settings area in the WordPress dashboard and click the reading link in the navbar on the left.
Now select the page you just created as your homepage under “Front page displays” and choose static. Press Save settings.
This page will now be used as your home page.
Forum: Fixing WordPress
In reply to: Permalink option gone when starting new postCheck your wp-config.php as autosave can be disabled in there.
When you manually ‘SAve as Draft’ or publish does the permalink box appear?
Forum: Fixing WordPress
In reply to: Image Rollover with css3 & jQueryA quick google found this:
http://ad1987.blogspot.com/2009/06/how-to-amazing-rollover-effect-with.html
There are lots out there!