arlieth-tralare
Forum Replies Created
-
Forum: Plugins
In reply to: [Link Library] [Plugin: Link Library] Links no longer appear on pagesNever mind, it looks like the new version of this plugin had an option that I had to check to make sure the name of the link went through. False alarm, sorry for the bother!
Forum: Requests and Feedback
In reply to: [Plugin: MailPress] Dedicated Unsubscribe buttonOdd, I tried to set up a Mailpress page with the provided template from xtras and it still isn’t showing anything:
https://www.bengriffesdc.com/newsletter/
I also configured the page id# in the Mailpress settings. Still nothing showing up…
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Form not aligning left (contact form 7)Actually, never mind- I just figured it out myself. I had no idea the HTML code in settings was actually the code referenced and saved. Derp.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Form not aligning left (contact form 7)Hmm, I’m wondering this myself too. It looks like you managed to get it done; how did you do it?
Forum: Plugins
In reply to: Feature: Custom target field for links (for iFrame targeting)Hmm. Someone helped me out a little with what would go into a plugin that does this, though honestly I have no idea how to code plugins. Could someone take a look at this? Also, I would be willing to pay for a plugin with this functionality.
function arlieth_link_target( $link ) {
copy the form from the previous box, but change the target element
from a radio to a input text
}
function replace_link_box($page, $context, $link) {
if ( $page != ‘link’ || $context != ‘normal’ ) return;
remove_meta_box( ‘linkadvanceddiv’, ‘link’, ‘normal’);
add_meta_box(‘linkadvanceddiv’, __(‘Advanced’), ‘arlieth_link_target’,
‘link’, ‘normal’, ‘core’); // <– notice that here I put the name of
the new function instead of the old one
}
add_action(‘do_meta_boxes’, ‘replace_link_box’);Forum: Plugins
In reply to: Adding A Scroll Bar to My BlogRollI second this feature! If there is a plugin, I’d like to know! (Yes, I’d pay for it)
Forum: Plugins
In reply to: My very own Color Palette for TinyMCE?I second (fourth) this request. It would be great to have.
Forum: Plugins
In reply to: [Plugin: Aleph] Needed features?Hi Jakob,
The email is actually a custom field in CIMY. It worked out because some of the users had a private email and a business email that were separate anyways, but usually they would just input their email twice.
As for editing the profile page, in truth some very messy cut and paste had to be done. Instead of calling the header/footer/etc for the profile page, I had to cut and paste the header/footer code in the order that they would be called. This gave me some additional flexibility in the end as the top advertisement banner was removed for the profile page. If you pull the source code for the profile page, by and large that is what it looks like in the back end. Hope this helps, but if you have more questions please email me at arlieth[at]gmail[dot]com.
To Detective: As a feature, I am still waiting for custom member URL slugs! That’s probably the last major change I am looking for. A while back I bought some books for you through your Amazon Wish List, I never heard back so I hope they got to you okay!
Forum: Requests and Feedback
In reply to: [Plugin: WP Auctions] plugin no longer in development?Are reverse auctions also available (where you put up a starting price and people attempt to bid *lower* instead of higher?) I would be very interested in this feature.
Forum: Plugins
In reply to: [Plugin: Aleph] changing page slugsWould the ability to change slugs also apply to the URL of each member? For example:
https://www.bbnto.com/members/infodiamondsandchampagnecom
this appears because I’ve assigned each user name as their email, to simplify things. However, for optimal SEO, the URL would read:
https://www.bbnto.com/members/diamonds-and-champagne-custom-jewelry
Which is what the user’s Nickname is. Obviously, having a login like “Diamonds and Champagne Custom Jewelry” would be ridiculously long to type out every time. I don’t quite know when 0.9 will be released, so I don’t mind messing around to get the desired results for now as long as I’m pointed in the right direction. If 0.9 is being released soon, well then I’ll just wait. ??
Jeffry Ghazally just helped me troubleshoot the problem: It was Nicholas Zeh’s PHP Execution plugin that was overwriting the permissions for Wiki-Editors. With this resolved, the plugin works great.
Forum: Plugins
In reply to: [Plugin: Aleph] Needed features?Hmm. I looked in template-tags.php for any information on adding the E-Mail Address field to a user’s profile, but I couldn’t find one. What could I insert in profile.php to enable this? Thanks!
BTW, the website I’m working on has been moved to: https://www.bbnto.com .
Forum: Fixing WordPress
In reply to: [Plugin: Profile Pic] Displayed pic problemsNever mind, it turns out it was a called css style in my theme. Sorry for the trouble ^^;;
Forum: Plugins
In reply to: [Plugin: Aleph] Needed features?Odd, it seems to have done some sorting, but since not all of my users have filled out their information, the sorting seems to prioritize incomplete profiles. :X But it’s definitely a start! I’ll report how it works out once all the profiles have been filled out. Thanks!
You can see the results here:
Forum: Plugins
In reply to: [Plugin: Aleph] Needed features?Just wondering, is there an easy way to sort the user list alphabetically? Or would that require a messy sorting script?