Cal
Forum Replies Created
-
I’ve also unfortunately run into this problem running WP Multisite 3.4.2.
The first time I installed Quick Cache it worked great for about 3 days and then I’m not sure what happened but everything got real slow. So I uninstalled it for a few days and tried W3TC. W3TC wasn’t really what I wanted for my Multisite so I decided to try QC once again.
This time it worked great for like 1 day and then I got the white empty pages. So I had to uninstall it again. From what I’ve read on their site they’re working on an updated version. So hopefully they’ll have something for us in the next few weeks or months.
Forum: Fixing WordPress
In reply to: Post author view and approve commentsI would use this plugin to allow authors to moderate comments on the front-end.
FV Thoughtful Comments
https://www.ads-software.com/extend/plugins/thoughtful-comments/Then I would probably hide the ‘Comments’ area in the admin area, by modifying the functions.php file.
//remove menu items that aren't used function remove_menus () { global $menu; $restricted = array( __('Comments'), __('Links')); end ($menu); while (prev($menu)){ $value = explode(' ',$menu[key($menu)][0]); if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);} } } add_action('admin_menu', 'remove_menus');
Probably not exactly what you’re looking for but maybe it will give you some ideas…
Well looking at the plugin it looks like it’s made for subdomains and mapping. I’m no programmer but it looks like there’s quite a few changes that have to be made to get it to work with subdirs.
Forum: Themes and Templates
In reply to: Can WordPress design be done in WYSIWYGHey BN,
You can check out our themer kit available at https://wpthemerkit.com
You can style an HTML file with a WYSIWYG editor and there’s videos and documents at the site for reference.
Forum: Plugins
In reply to: Using a 2nd comments template, need helpOkay, figured it out…..
It’s a bit long so I’m not going to post the solution here, if you need it just contact me and I’ll help you out.
Forum: Plugins
In reply to: Plugin needed: Subscribe to new Posts via EmailProbably easiest to sign up with Feedburner
Then submit the blogs feed and get the code for email signups.
Paste the code into the sidebar or wherever you want and anyone that signs up will be sent an email.
You may also want to check out the feedburner feedsmith plugin.
Forum: Plugins
In reply to: using noindex for categories and archivesI think it’s really a personal preference.
I personally do because I don’t want to get knocked for duplicate content, engines don’t like that.
SE’s will still index your articles and such, I think they just avoid the actual category and archive views, they’re quite similar.
Hope that helps….
Forum: Fixing WordPress
In reply to: PLUGINS section errorThanks whooami, I had a similar problem recently…
Just put a line at the top of my .htaccess file
Nice license plate btw, are you a minnesotan? i am… ??
Forum: Fixing WordPress
In reply to: some strange errorsYou may be right on that, the weird thing is that I run Mu on the same server and have no errors there. You would think that Mu sites would have similar errors, but it’s hard to say.
I also thought it might have been from a cache plugin, realized I forgot to delete
define('WP_CACHE', 'true');
that line from wp-config but after deleting it nothing has changed.If anyone has any suggestions or ideas, let me know, otherwise I’ll contact my host later today.
Thanks
Forum: Fixing WordPress
In reply to: contact formForum: Themes and Templates
In reply to: themes.wordpress.net/I think that they’re cleaning it up and removing sponsored themes…..
Forum: Themes and Templates
In reply to: Theme Release: Green MagickThanks for the kind words gestroud!
Forum: Plugins
In reply to: I like 1 Blog Cacherhttps://www.ads-software.com/extend/plugins/1-blog-cacher/
There’s the link to it.
I tried to post this under it’s plugin page but it didn’t seem to work.
Forum: Everything else WordPress
In reply to: pasting .txt files and the links are deadI would just insert
<a href="https://example.com">Click Here</a>
Rather than
https://example.com
and Paste the text in there in code view
If you insert a link like
https://example.com
without pasting, just typing it, does it turn it into a link automatically? I’ll have to check that out when I get time…Forum: Themes and Templates
In reply to: Custom templatesWell I think you’re looking at changing the following CSS…in default theme folder at style.css file
Some of the CSS for the header……I’m sorry I don’t have time to do everything, but maybe this will get you started or at least show you where to look….
You’re looking at changing the width value for these ID’s
#headerimg
#header
#sidebar
.widecolumn
.narrowcolumn
You may also have to change the #footer and #page widths to get the whole thing to a new width.There’s no easy way to do this, just so you know. Every theme is different and it takes even a Pro some time and testing to get these things perfect.
Hopefully that gets you started, make a backup copy before starting to make life easier if you mess up.