BeardedGinger
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Author page helpHey Miz.MIchele,
You can remove that section by creating a duplicate of the
loop-entry.php
file within your theme and naming it something likeloop-author-entry.php
. In your newly created file, delete any reference to<?php the_excerpt; ?>
.Within the author.php file you have pasted above replace
get_template_part('loop', 'entry')
withget_template_part('loop', 'author-entry')
Forum: Plugins
In reply to: [Admin Page Notes] LocalizationThanks! I really appreciate the input.
Looks like I botched the localization :).
I’ll give it another go and test with the Code Styling Localization plugin. Should have it updated before next week.
Thanks!
Forum: Plugins
In reply to: [Admin Page Notes] LocalizationI just updated to Version 1.1.0 which includes your suggestions for localization.
I did some tests but would love your feedback when you get a chance to test it.
Thanks!
Forum: Plugins
In reply to: [Admin Page Notes] LocalizationGot this added to the queue for the next release https://github.com/BeardedGinger/admin-page-notes/issues/2
Forum: Reviews
In reply to: [Admin Page Notes] NiceThanks! This will definitely be coming! I’ve added it to the queue for the next update.
I’ve done this in the past with theme development but, to be honest, I’ve never personally had to do a translation. I would love to get more info from someone that has to do them on a regular basis.
Forum: Plugins
In reply to: [Admin Page Notes] Text Area Height?If you would like to set a custom height on the textarea, you can add it to your styles function above by targeting
#admin-page-notes textarea
.I’m adding this as an issue to make the textarea larger in the 1.1.0 release for version 1.1.0
Forum: Fixing WordPress
In reply to: Help adding index.php to ALL directories for securityHey,
You shouldn’t have any issues adding it to the other folders. I don’t play with the .htaccess file too much but there are some good tips in this article from the codex regarding the .htaccess file.
Forum: Fixing WordPress
In reply to: Error Code Upgrading from 3.5 to 3.8Hey,
Do you have FTP access to your site? Also, do you have any membership plugins or plugins that adjust existing user capabilities installed? If so, you can try removing those plugins via FTP and see if that resolves your issue.
Forum: Fixing WordPress
In reply to: Some very general "counseling" for a newbieHey,
If I’m understanding you, it sounds like your approach is good.
Also, you’re definitely right about not wanting to make these pages. If you want to have all of these special, re-published posts accessible together, you can create a special category or tag just for these posts and add a link to that archive to your menu.
Forum: Fixing WordPress
In reply to: Problems in edit post and pageHey,
This is most likely a plugin or theme conflict. Try disabling plugins one by one to see if you can find the plugin that is causing the issue.
Forum: Fixing WordPress
In reply to: Help adding index.php to ALL directories for securityHey,
You may run into issues with adding it to your child theme since the
index.php
file is the default template for any view that doesn’t have a defined layout within your theme.
A helpful graphic can be found hereForum: Fixing WordPress
In reply to: Filtering WP_query through SEO friendly URL.Hey,
It sounds like you would benefit from switching to custom taxonomies rather than custom fields. You could then take advantage of the archive for each taxonomy term.
Forum: Fixing WordPress
In reply to: Issue following 3.8 install…Hey,
This could be a plugin or less likely a theme conflict. You can try disabling any plugins that add additional widgets and see if that resolves your issue.
Forum: Fixing WordPress
In reply to: Hiding an element on all but one page with CSSHey,
You should be able to accomplish this with most themes by adding the following css to your site:
.IOTMonth {display:none;} body.10717 .IOTMonth {display:block;}
Forum: Fixing WordPress
In reply to: 3.8 and link buttonIt appears that you may have a plugin or theme that is modifying the default display of that area in WordPress