Kyle Charlton
Forum Replies Created
-
I updated the language files but not the plugin version number, if you uninstall and reinstall the plugin you should have the updated translation.
The French translation has been added to version 1.1, thank you so much for your help in translating. Please let me know if it needs any tweaking.
The German translation is now available, please update to version 1.1
I had to use Google translate to make the translation, so please let me know if the translation needs to be updated.Thanks!
Yes I would love the French translation, I am going to be working on a German translation soon so it would be nice to add both supported languages in the next update.Currently English is the only language supported. I’ll have to create a language file so that the plugin will render the text into the language you have set for your WordPress installation.
What language would you like it translated to?
If you could provide the translation that would help, otherwise I’ll have to depend on Google translate.Forum: Plugins
In reply to: [WPIDE - File Manager & Code Editor] Wish list (Delete file)Another wish list item: Hooks!
I’m trying to create a log system for our sites so other developers know when edits were last made, it would be nice to be able to execute a block of code once you save changes to a document in WPide.Forum: Plugins
In reply to: [SitePush] Sitepush logging with hooksNever mind I was able to figure it out.
// Register date and time when sitepush was used function log_push() { $pushed = get_option('my_logs'); if(count($pushed) == 10) { array_shift($pushed); } $pushed[] = "Site Pushed on ". date("F j, Y, g:i a"); update_option('my_logs', $pushed); } add_action( 'sitepush_push_complete', 'log_push');
Forum: Plugins
In reply to: [Force Password Change] Reset users force password changeSorry computer did a double submit
Forum: Plugins
In reply to: [WP Mail From II] Not working after upgrading to 1.0.2I found some code that seems to work.
It does not interfere with contact form 7./* * Plugin Name: T5 Filter System From Mail * Description: Sets the WP from mail address to the first admin’s mail and the from name to blog name. * Plugin URI: https://toscho.de/?p=2201 * Version: 2012.08.30 * Author: Thomas Scholz * Author URI: https://toscho.de * License: MIT */ if ( ! function_exists( 't5_filter_system_from_mail' ) ) { /** * First admin's e-mail address or blog name depending on current filter. * * See wp-includes/pluggable.php::wp_mail() * * @param $input Name or email address * @return string */ function t5_filter_system_from_mail( $input ) { // not the default address, probably a comment notification. if ( 0 !== stripos( $input, 'wordpress' ) ) return $input; // Not auto-generated return get_option( 'wp_mail_from' === current_filter() ? 'admin_email' : 'blogname' ); } add_filter( 'wp_mail_from', 't5_filter_system_from_mail' ); add_filter( 'wp_mail_from_name', 't5_filter_system_from_mail' ); }
Forum: Plugins
In reply to: [WP Mail From II] Not working after upgrading to 1.0.2Hi, any chance we can get an alternative download for the updated plugin?
Iv’e been searching everywhere for a solution for changing the default from email and name, and yours is the only one that mentions not altering it for plugins like contact form 7.Forum: Plugins
In reply to: [Holiday Message] Suggestions for improvementGreat plugin, very well done!
I would like to add another suggestion, it would be nice to have an option to change the life time of the cookie.
I think some good options would be 30min, 1 hour, 1 day, 1 week etc…Another suggestion would be to maybe add a shortcode that would make a button that you can click to display the message manually.
Any ways, love the plugin!
Forum: Plugins
In reply to: [Background Manager] buddypress compatibilityI just found a solution… at least one that works on my site.
I copied the CSS created by the plugin and then created some classes for each background. Once I created the new classes, I used Jquery to randomly load one of the classes to the body.CSS:
.bg1 { background-image: url('https://startrekrpgdecipher.kccomputing.net/wp-content/uploads/2013/09/bg11.jpg') !important; background-position: top center !important; background-repeat: no-repeat !important; background-attachment: scroll !important; background-color: #000000 !important; } .bg2 { background-image: url('https://startrekrpgdecipher.kccomputing.net/wp-content/uploads/2013/09/bg2.jpg') !important; background-position: top center !important; background-repeat: no-repeat !important; background-attachment: scroll !important; background-color: #000000 !important; }
Jquery:
function randOrd() { return (Math.round(Math.random())-0.5); } $(document).ready(function() { var klasses = [ 'bg1', 'bg2' ]; klasses.sort( randOrd ); $('body').each(function(i, val) { $(this).addClass(klasses[i]); }); });
Then all I have to do is deactivate the plugin and problem solved.
Forum: Plugins
In reply to: [Background Manager] buddypress compatibilityI’m having the same problem.
Anyone have any idea how to fix this?
I do know that if you click on that same comment the second time (after the page reloads) it will work, but obviously that is not a working solution.Touché
I guess we can count this as resolved.
There are two solutions.1: Use version 1.0.4 found in the Developers section.
2: Do as azhkuro suggests-
I got no solutions until checked the plugin directory, filename class.yith-wcmg-frontend.php
Open the file and delete “space” before <?php
refresh your browser. That works for me!