eric3d
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] my favorite format with line breaksYour best bet is probably using the Template feature.
Forum: Plugins
In reply to: [Register Plus Redux] Making New Users Administrators??That’s a general WordPress setting.
Go to Settings > General and set the “New User Default Role” to Subscriber
Forum: Fixing WordPress
In reply to: Add link slug as class to menu itemThanks. This is exactly what I was looking for.
Forum: Plugins
In reply to: Add editable content to templateOK, I added the schedule as a page and added this code from the template.
It works, but it’s not very elegant and I’d rather use a page name instead of an id.<?php $pages = get_pages( 'include=103' ); if( $pages ) : foreach( $pages as $pages ) : setup_postdata( $pages ); the_content("Continue reading '" . the_title('', '', false) . "'"); endforeach; endif; ?>Forum: Fixing WordPress
In reply to: Unable to add images on Mac, 3.2.1In addition to fittingSites’s suggestions, try changing the site’s theme to one of the defaults (twenty-ten, twenty-eleven, etc.) Yes, themes can also affect the admin side.
Forum: Fixing WordPress
In reply to: Should any other file be in wp-content?Some plug-ins (aka NextGEN gallery) will add files or folder to wp-content.
If you have many contributors to your site, it’s possible someone accidentally copied a file to the wrong folder. I’d isolate the files in a subfolder, test that the site still functions properly, then delete the subfolder and check in on wp-content now and then. I’m almost sure it’s human error, but I wouldn’t rule out a software error or poorly built plug-in.