Daniel King
Forum Replies Created
-
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Pagos que vuelven a ProcesandoGracias @conradogalli por esto, nos estaba volviendo locos a varios.
Forum: Reviews
In reply to: [Mail Bank - #1 Mail SMTP Plugin for WordPress] Too ComplicatedI used Mail Bank for a while and was happy about it, but I had to agree with @gld review, here: recent changes made it not suitable for WP multi-sites, and the new functionality it’s not worth the cost, in my opinion.
I had this very issue. I resolved uploading my custom translation file at wp-content/languages/plugins/ as instructed here https://localise.biz/help/wordpress/loading-translations
You need to make sure your .po and .mo files are named after the plugin loadtext domain. In my case envira-gallery-lite-es_ES.po and envira-gallery-lite-es_ES.mo
The current version of Envira Gallery doesn’t ship with any translation files. Don’t know why.
I had this very issue. I resolved uploading my custom translation file at wp-content/languages/plugins/ as instructed here https://localise.biz/help/wordpress/loading-translations
You need to make sure your .po and .mo files are named after the plugin loadtext domain. In my case envira-gallery-lite-es_ES.po and envira-gallery-lite-es_ES.mo
Forum: Plugins
In reply to: [Posts 2 Posts] Can't get it working.Hi jhazelh,
I’m writing this without checking it first, so I’m not sure if this will help, but did you check it the Reciprocal option?
https://github.com/scribu/wp-posts-to-posts/wiki/Reciprocal-connectionsHi Ipex Media. I believe this is due to this vulnerability:
An attacker could find out if the user is active and gain access to the username.
Hi guys, I stumbled upon this thread looking for some answer on the same topic. I ended up adding a filter, wich is working ok so far. I took the idea from here:
This is what I did:
add_filter(‘posts_orderby’, ‘dkis_sort_by_meta_value_asc’ );
function dkis_sort_by_meta_value_asc ( ) {
global $wpdb;
return ” $wpdb->postmeta.meta_value ASC”;
}It’s quick and easy. You could implement a dkis_sort_by_meta_value_desc as well, and remember to remove the filter if it’s causing problems with other loops:
remove_filter(‘posts_orderby’, ‘dkis_sort_by_meta_value_asc’ );
hope it helps
@ferreira2u: this plugin it’s working fine for me. You should open another thread to discuss your problem. If I was you, I’ll check for plugins incompatibilities.
Hi all, I was looking for the same functionality. I wanted to list all my admins users, not just the ‘admin’ user, mainly because I have not an admin username.
This is how I ended up working:I changed the original send-page.php file to query only admin users if the current user has not manage_options capabilities.
There’s a lot of room to improve it, however.
Thanks Liliana, this was useful for me as well.
Forum: Fixing WordPress
In reply to: Simple email register formI tried this just now for an event related site. It’s 100% hacky, but on wp_login.php, about line 298, I added a $user_login = $user_email:
function register_new_user( $user_login, $user_email ) { $errors = new WP_Error(); $user_login = $user_email; $sanitized_user_login = sanitize_user( $user_login );
This makes the login field data irrelevant, and replaces with the email address. Then, it sanitazes and continue with the registration process.
Then, you should remove or hide the user_login text field
I’m not sure if it’s the best way to do it, but it works for now.It’s important to note that I made this form not available for the general public, it just for event organizers.
I’m having the same problem. Anybody?
Forum: Plugins
In reply to: [Client Status] [Plugin: Client Status] Not enough documentationHi FrameGuy,
I’m no expert, but in some installs it conflict with other plugins. For example, I had a WP 3.0 with Secure WordPress plugin (https://www.ads-software.com/extend/plugins/secure-wordpress/) outdated, with version 1.0.6 and it gave me xml errors.
I upgraded Secure WordPress to version 2.0.0 and the problem vanished.
Maybe you can try deactivating plugins and telling us wich one is conflicting, if any?Also, it may be related to file permissions, but I can’t tell exactly.
Regards
DanielForum: Plugins
In reply to: [Client Status] [Plugin: Client Status] Not enough documentationEric, I think you’re right regarding the look: it should be different.
I’ll try to make a jpeg of what I propose, just for you to know.
Regarding translations, I think it’s pretty straightforward: you should enclose all your strings on _e() or _() functions. Then, we can translate the .pot file into locale .mo files…and that’s it.I’ll be back as soon I have more to help you.
Thanks a lot!Dani
Forum: Plugins
In reply to: [Client Status] [Plugin: Client Status] Not enough documentationHi Eric,
first of all, my English is not the best, Spanish it’s my main language, so I apologize in advance if I sound to harsh ??
I’m using your software for 2 days now, and I love it. I believe it delivers all I needed when I was looking for the codeCanyon one.I contacted the codecanyon plugin author. He told me he had to stop selling it because support requests became to much to handle. I hope you can keep up! ??
This are some of the things I
– I notice some warnings in some cases, that could be avoided or show in other ways.
– I also think that the Client Status Dashboard could be more compressed, showing the vital info, and more details when expanded. For example: now we see the client name and a number of outdated plugins. I believe it could be added wordpress version and indexable or not in that line.
– In that line, maybe it’s better the ‘box’ approach of the CodeCanyon script instead of the ‘row’ approach you have here…I don’t know how easy is for you to change that. I realize the codecanyon thing it’s a php script, not a WP plugin.That being said, I think your solution it’s better because I can add it to TwentyTen CRM and have a complete WordPress Client Manager in seconds.
Again, my critic it’s only to help you make a better plugin. Let me know if I can help with something…maybe a Spanish Translation?
Keep the good work!