Will Schmierer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Home page CSS width not goodI think it would be easier to troubleshoot, however there is an apache lock on the site, so it’s hard to troubleshoot the issue for you with that in place currently. Is it possible to remove that for the time being?
Forum: Fixing WordPress
In reply to: How do I give users rights to edit one page only?Multimediocrity,
Have you come across this particular plugin? Might be worth a try. I’ve not personally used before, but looks like it’s pretty robust and allow you to setup the configuration you’re after? Hope this helps get you going in the direction you’re after.
https://wordpress.org/plugins/advanced-access-manager/
If this doesn’t quite do the trick, this is a good article with a few other suggestions as well.
Forum: Fixing WordPress
In reply to: Comment read access based on user levelYou could try wrapping comments using this fucntion, so if a user is logged in, show comments and if not, do not display comments? Is that along the lines of what you’re looking to do?
https://codex.wordpress.org/Function_Reference/is_user_logged_in
Hope this helps.
Forum: Fixing WordPress
In reply to: "recent posts" widget, how to translate?Hi Jim,
You might want to check out this plugin to handle translations. It’s pretty powerful, but I’ve used it before and found it to be very helpful. Hope this works for you.
Forum: Fixing WordPress
In reply to: Trouble uploading imagesIs it possible that you’re .org setup restricts the max file size that can be uploaded to your site? If you’re not able to increase the file size on the backend, you could try adding this plugin and trying to upload the image again? If that doesn’t do the trick, you may need to talk to your hosting company because they may have restrictions in place that you’d need to chat with them about.
https://wordpress.org/plugins/increase-upload-max-filesize/
Hope this helps.
Forum: Fixing WordPress
In reply to: How to get a featured posts area divided into boxes?Hi there,
If you’re looking for a plugin to try to achieve something similar to your links, you might want to check out this post that has a couple of options. Not sure if they’ll be exact, but might do what you’re after or at least get you started. I’ve not used them personally, but seems like a good option from a solid resource.
http://wplift.com/wordpress-post-grid
Hope this helps get you started.
Forum: Fixing WordPress
In reply to: Convert a static menu to dynamicNot sure if this is exactly what you’re after, but with some coding, you should be able to turn this from a static menu to a WordPress menu:
Changing the menu to go from show on hover to onclick will take a bit of customization, but this might lead you in the right direction to do so:
http://stackoverflow.com/questions/11228165/change-dropdown-menu-from-hover-to-onclickHope this helps get you started.
Forum: Fixing WordPress
In reply to: User Specific CategoriesHi There,
I’ve not personally tried this plugin, however looks like it is pretty robust and may do the trick for what you’re after based on what you’ve mentioned above. Might be worth taking a look at to see if it fits your needs?
https://wordpress.org/plugins/advanced-access-manager/
Hope this helps get you started.
Forum: Fixing WordPress
In reply to: Site throws HTTP ERROR when uploading picsHi there,
If you’re having issues with larger files, you may need to increase the upload file size allowed. I would recommend trying some of these steps to increase the File Upload size, however you may also want to check with your hosting company as sometimes they have certain restrictions in place as well.
http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/
Hope this helps get you started.
Forum: Fixing WordPress
In reply to: change submenu font/color/sizeHi There,
Looks like if you look starting at line 325 of your css file, you can make some adjustments there to change, font color size etc.
/* Submenus */ nav#main-nav ul ul { width: 180px; display:none; position:absolute; top: 19px; left: -10px; z-index: 10; margin: 0; } nav#main-nav ul ul li { display:block; position:relative; background-color:#ffffff; border-left: 1px solid #e1e1e1; border-right: 1px solid #e1e1e1; border-bottom: 1px dashed #e1e1e1; margin:0; } nav#main-nav ul ul li:last-child { border-bottom: 1px solid #e1e1e1; } nav#main-nav ul ul li a { padding:11px 6px 12px 6px; display:block; font-size: 14px; color:#a7a7a7; text-transform: uppercase; line-height:1.4em; text-decoration: none; }Hope this helps locate the items you’re trying to change.
Will
Forum: Fixing WordPress
In reply to: Newbie Questions – Why Are My Columns Moving?Hey DBAngler,
Do you have a link to your site. It would be helpful to help troubleshoot. Thanks.
Forum: Fixing WordPress
In reply to: Add new special character to WordPress editorkarkunum,
Not entirely sure if this is what you are trying to achieve, but hopefully this gets you going in the right direction.
http://code.tutsplus.com/tutorials/guide-to-creating-your-own-wordpress-editor-buttons–wp-30182
Forum: Fixing WordPress
In reply to: post publish and expire date/times?If I’m following you correctly, you can schedule posts to publish right above the publish button on the post admin screen. If you want it to then expire at a certain time, you could try this plugin to set an expiration date?
https://wordpress.org/plugins/post-expirator/
Hope this helps get you started in a good direction.
Forum: Hacks
In reply to: Hour in commentsHi,
Depending on your theme and how it’s constructed may be an issue, but I would check out this thread and see if it gets you going in the right direction? Hope this helps.
https://wordpress.org/support/topic/how-do-i-show-timestamp-on-comments?replies=4
Forum: Fixing WordPress
In reply to: Pagination not displaying with post type arrayThis might be some good direction for setting up custom post types and pagination. Hope this gets you started in the right direction::
http://callmenick.com/2014/02/21/custom-wordpress-loop-with-pagination/