Scott Reilly
Forum Replies Created
-
Forum: Plugins
In reply to: [Get Custom Field Values] [Plugin: Get Custom Field Values] wysiwyg editorI think you are referring to adding TinyMCE to the custom field textarea in the admin when writing a post/page? That’s a handy idea, but outside the purview of this plugin. There may be a plugin that does so already though, or at the very least there appear to be others with a similar request here on the forums.
Sounds like you don’t have the line of code within
<?phpand?>. Try it this way:<?php c2c_the_category_image(); ?>Forum: Plugins
In reply to: [Configure SMTP] [Plugin: Configure SMTP] password fieldThanks for pointing that out. An oversight in the recent update to the plugin. This has been addressed in the v3.0.1 release of the plugin. The password input field is now masked as it was in previous versions.
I will certainly consider use of a different approach in the future. Bear in mind that in WP, for Post by E-mail, the email account password is always shown and in plain text, so WP isn’t standardized in this regard.
As a belated follow-up to this request, as of v3.0 of the plugin, errors are better handled and reported to the admin (at least when sending out the test email).
I’m replying a bit belatedly, but thanks Angelo!
Forum: Plugins
In reply to: [Plugin: Configure SMTP] Password encoding bugAs a belated follow-up to this thread: this does not appear to be an issue with the plugin as of its current release (v3.0). Let me know if anyone experiences otherwise.
Forum: Plugins
In reply to: [Admin Trim Interface] Admin Trim Interface 2.0 Issue with Visual EditorI recently updated the plugin to v2.0.1. Just to rule things out, were you able to try things with that latest release? The weirdest part of your bug report is the fact that the post/page listings in the admin only list 7 posts. This plugin shouldn’t affect those things.
I tried reproducing all the criteria you specified in your response above (thanks for such detail!) but was never able to encounter any issues.
Forum: Plugins
In reply to: [Admin Trim Interface] Admin Trim Interface 2.0 Issue with Visual EditorJust a few questions to help me better diagnose the issue since I can’t reproduce it on my end:
- What browser are you using?
- Were you using the previous version of the plugin and it worked fine for you, or are you new to the plugin?
- What version of WordPress are you using?
- Did the Visual Editor get disabled able as soon as you activated the plugin, or only after you change the plugin’s settings to hide certain elements? (If the latter, which combination of interface elements were you trying to hide?)
- By your Visual Editor being disabled, what do you mean? Are you dropped into the HTML editor and can’t switch back over, or is the Visual Editor active but nothing in it works (or has disappeared)?
I appreciate as much detail as you can provide. Thanks!
Forum: Plugins
In reply to: [wpuntexturize] [Plugin: wpuntexturize] 1.3 fatal error on activateJust a follow-up: this got fixed in the v1.3.1 release soon after the v1.3 release. Thanks for the report!
Forum: Plugins
In reply to: [Plugin: Allow Multiple Accounts] Does NOT allow admin emailJust to follow up to this issue: this was actually a bug with the plugin under a later version of WordPress. v1.5 of the plugin has since fixed the issue and is current as of WordPress 3.0+.
Forum: Plugins
In reply to: [Plugin: Admin Post Navigation] The plugin skips entriesThanks for the feedback msaari!
Version 1.5 of the plugin introduces the change you made manually: posts are now sorted by ID rather than post_date. There are filters in place to modify that behavior if someone likes to do things differently. The post navigation handling has been improved as well.
Forum: Plugins
In reply to: Can’t get custom field values to work!There’s a few things that could be wrong with what you’re doing. What template are you trying to modify? I’m presuming you are working on the single.php template file? If so, you can use
c2c_get_current_custom()instead ofc2c_get_post_custom()since the latter requires that you first explicitly provide a post ID, whereas the former will use the current post (assuming you are in the single.php or page.php template).Also, you are sending a variable,
$field, to the function, but have you set that variable? If not, you should just send the name of your custom field, i.e.'ommig'.Finally, you don’t need to put the shortcode (the
[custom_field field="ommig" /]bit) inside your post if your intent is only to set the class for that div. The shortcode will just insert the value of the custom field into the body of your post.So… ultimately you probably just want to replace the example code you provided above with:
<div id="header" class="<?php echo c2c_get_current_custom('ommig'); ?>">Then for a post, create the custom field called “ommig” with a value (which it sound like you’ve done already).
This particular set of code only makes sense and works properly if you are working in single.php.
Hope that helps.
Forum: Fixing WordPress
In reply to: Exclude few recent posts from the recent post list (coffee2code)Hi shafee85:
The
$offsetargument to the various functions allows you to skip any number of posts from the top of the listing. So to exclude the 10 most recent from the listing, use this:<?php c2c_get_recent_posts(5, "<li>%post_URL%<br /></li>", "50", "date", "DESC", 10); ?>Also, do note that the current URL for the plugin is:
http://coffee2code.com/wp-plugins/customizable-post-listingsForum: Plugins
In reply to: Auto detect URL in post/pageYou can try my Auto-hyperlink URLs plugin. I plan to release an update for it within the next week as well.
Forum: Plugins
In reply to: [Plugin: Get Custom Field Values] Custom Field Plugin ROCKSThanks, syncbox! Glad the plugin has been of help to you!