Harry
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Don't want posts showingIf anything, as you merely want keywords on pages but not the pages displaying you should be using Meta Data, which is information regarding a page that is generally hidden and used by search engines.
http://codex.wordpress.org/Meta_Tags_in_WordPress – misusing this by including keywords and descriptions which are irrelevant to the actual will be caught out easily by search engines, thus why I’m discouraging it being used for this purpose.
I believe the site you’re dealing with deals with a very specific issue, I see you have posted the link in another thread previously. The reason for my questions is solely to ascertain the best way to help you, and also to dispel any myths that if you include a whole bunch of keywords related to the likes of lawnmowers etc. when in fact you sell spoons and that if people are searching for lawnmowers, your site will show up in the likes of Google.
Forum: Fixing WordPress
In reply to: Upload size?Great news. Mark this as resolved. Thanks.
Forum: Fixing WordPress
In reply to: Facebook like page is too small..Forum Rules: Don’t bump.
But please provide more info, as that is most likely why no one has replied. Did you remove the height attribute from the iframe code?
Please post the exact code you have for that facebook here or on pastebin and include the link.
Forum: Fixing WordPress
In reply to: [Fast Secure Contact Form] How to send an "email verification"Forum: Fixing WordPress
In reply to: Upload size?http://www.google.ie/search?cx=c&sourceid=chrome&ie=UTF-8&q=Maximum+upload+file+size%3A+2MB have people heard of Google before?
php.ini does not go into your wp-admin directory.
I presume you’re using MAMP, so search your hard drive for the php.ini file.
Forum: Fixing WordPress
In reply to: Setting page orderncnh,
it’s not that they tell you half of what you need to know. that is very unfair to the developers of the plugin, who often create these plugins for free for the benefit of others. generally, some prior knowledge of code/widgets is assumed. the rest they figure you can google.
the link i passed you only gives and explanation of your sidebar, with background knowledge, taking time to read it, it then links to this page.
http://codex.wordpress.org/Template_Tags/wp_list_pages
On this page, it contains the following code. This will sort the code based on the menu order you have specified.
<ul> <?php wp_list_pages('sort_column=menu_order'); ?> </ul>Please be more grateful when someone points you in the right direction, as the more you learn about wordpress, perhaps you can help out others eventually.
Forum: Fixing WordPress
In reply to: How to Delete Copyright sidebarBrilliant. You’re welcome!
Forum: Fixing WordPress
In reply to: Controlling who can "see" blog posts..?When you created a Private Post, it says Editors who are logged in can see the post. So when a user signs up, set them up as an editor and they can read the post.
If you make it password protected, yes, you will need to ensure people have the password.
A mailing list would be one way of managing this yes.
People use WordPress in many ways to manage online communities, so it can differ from site to site. Some websites hide content based on whether a user is signed in or not, or they offer extras that non-registered users may not normally see.
Facebook Comments for WordPress
I’ve seen your site, check the setting in that plugin. Consult the plugin FAQ page.
Forum: Fixing WordPress
In reply to: Controlling who can "see" blog posts..?http://codex.wordpress.org/Writing_Posts – Look for Private Posts on the page.
Forum: Fixing WordPress
In reply to: Setting page orderWow, no idea how to use widgets or code. Are you at least willing to try and learn?
Basically an explanation will be next to impossible then without you have to having to resort to at least one or both of the above options.
You must have a plugin installed to provide this like functionality.
What Facebook related plugin do you have? As it is possibly a setting in there.
Forum: Fixing WordPress
In reply to: How to Delete Copyright sidebarShould be contained in your footer.php file, in the your theme directory.
Either comment it out, or delete the corresponding lines.
DISCLAIMER: Take a backup of the file beforehand, as you may break your theme.
Forum: Fixing WordPress
In reply to: How to make buy button "light up" when mouse hovers over it?Ironically, you could also use CSS :focus
(I crack me up)
Forum: Fixing WordPress
In reply to: How to make buy button "light up" when mouse hovers over it?Hi,
The button is an image. To make it “light up” you would need to know CSS, and have a lit up version of the button.
The term you’re looking for is CSS hover. It will light up the button when the mouse hovers over it.
Good luck.