Snat
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Inappropriate Google adsAs you are using the free WordPress hosting, you should be posting it on WordPress.com Community Forums as these forums is for people whom is using the self hosted version.
Regardless, WordPress does not have much control over Google Adsense as Google uses a spider to gather the content and uses that to relate to ads. You would be best moaning at Google but that will not get you anywhere as Google support, even for paying customers, is about as much as a automatic reply.
Forum: Everything else WordPress
In reply to: Can I pay someone to revamp my blog?You will find many people that would be helpful to do so and the best place to post this is on WordPress Jobs.
Forum: Fixing WordPress
In reply to: Login in to my existing wp.org sitReplace “yourdomain” with your domain for your website and you will be able to access your site. From there, re-insert any widgets you need.
Forum: Fixing WordPress
In reply to: comments eliminatedI do not get what you mean. If you have found your comments in trash, you can restore them.
If you haven’t, you will need to use a backup sadly.
Forum: Hacks
In reply to: Use paypal as a means for users to upload a poem for submissionYou would need to use a plugin for this. While there is not a plugin that is developed to do both, you should be able to do this easily with two plugins that is released.
The first thing you want to do is install a plugin that allows users to submit articles to you and the one I would use is TDO Mini Forms.
Once you have done this, you then want to find a plugin that disables or hides things in WordPress until a user has paid. For this I would use a plugin like this – http://thewordpresswarrior.com/596/enhanced-paypal-shortcodes.
What you do is add the PayPal short code that the second plugin gives you to hide the page that the submit form is on. Once they have paid, they can submit as normal.
Hopefully that helps a little, I haven’t tried it myself but the logic should work out.
Forum: Fixing WordPress
In reply to: comments eliminatedIn the admin panel, you may be able to restore your comments via clicking “Comments” on the left and once loaded then clicking “Trash” on the top option.
If your comment are there then you are able to restore them. If not, you will need to restore your comments from any backup you may have.
Forum: Fixing WordPress
In reply to: delete posts from databaseIn PhpMyAdmin, what is the category ID for “big category”. Need it to write a SQL statement for you.
Forum: Themes and Templates
In reply to: P2 Theme / Changing AvatarsIf I recall the P2 theme uses Gavatar like most themes do and link to change can be found here: http://www.gravatar.com/
Forum: Fixing WordPress
In reply to: "404 – not found" when updating postsDo you have any plugins installed that might affect this ?
Try and disable all plugins and try again. If it works, try each plugin one by one to see what is causing the issue.
Forum: Fixing WordPress
In reply to: Referrer Links in Site StatsNormally it means someone has link to you on their profile. There is no way I know off so far to find out who linked to it as Facebook redirect all external links to a single page and then links to a site so you can’t really see which page it came from.
Forum: Fixing WordPress
In reply to: Sharing users tableFound out the answer.
It seems by just having:
define(CUSTOM_USER_TABLE,'wp_users');That it will set as subscriber by default. Will test further though. Thanks for looking.
Forum: Plugins
In reply to: Grab Latest Forum Posts from IP .BoardYou can place it in a widget on your site. Your IP.Board will have a RSS feed (you may have to set it up in AdminCP though and IP.Services will explain how to do that if you ain’t sure).
There is a RSS widget which will display the links, topic name etc and will link automatically to the topic.
Forum: Fixing WordPress
In reply to: Social networking pluginGive BuddyPress a try, it might serve you well.
Forum: Fixing WordPress
In reply to: Can't log in after update to 3.0.1From my experience in the web hosting business – most hosts that tells you they make backups will only restore if their server dies or simply don’t have backups.
If you know how to use PhyMyAdmin, you can try to reset the password by hand and then re-give that admin permissions.
Forum: Fixing WordPress
In reply to: Can't log in after update to 3.0.1Have you tried the forgotten password section on WordPress ?
Or try this script to reset the password – http://codex.wordpress.org/User:MichaelH/Orphaned_Plugins_needing_Adoption/Emergency.
If all your statuses are only subscribers you might need to make a completely new admin account and go from there. The following code in PhpMyAdmin will change any user to admin.
INSERT INTO ‘wp_usermeta'(‘umeta_id’,’user_id’,’meta_key’,’meta_value’) VALUES
(1, 1, ‘nickname’, ‘User_Name_Here’),
(2, 1, ‘rich_editing’, ‘true’),
(3, 1, ‘admin_color’, ‘fresh’),
(4, 1, ‘wp_capabilities’, ‘a:1:{s:13:”administrator”;b:1;}’),
(5, 1, ‘wp_user_level’, ’10’);