juggledad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: bulk edit categories still does not workTo be perfectly honest, I never new you could do bulk edits till I tread your post and I’ve been using WordPress since 2006 which goes to show you canlearn something new every day.
Wait you have some login plugin!!
back to the beginning –
1) disable ALL plugins and leave them disabled
2) go back and set the permalinks to the default and leave them there
3) go to the dashboard->posts->categories and for the ‘Lessons on Training’ category, click the ‘view’ link
— does it take you to a page with the posts?
4) test the sidebar link to the ‘Lessons on Training’ category
— does it take you to a page with the posts?Forum: Fixing WordPress
In reply to: bulk edit categories still does not workThis is not a bug. The code specificallly says
* Updates all bulk edited posts/pages, adding (but not removing) tags and
* categories. Skips pages when they would be their own parent or child.You would have to make this a feature request.
Off the top of my head, I can’t think of a reason – logically – why it should not be allowed. However there maybe some programitic reason why it shouldn’t be allowed.
Forum: Fixing WordPress
In reply to: Do usernames HAVE to be case-sensitive?This is a question/request that has been around for years. The major reason they are upper and lower is for security. It would take more time for a hacker to use all the possible upper/lower combinations to find out a users login id.
There are a couple private plugins that will allow this – but they are not supported by the forum if an issue crops up with one…or you get hacked.
Forum: Fixing WordPress
In reply to: Site not displaying/content not publishingcould be but we won’t know until you follow those directions.
Forum: Fixing WordPress
In reply to: Connecting MySQL with php code in WordPressLook at my example again – you don’t want to give each user access to the database, the wordpress user already has that access. I would suggest that when they click on the map, you have code check that they are logged in so you can grab their name fron their user row in the wp-suers table, then do an insert into your new table with th einformation you want to store it in.
Forum: Fixing WordPress
In reply to: Can not add new user@starbuckmi DO NOT give anyone your login information! If you get to the point where the volunteer help on the forum can’t help you, then you should hire someone to help. Find someone local or check out http://jobs.wordpress.net
But you have not reached that point yet, so please answer the questions I asked. Thanks
Forum: Fixing WordPress
In reply to: Blog stopped working after switching index.phpDid you clear your browser cache?
What is the ultimate?Forum: Fixing WordPress
In reply to: Can not add new userLet me see if I have this correct. Your creating a site on your local host – i.e. A server on your pc – and it won’t send an email and he can’t login from a remote location.
Is that right?
If so did you set up your router to allow external access to your pc?
Did you set up your server to allow it to send mail?
Are you using wamp or xamp for the server on your pc?
Have you tried to access the site when you are at a remote location?Forum: Fixing WordPress
In reply to: Connecting MySQL with php code in WordPressSo is the database the one defined for wordpress or a seperate database? If it is the same one, use the wordpress API to add things to your new table.
That looks fine since it now has the closing bracket. Is it working now?
It is also interesting that you said the error was on line 187 but the file only has 172 lines…
Forum: Fixing WordPress
In reply to: Connecting MySQL with php code in WordPressYou could make it a function and put it in functions.php and then you can use the function where you want.
Are you opening a new connection to a differentdatabase than th ewordpress database? if so, why? (I’m curious)
Forum: Fixing WordPress
In reply to: how to style wp_list_categorieswp_get_post_terms – Retrieve the terms for a post (needs post ID)
get_terms – Retrieve the terms in a taxonomy or list of taxonomies. (doesn’t need post ID)Forum: Fixing WordPress
In reply to: Header not fully hidden?I’m not seeing any header image now.
Forum: Fixing WordPress
In reply to: User defined fields for only admin to seewrap the field in something like this
<?php if (current_user_can( 'manage_options' )) { echo $your_custom_field; } ?>now only users who are logged in and have a role of ‘admin’ will see it.