amory
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Quick Custom Fields QuestionTry this (examle code within readme file)
https://www.coffee2code.com/archives/2004/06/30/plugin-get-custom/Forum: Themes and Templates
In reply to: Nothing ChangesDid you empty your browser’s cache?
Forum: Your WordPress
In reply to: What are your top 5 Favourite themes?Personally i’m a fan of blix. Check out the wp theme viewer for some two to three hundred different themes.
Forum: Fixing WordPress
In reply to: recovering index.php?Did you do away with the index.php file under the wordpress directory or under the themes/yourthemehere/ directory?
If the earlier then here is the code:https://pastebin.com/356942
If the latter then I do not know what theme you were using. Here is the classic theme’s file: https://pastebin.com/356943Forum: Plugins
In reply to: hide dashboard from lower authorsLine 182 in wp-login.php reads:
if ($user_login && $user_pass) {
$user = get_userdatabylogin($user_login);
if ( 0 == $user->user_level )
$redirect_to = get_settings('siteurl') . '/wp-admin/profile.php';
It would be very simple to cut and paste this per more user levels. Say if 1 < userlevel < 8 then redirect to /post.php …
Probably wouldn’t be very difficult to add in future versions under admin options though. Leave a note on the 1.6 page over at the codex.
Forum: Fixing WordPress
In reply to: recovering index.php?First off, the information is stored under your MySQL database. The files are only the interface and workings of it. Could you post your index file to https://pastebin.com/ for us to see if we can figure out what is wrong.
Forum: Everything else WordPress
In reply to: mailing listSubscribe2 is excellent. If you would like to just use it as a mailing list plugin, then make sure to exclude each category under options>subscribe2.
Forum: Plugins
In reply to: Integrating Simple PHP Gallery (WP 1.5)I had posted a thread on SPG’s forum as well, but does anyone have an idea as to how I would go about integrating – “wrapping” – the administrative portion of the script into wordpress so that users wouldn’t have to create two accounts? Even if that meant that something as simple as
if user = logged into wordpress - then login under 'admin' in SPG
….Any ideas let me know… I don’t have the greatest knowledge of PHP but if someone can help get me started I will run with it.
Forum: Everything else WordPress
In reply to: WP – Broke by Hosting Company doing cPanel upgrade :-(find a new host ??
Forum: Fixing WordPress
In reply to: Cannot get into wp-admin since mySQL server resetMost likely your errors are due to blank lines before the opening
<?php
or after the ending?>
tags. Check the functions.php file for them.Forum: Your WordPress
In reply to: WordPress is a remarkably flexible CMSedited, beat me to it ??
Forum: Themes and Templates
In reply to: DOT showing with category image.First off, if you look at the ‘no-replies’ link on the main support page, there are three identical posts! Please read this thread. Posting three times is not only a way to have people avoid your topic, but it is also rude to others who have posted questions. You will be answered, but maybe not in the first couple of hours.
Anyway, the dot is coming from the li. Either modify the plugin to take out the .post-categories ul, or add this code to your stylesheet:
ul.post-categories {list-style: none;}
Forum: Fixing WordPress
In reply to: Static Homepage in WordPress 1.5.2if you want a static homepage. Create a home.php file in your theme directory and add whatever you want.
Forum: Plugins
In reply to: What Features Would You Want In An Event Manager?Thanks, i will check that out. Anyone else?
Forum: Everything else WordPress
In reply to: WP 1.5.2 and Adhesive 2.1BetaWhen i tried adhesive awhile back, it only showed up when editing a post, not when originally writting it. I will see if I can find my copy of it later to see what I changed to correct this.