mav2287
Forum Replies Created
-
Forum: Plugins
In reply to: [Customer Chat for Facebook] Missing OptionsSorry about that I haven’t had time to write any code for the options, but I did submit a change that allows for the use of the SDK.
They have their own function that does the same thing only gives the url you want. You can find it under includes/wpua-functions.php,
or just straight to the answer just do this…
get_wp_user_avatar_src($id_of_the_author, $int_size_of_the_image, $string_alignment);got it fixed line 24 of ryv-popup.php should read
include( RYV_POPUP_PLUGIN_DIR . ‘assets/edd/EDD_SL_Plugin_Updater.php’ );
and currently reads
include( dirname( __FILE__ ) . ‘EDD_SL_Plugin_Updater.php’ );
it is looking for the file in the wrong place.
Tried to install it and I get a fatal error though when I activate
[20-Feb-2017 16:28:11 UTC] PHP Warning: include(/wp-content/plugins/responsive-youtube-vimeo-popup/EDD_SL_Plugin_Updater.php): failed to open stream: No such file or directory in /wp-content/plugins/responsive-youtube-vimeo-popup/ryv-popup.php on line 24
Glad to hear it. I really appreciate it! Top Work!
David,
Love the plugin, but had the same issue I want to use it with multiple videos. Any word on your progress?
Forum: Plugins
In reply to: [MainWP Dashboard: Self-hosted WordPress Management for Agencies] Dead LinkFound another broken link. In the extensions section of the dashboard there is a button that read “Add an extension today” this links to https://mainwp.com/extensions but that then forwards to https://mainwp.com/extensions-changelog/ Looks like it should go to https://mainwp.com/mainwp-extensions/
The password field calls a function called swpsmtp_get_password, but it has something wrong with it. That makes the thing crash and stop executing the code. For some reason it just flat out does not work. BUT YOU CAN FIX IT! On line 403 of the plug you need to replace what is there with this…
if ( ! function_exists( 'swpsmtp_get_password' ) ) { function swpsmtp_get_password() { $swpsmtp_options = get_option( 'swpsmtp_options' ); $temp_password = $swpsmtp_options['smtp_settings']['password']; $password = ""; $decoded_pass = base64_decode($temp_password); return $decoded_pass; /* if (base64_encode($decoded_pass) === $temp_password) { //it might be encoded if(false === mb_detect_encoding($decoded_pass)){ //could not find character encoding. $password = $temp_password; } else{ $password = base64_decode($temp_password); } } else{ //not encoded $password = $temp_password; } return $password; */ } }After that will work just fine if you make sure to go in all your information from scratch. Then like magic it should work again. If you can’t see line numbers just look for “if ( ! function_exists( ‘swpsmtp_get_password’ ) ) {” and replace that chunk with what I gave you earlier. Hopefully this guy gets it fixed in his new release!