citeewurkor
Forum Replies Created
-
Forum: Plugins
In reply to: Looking for Plugin that Allows Commenters to Manage Own SubscriptionsDo you mean like subscribe to comments on a post like this plugin?
https://txfx.net/code/wordpress/subscribe-to-comments/Forum: Fixing WordPress
In reply to: Spam RegistrationThis might help:
https://www.ads-software.com/support/topic/96820?replies=9I personally have registration turned off and let Spam Karma keep an eye on comments:
https://unknowngenius.com/blog/wordpress/spam-karma/Forum: Fixing WordPress
In reply to: Move MT RSS Feed to WP RSS Feedtry this before the wordpress stuff:
Redirect https://www.site.com/index.rdf https://www.site.com/yourwordpressfeedhere
If you’ve got Cpanel, they’ve got an easy redirect feature that would be easier.
EDIT: It’s kind of hard to read that up there. There is one space between each URL.
Forum: Installing WordPress
In reply to: QUICK HELP!! – Cookie error- fatalDo you have all the WordPress files properly uploaded? It’s looking for a function, but isn’t finding it.
Forum: Fixing WordPress
In reply to: Moved to a new serverFind the above code in your template, probably header.php and uncomment the stylesheet reference
This:
<style type="text/css" media="screen">
<!-- @import url( https://fatmatrix.com/wp-content/themes/gray-gets-green-10/style.css ); -->
</style>Should become this:
<style type="text/css" media="screen">
@import url( https://fatmatrix.com/wp-content/themes/gray-gets-green-10/style.css );
</style>
Your blog looks the way it does because it is not styled.Forum: Installing WordPress
In reply to: Was gwht mir Rap-Battel.dehttps://wordpress-deutschland.org/
Wir sprechen hier meistens Englisch. ??
Forum: Fixing WordPress
In reply to: Smilies in Comment Boxesfind your template’s comment form code and remove the smilies. Probably something like “comments.php” or similar.
??
Forum: Themes and Templates
In reply to: Header Size“too large” would be a matter of definition, I suppose.
I wouldn’t think so. You can always change the quality of the image if you need to make it smaller.Forum: Fixing WordPress
In reply to: NEED URGENT HELP IMMEDIATELYok, Mr. member since January 14, 2007 with one post. This is your first post here, and it is to belittle somebody who thought they killed their blog?
sheesh..Forum: Fixing WordPress
In reply to: NEED URGENT HELP IMMEDIATELYyay! You’re very welcome. These forums have saved me more than once. ??
Happy game tabbing!Forum: Fixing WordPress
In reply to: NEED URGENT HELP IMMEDIATELYIt appears to be working again?
Forum: Fixing WordPress
In reply to: NEED URGENT HELP IMMEDIATELYI edited it just now.
Forum: Fixing WordPress
In reply to: NEED URGENT HELP IMMEDIATELYarchard, I left some curly braces out, did you try the above?
my bad..Forum: Fixing WordPress
In reply to: NEED URGENT HELP IMMEDIATELYok, i think this is the default if you have wp in your root folder:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressnot 100% sure though. htaccess isn’t my usual cup of tea….
Forum: Fixing WordPress
In reply to: NEED URGENT HELP IMMEDIATELYThat’s ok, archard. Do you have a backup of your .htaccess file? Might be able to use that?