learntodesign
Forum Replies Created
-
I will do that. Thanks for the advice. You were a great help.
I would choose to leave it unmerged but it would be nice to get that increase in site speed.
Hi. Thanks for the quick response. I disabled JS merging and the warnings did go away, so thats what seems to be the issue. Any idea why merging the javascript files might give this warning? I would send a link to the site but it isn’t live yet.
This is the problematic function.
function pmpro_wp_mail_content_type( $content_type ) {
add_action(‘phpmailer_init’, ‘pmpro_send_html’);//change to html if not already
if( $content_type == ‘text/plain’)
{
$content_type = ‘text/html’;
}
return $content_type;
}
add_filter(‘wp_mail_content_type’, ‘pmpro_wp_mail_content_type’);Is there anyway I can disable this from my functions.php so that I can continue to receive updates without having to remove this function everytime?
Thank you Viruthagiri. It worked like a charm!
Forum: Plugins
In reply to: [BuddyPress Compliments] Pagination not working properlyI still have the same problem. Deactivating plugins did not help unfortunately.
Forum: Fixing WordPress
In reply to: Help with passing variable between functionsHi Giancarlo, thanks for the kind tip and reply. I wound up avoiding the use of global variables by simply reinstating the conditions for the amount in the second function as well. Thanks again
Forum: Plugins
In reply to: [BuddyPress Compliments] Showing compliments on user's profileHi thank you for the response. And not a problem. I am sure I can put something together myself.
I will leave you a good review ??
Forum: Plugins
In reply to: [Insert Pages] Shortcodes from inserted page not workingI saw another post with this problem and haven’t removed the_content filter by the way.
Forum: Plugins
In reply to: [BuddyPress Compliments] Showing compliments on user's profilePerhaps you can widgetize the plugin?
Forum: Fixing WordPress
In reply to: Trouble with wp_enqueue_scriptThank you. I finally realized that.
Forum: Plugins
In reply to: [BuddyPress User Info Widget] Linking avatar to profileJust to specify, I not only want to show members by role, but I would also like them to be randomized as well.
Have a wonderful day.
Forum: Plugins
In reply to: [BuddyPress User Info Widget] Linking avatar to profileI actually figured out how to do the above but is it possible to also randomize the users that appear? Right now they seem to be listed as alphabetical and I don’t see anywhere where the $type has been defined. I am sorry but I am new to this and I would appreciate any help/suggestion.
You have a wonderful plugin and thank you for your time.