kostas45
Forum Replies Created
-
Forum: Plugins
In reply to: [SQL Chart Builder] Continuous time for x-axisHi Elvin,
I tried it (3.0.6), it works like a charm!
Excellent work.Thanks a lot,
KostasForum: Plugins
In reply to: [SQL Chart Builder] Continuous time for x-axisHi Elvin,
Yes, your specification is great!
It would be very easy for an external observer to understand what the chart shows.I am eagerly waiting for this update!
Thanks again.
Best regards,
KostasForum: Plugins
In reply to: [SQL Chart Builder] Continuous time for x-axisHi Elvin,
Thanks for the elaboration.
I understand all this, and I agree with you. I am not hunting for bugs, I just liked your plugin and thought I could use it in my current project. Then I began to find “this and that”.
By overlapping (“overlapping – will be fixed in 3.0.6.”) I suppose you talk about the dates on x-axis. If the dates can be placed apart, then its a good indication that there more than one bar there!
Thanks again,
KostasForum: Plugins
In reply to: [SQL Chart Builder] Continuous time for x-axisHello.
Thank you for the new (v3.0.5) fixed update.
The bars are nice and should do the work.The only point I could raise is when two (or more) dates are very close, they are shown as one, with their dates one over the other. There should be a way for them to be shown as two (or three, etc), maybe putting their dates one below the other?
Issue is shown here:
https://www.simcom.net.gr/dokimi/screenshot-01.pngThanks,
KostasForum: Plugins
In reply to: [SQL Chart Builder] Continuous time for x-axisHello,
Thank you for the new version!
Two points:
1. On the Bar chart, at continuous time, the actual bars are too thin, you barely see them especially when they are very close. The bars should be easily visible, or the chart does not make sense.You can choose a certain bar thickness and go with that all the time.2. On the x-axis, at continuous time, there are dates which are not coming from the data. I think you take the earliest and the latest, calculate the time maybe and then evenly scatter the x-axis points, something like that… I think it is better to show ONLY the data points on x-axis!
Thanks again for your work,
KostasForum: Plugins
In reply to: [SQL Chart Builder] Continuous time for x-axisSomething is not quite right. I get 4 fat bars with default x-axis, but I get 2 very thin bars when checked for continuous time.
Forum: Plugins
In reply to: [SQL Chart Builder] Continuous time for x-axisUpdate 3.0.3 does not show up in admin, why?
Forum: Plugins
In reply to: [SQL Chart Builder] SQL Editor issuePerfect, both issues are resolved with the new update (3.0.2).
This plugin deserves 5 stars.Thanks a lot Elvin,
KostasForum: Plugins
In reply to: [SQL Chart Builder] SQL Editor issueHi Elvin,
Thank you for the quick response and the new version!
I have found more issues:
1. X and Y labels do not show up on the chart, the Y axis label becomes graph legend.
2. At Chart Builder -> Style -> Value labels, when checked, nothing happens.Please check them out.
Thank you,
KostasForum: Plugins
In reply to: [Kansleri Cookie Consent] Banner style settingsExcellent work, thanks a lot.
Cheers,
KostasForum: Plugins
In reply to: [Kansleri Cookie Consent] Banner style settingsHi Tapio,
Thanks a lot for the update, it rocks!
The “Open banner preview” is really helpful.Please clarify two points:
1. The last colour picker (Border / divider) where is it referring to?
2. It seems there is no control on the hover of “Adjustment” and “Close” menu items.Thanks again for the nice work,
Kostas+1
Forum: Reviews
In reply to: [MASS Users Password Reset] Very niceReview provided on code canyon as well.
Thanks again,
KostasForum: Plugins
In reply to: [Plainview Protect Passwords] Hooks?Excellent, it works!
To recap:add_action('plainview_protect_passwords_pre_save_settings', 'my_plainview_protect_passwords_pre_save_settings', 10); function my_plainview_protect_passwords_pre_save_settings( $plugin ) { $user_ids = $plugin->get_site_option( 'protected_users' ); foreach( $user_ids as $user_id ) : update_user_meta($user_id, 'wpcf-user-active', '1'); endforeach; } add_action('plainview_protect_passwords_post_save_settings', 'my_plainview_protect_passwords_post_save_settings', 10); function my_plainview_protect_passwords_post_save_settings( $plugin ) { $user_ids = $plugin->get_site_option( 'protected_users' ); foreach( $user_ids as $user_id ) : update_user_meta($user_id, 'wpcf-user-active', '0'); endforeach; }So, can you please include those two lines of code (in src/traits/admin_menu.php) in a plugin update?
Thank you very much indeed,
Kostas- This reply was modified 8 years ago by kostas45.
Forum: Plugins
In reply to: [Plainview Protect Passwords] Hooks?Yes, it works now, thanks!
One last bit please. In the foreach, if user was not protected, I need:
update_user_meta($protected_user, 'wpcf-user-active', '0');
If user was protected and now is not, I need:
update_user_meta($protected_user, 'wpcf-user-active', '1');
How should I implement this?Thanks again,
Kostas