lano1106
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Author Box] typography still broken in 2.0.2Thx Cristian, It makes sense.
Consider my problem fixed!
However, considering the size of your userbase, I feel like I am not the only one who is going to have that problem…
I’m not a plugin developer like you so I don’t know what I’m talking about but there might be a way to install a hook to call a function when upgrading a plugin that could take care of upgrading the plugin DB tables…
Might be worthwhile to explore that possibility soon or at least for the next upgrade.
Take care and I really appreciate your good work. I will give your plugin a 5-stars pretty soon!
Olivier
Forum: Plugins
In reply to: [Simple Author Box] typography still broken in 2.0.2I know!
With 1.9, your plugin was trying to fetch the nonexistant ‘None’ Google font. I did pull out the lines doing that.
With 2.0.1, I didn’t check the google font but inline CSS for font was fine. The 2.0.2 typography fix had the regression effect for me as described in initial post.
diff -r simple-author-box/inc/class-simple-author-box-helper.php /home/lano1106/Downloads/simple-author-box/inc/class-simple-author-box-helper.php
45a46
> ‘vk’ => ‘VK’,
905c906
< if ( get_option( ‘sab_box_name_font’ ) != ‘none’ ) {
—
> if ( get_option( ‘sab_box_name_font’, ‘None’ ) != ‘None’ ) {
911c912
< if ( get_option( ‘sab_box_desc_font’ ) != ‘none’ ) {
—
> if ( get_option( ‘sab_box_desc_font’, ‘None’ ) != ‘None’ ) {
917c918
< if ( isset( $sabox_options[‘sab_web’] ) && get_option( ‘sab_box_web_font’ ) != ‘none’ ) {
—
> if ( isset( $sabox_options[‘sab_web’] ) && get_option( ‘sab_box_web_font’, ‘None’ ) != ‘None’ ) {- This reply was modified 7 years, 2 months ago by lano1106.
Forum: Plugins
In reply to: [YUZO] Related posts by views (widget)I like this plugin. I can even offer a small monetary bounty to have that feature done to help you find the motivation to do it.
Contact me privately if that interest you.
- This reply was modified 7 years, 7 months ago by lano1106.