GreyNomad
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Null errorI just updated and got the same error messages.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Update to 1.7 failedReview posted!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Update to 1.7 failedTrying to install through WordPress by uploading the zip file also failed. Unzipping the distro file and uploading with FTP worked.
Thanks for the excellent support!
~~ GreyForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Update to 1.7 failedWell, that looks like a mess, LOL. I’ll do the manual update.
Thanks,
~~ Grey.
Thanks for the quick response. Scroll mode will work fine for our applicaiton.
And thanks for an awesome extension!
~~ Grey
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Topic and reply URLs in notification messagesIn case anyone is going to use this… I found out that using the topic title can result in broken links because of spaces and other link-breaking characters. It needs to use the topic slug instead. The revised code for returning the topic URL is:
return bbp_get_topics_url() . sanitize_title($title) . ‘/’;
The complete code:
function my_topic_url( $url, $post_id, $title ) { return bbp_get_topics_url() . sanitize_title($title) . '/'; } add_filter( 'bbpnns_topic_url', 'my_topic_url', 10, 3); function my_reply_url( $url, $post_id, $title ) { return bbp_get_reply_url($post_id); } add_filter( 'bbpnns_reply_url', 'my_reply_url', 10, 3);Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Topic and reply URLs in notification messagesThanks, you rock!
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Topic and reply URLs in notification messagesThanks… I’ll have to figure out how to do that. I don’t know much about WP plugin internals. I’m balls to the wall getting the event site up right now, I’ll look into that when the dust settles and I get my brain back.
~~ Grey
Forum: Plugins
In reply to: [Admin Menu Editor] Can't get it to work, what am I doing wrong?Okay, thanks for the quick response. I’ll pick up the Pro version.
~~ Grey
Forum: Plugins
In reply to: [Admin Menu Editor] Can't get it to work, what am I doing wrong?Trying something different, I changed the Meta Slider setting to role ‘Author’ and saved it… and it disappeared from the admin menu completely! (I was logged in as the super admin.)