pwizard
Forum Replies Created
-
Here you go
Mailer: postsmtp HostName: musicwizardacademy.com cURL Version: 7.81.0 OpenSSL Version: OpenSSL/1.1.1n OS: Linux cloud141.hostgator.com 4.19.150-76.ELK.el6.x86_64 #1 SMP Wed Oct 7 01:34:10 CDT 2020 x86_64 PHP: Linux 7.4.28 C PHP Dependencies: iconv=Yes, spl_autoload=Yes, openssl=Yes, sockets=Yes, allow_url_fopen=Yes, mcrypt=No, zlib_encode=Yes WordPress: Multisite 6.0.1 en_US UTF-8 WordPress Theme: Divi Campus WordPress Plugins: Dynamic Widgets, GamiPress - LearnPress integration, GamiPress - Vimeo integration, GamiPress, Insert PHP Code Snippet, LearnPress - Certificates, LearnPress, Monarch Plugin, Post SMTP, s2Member Pro, s2Member Framework, Say What?, WP Symposium Pro (Extensions), WP Symposium Pro Core, WP Tab Widget WordPress wp_mail Owner: /home2/wizard22/public_html/wp-content/plugins/post-smtp/Postman/PostmanWpMailBinder.php WordPress wp_mail Filter(s): c_ws_plugin__s2member_email_configs::email_filter, PostsmtpMailer->get_mail_args WordPress wp_mail_from Filter(s): wordfence::fixWPMailFromAddress WordPress phpmailer_init Action(s): fix_phpmailer_messageid Postman: 2.1.3 Postman Sender Domain (Envelope|Message): musicwizardacademy.com | musicwizardacademy.com Postman Prevent Message Sender Override (Email|Name): Yes | Yes Postman Active Transport: SendGrid API (https://api.sendgrid.com:443) Postman Active Transport Status (Ready|Connected): Yes | Yes Postman Deliveries (Success|Fail): 1920 | 13 Postman TCP Timeout (Connection|Read): 30 | 120 Postman Email Log (Enabled|Limit|Transcript Size): Yes | 250 | 12800000It would be virtually impossible to determine this, or would take a long long time. The error is intermittant, I don’t know what triggers it. With a log of plugins, it is time consuming.
Do you have any feedback on what this error might refer to? What it might mean?
Rolled back PHP, no change, same error.
Tried that. Has not resolved the issue. (want to make it clear it appears site still runs, just the error is in the log)). So I don’t know if this is working as it should.
I see your update today resolved this. It looks good. Thank you.
@brianvu-tp Do you have a screenshot? I don’t ave an X button.
I updated today and can confirm it is resolved. Thanks again guys.
Good to hear. Thank you.
That makes sense. I do have that shortcode on those pages. I have a ticket with DIVI too. Please let me know if you find something before I do.
Did you turn on error checking to see if you get the same error as I do? The error should show right on your screen if error checking is on so you don’t need the logs.
- This reply was modified 4 years, 10 months ago by pwizard.
Thank you Ruben. It works perfeftly now for WPSymposium with that one simple change (wps_profile_link). Appreciate the help.
function my_prefix_disable_buddypress_link_on_earners_list( $output, $user_id, $post_id, $args ) { $user = get_userdata( $user_id ); return '<li><a href="' . wps_profile_link( $user_id ) . '">' . get_avatar( $user_id ) . $user->display_name . '</a></li>'; } // Customize link on achievement earners list add_filter( 'gamipress_get_achievement_earners_list_user', 'my_prefix_disable_buddypress_link_on_earners_list', 10, 4 ); // Customize link on rank earners list add_filter( 'gamipress_get_rank_earners_list_user', 'my_prefix_disable_buddypress_link_on_earners_list', 10, 4 );What you CAN tell me is this:
Does the BUDDYPRESS function code show the avatar AND the user’s name below the Avatar (like your default method)…but all links to the buddypress profile page? I don’t know much coding but looking that this it appears is does NOT show the user’s name.
Then I will know that if it doesn’t then the buddypress solution is not a complete solution and that I already have your function working as you intended it not expecting anything more from it.
- This reply was modified 5 years, 1 month ago by pwizard.
Ruben
They tell me the same thing to contact author of gamipress. Anyway, I got it to work almost as is, just changing bp_core part to “wps_profile_link”.
return '<li><a href="' . wps_profile_link( $user_id ) . '">' . user_avatar( $user_id ) . '</a></li>';It shows the Avatar and it clicks through to the Profile page. But the USER’s name does not appear below the Avatar. Is that the same way it works with the bbpress code?
If not, can you tell me how to change the 2nd line to include the person’s name in the href link? (assuming it is “wps_name” for example.) I can figure out the call for the name, but don’t know how to program it with commas and quotation marks.
I appreciate it.
Vincent
- This reply was modified 5 years, 1 month ago by pwizard.
Ruben
I mentioned on another post here that we use WPSymposium Pro which is a BuddyPress clone, and you don’t support it.
Do you know of that code is only one thing needs to be changed such as “bp_core_get_user_domain” to get it to work with WPS?
It is similar in that is uses a Profile page.
Thanks
Well I got it partially working anyway. Like facebook and buddypress there are “activity posts”.
Publish a new posts of a type (select ACTIVITY from dropdown) does work at least.
Thank you