Taehan Lee
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Forum Editor] I need Font Size in pixelssure, you can edit like below.
add_filter( ‘tiny_mce_before_init’, function($r){
$r[‘fontsize_formats’] = implode(‘ ‘, array(
‘1=12px’, //this should be 12px
‘2=15px’, //this should be 15px
‘3=18px’, //this should be 18px
‘4=20px’, //this should be 20px
‘5=22px’, //this should be 22px
‘6=24px’, //this should be 24px
‘7=25px’, //this should be 25px
));
return $r;
}, 99);BTW, In my opinion, I don’t recommend to use ‘px’ unit. What if you would change the base font size? i.e. from 14px to 16px in the future or on the other device? So I recommend to use ‘%’, ’em’, or ‘rem’ for potential changes in the future.
Forum: Plugins
In reply to: [BuddyPress Forum Editor] I need Font Size in pixelsAppend below codes to the activated theme’s functions.php
add_filter( ‘tiny_mce_before_init’, function($r){
$r[‘fontsize_formats’] = implode(‘ ‘, array(
’10px’,
’12px’,
’14px’,
’18px’,
’24px’,
’32px’,
));
return $r;
}, 99);Forum: Plugins
In reply to: [BuddyPress Forum Editor] Tag User doesn't workHi, didn’t consider of tagging user, so I’ve gotten same requests since I made this.
I can’t right now, but will implement sooner or later.
thanks.not yet found any incompatibility. but promise to check it up again sooner or later and will update the stable version info. thanks.
Forum: Plugins
In reply to: [BuddyPress Forum Editor] maximum upload file sizenow only accept a poisitive integer, so you should change line 439 like below.
$r[‘max_image_upload’] = 0.15
* this reply is based on v1.0
Forum: Plugins
In reply to: [BuddyPress Forum Editor] font-familyoh, it’s my pleasure to help you!
Forum: Plugins
In reply to: [BuddyPress Forum Editor] font-familybtw,
just wanted to say not a functional issue but design consistency on your theme. because this forum is on the front-end, and not only blogers but also many users would use this.
anyway, I’m sure you did fine.Forum: Plugins
In reply to: [BuddyPress Forum Editor] font-familyalright! if then,
add below keyword on setting page ( your-domain-and-wp-path/wp-admin/options-general.php?page=bpfed-settings).fontselectThe editor has the built-in plugin for font-family. didn’t know it. sorry.
Forum: Plugins
In reply to: [BuddyPress Forum Editor] font-familyAlthough the editor supports many useful tools for the font, there’s no built-in plugn for font-family. if need, may be I could develop it, but I don’t have a plan. I guess that feature (font-family) could mess your theme’s design, and I agree. it’s up to you, though.
Forum: Plugins
In reply to: [BuddyPress Forum Editor] Dont workspls upgrade your BP 2.0 or higher.
Forum: Plugins
In reply to: [BuddyPress Forum Editor] How to make it work without full BuddyPress load?Hi,
I considered about it yesterday.
honestly, it’s hard to give you a clue. sorry. because I’m not so much familar with bbPress.
but… if I have to say any advice.. I guess bbPress’s template system is similar with BuddyPress. so.. if the editor doesn’t appear, why don’t you find ‘do_action’ hooks for display or filter the content? In my plugin, I’m using ‘bbp_get_the_content’ filter hook to include the editor in the content.(LINE 55)
and.. also need to change many hooks like ‘bp_enqueue_scripts’ for enqueuing scripts.
Unfortunately, I guess my advice might not be helpful… 🙁Forum: Plugins
In reply to: [BuddyPress Forum Editor] Upload other filesHi, I don’t recommend to allow additional files. if you’d allow other files, have to consider many things such as checking mime type of files and making and inserting HTML markup in response to each file types.
So.. why don’t you find and try another Editor’s plugin for upload? I’ve never tried though… sorry.Forum: Reviews
In reply to: [BuddyPress Forum Editor] Working fine on the BP legacy forumI intend to extend that in a future version within several months.
Thanks.Forum: Plugins
In reply to: [U More Recent Posts] Shortcode exampleshi @djole, my blog is now under maintenance. so, I uploaded capture image temporally.
http://urlless.com/_/umrp-demo.pngForum: Networking WordPress
In reply to: Is there any way to use non-standard port on multisitethank you so much.
i’ll test the reverse proxy as frontend.