Can I add user_meta that your plugin will recognize? I’ve got WooCommerce working with UltimateMember-registered users, so there shouldn’t be a reason I can’t also have your plugin work the same.
]]>Really Simple SSL warns me of a vulnerability, yet when I try to review it (through the page vulnerabilities-measures-overview), there is only “Sorry, you are not allowed to access this page.”.
I am the super admin of the site. Try with another admin, to no avail.
Tried the following as well :
function rsp_example_role_caps()
{
$role = get_role('administrator');
$role->add_cap('manage_security', true);
}
add_action('init', 'rsp_example_role_caps', 11);
Thanks for your help.
]]>Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 32768 bytes) in /home/tdfpat2019f/public_html/wp-includes/pluggable.php on line 1
After install plugin this error appears and the only way to make the site functional is deleting the plugin.
Any idea ?
wp last version
Thanks
]]>I’m discovering Gutenberg and I wanted to limit the block you can add on the front_page page’s type. Here’s a simple function I tried to implement as a simple test :
function my_theme_name_allowed_block_types( $allowed_block_types, $post ) {
if ( is_front_page() ) {
var_dump('This should work');
return array(
'core/block',
'core/paragraph'
);
}
else {
return $allowed_block_types;
}
}
add_filter( 'allowed_block_types', 'my_theme_name_allowed_block_types', 1, 2 );
In order to know if the function is well declared and called, I used a var_dump, and it well appears when I’m on my front page editor in the back office. However the filter doesn’t seem to work at all, since every blocks remain still available when I try to add one in the content input.
Did I do anything wrong ?
Thank you in advance.
]]>[2019-06-30 20:31:35] ERROR: Form 29 > Mailchimp API error: 405 Method Not Allowed. This list member cannot be removed. Please contact support.
Request: DELETE https://us20.api.mailchimp.com/3.0/lists/de4ac6f42b/members/a1ef5c140136a9c8099e90b956885e89
Response: 405 Method Not Allowed - {"type":"https://developer.mailchimp.com/documentation/mailchimp/guides/error-glossary/","title":"Method Not Allowed","status":405,"detail":"This list member cannot be removed. Please contact support.","instance":"46b1adc5-8121-4301-b591-4dfac73401dd"}
I’ve noticed it happens to me when I try to subscribe when I already have confirmation email that I ignored, but it also happens to other first-time subscribers.
Why does the plugin try to delete users anyway?
]]>[13-Mar-2019 08:05:53 UTC] WordPress database error Got a packet bigger than ‘max_allowed_packet’ bytes for query DELETE FROM as_wp_options WHERE option_name IN (‘wpsessionexpiresd86707fb1df932def631873b23ad4b4d’,’_wp_session_07fb1df932def631873b23ad4b4d’,’wpsessionexpires89450916babeafb4ea1d57676bbfb842′,’_wp_session_0916babeafb4ea1d57676bbfb842′,’wpsessionexpiresb2e8ae3198dd88ce172553541c9e7325′,’_wp_session_ae3198dd88ce172553541c9e7325′,’wpsessionexpires5de8bba9ccea1d6f20e04f982f2f4821′,’_wp_session_bba9ccea1d6f20e04f982f2f4821′,’wpsessionexpires2b6126924033b0521ab5c556f45396c8′,’_wp_session_26924033b0521ab5c556f45396c8′,’wpsessionexpiresc28724d4ea4edf38522e2ccef67d3f5c’,’_wp_session_24d4ea4edf38522e2ccef67d3f5c’,’wpsessionexpiresa6ac66bdc4cb1665ee9fcd015d24eb77′,’_wp_sessio
Are you able to let me know why it is being created and how to stop it as its keeps filling up our website and we have to delete it each day.
Thanks
Rowena