care2michelle
Forum Replies Created
-
Thank you for responding. Yes, it is the currently updated version. And yes, it’s also a multisite. I was able to activate the plugin on a subsite without any problems. Then when I tried to network activate it, it also worked. I’m not sure what changed, but it works now and that’s what matters. Thanks!
Forum: Plugins
In reply to: [Flipbox] Issues with latest WordPress update (6.5)Happy to leave a review.
Forum: Plugins
In reply to: [Flipbox] Issues with latest WordPress update (6.5)Thanks for working on it. That fixed it!
Forum: Plugins
In reply to: [Flipbox] Issues with latest WordPress update (6.5)Thanks for responding. I tried installing the Essential Blocks plugin, but that messed up all the formatting (spacing, font size etc.) on all my flipboxes. And it still doesn’t work when I try to edit the page. I get the same error message of ““Your site doesn’t include support for the Flipbox block. You can try installing the block, convert it to a Custom HTML block, or remove it entirely.”
Thanks for letting me know about the credentials issue unfortunately, I can no longer edit the original post, only my most recent one. I’m happy even to delete it altogether, but I don’t see a way to do that either.
thanks for the information about the limitations of the free plan. I’ll check out other options.- This reply was modified 8 months, 2 weeks ago by care2michelle.
It seems to be a caching issue…I see that you submitted a test submission.
It only shows up once, and then once the user has completed it, it doesn’t appear on any other pages – is that the design of the plugin? Is there a way to have it display on every page, even if the user has completed it on a different page?Forum: Fixing WordPress
In reply to: How to change the radius on single column within a columns block.I changed the css and it does seem to be working now. I’ll close the thread.
Forum: Fixing WordPress
In reply to: How to change the radius on single column within a columns block.I have temporarily removed the password lock. You can access the site here.
Forum: Fixing WordPress
In reply to: How to change the radius on single column within a columns block.Is there no way to change it without css?
I barely know anything about css, so I usually just search to find what someone else is doing. Here’s the css I’m using:// Add a custom CSS class to the columns block containing the column you want to style
add_filter( 'render_block_data', 'cwpai_add_custom_css_class_to_columns_block', 10, 2 );
function cwpai_add_custom_css_class_to_columns_block( $block_data, $block ) {
if ( $block['blockName'] === 'core/columns' && ! empty( $block['innerBlocks'] ) ) {
foreach ( $block['innerBlocks'] as $inner_block ) {
if ( $inner_block['blockName'] === 'core/column' ) {
// Add a custom CSS class to the column block
$block_data['attrs']['className'] .= ' cwpai-custom-columns-block';
break;
}
}
}
return $block_data;
} // Add custom CSS to the header of the website
add_action( 'wp_enqueue_scripts', 'cwpai_add_custom_css_to_header' );
function cwpai_add_custom_css_to_header() {
if ( is_singular() && has_block( 'core/columns' ) ) {
ob_start();
?>
<?php
$custom_css = ob_get_clean();
wp_add_inline_style( 'wp-block-library', $custom_css );
}
}Forum: Fixing WordPress
In reply to: How to change the radius on single column within a columns block.unfortunately, I do not. The site is password protected by my company. Here’s a link to a screenshot.
I apologize for the delay, I have been out of the office. I installed the new version today, but it’s still not working for me. It still doesn’t give me the menu option under appearance–> customize for Password Protected, only for Login Designer. So I still have no way to design the Password Protected login page apart from using code. It does add Password Protected to my main WordPress dashboard menu, but the options there do not allow for changing the appearance of the password protected login, other than the option to add text before and after the login. The styling options (logo, colors etc.) are not available in that menu, and Password Protected still doesn’t show up on the customization menu.
I’m using 8.0
I’ve had my host disable the plugin on my staging site, and now I’m able to login. They said it’s likely an individualized cookie that they need to exclude. We previously added a cache exclusion for bid_1_password_protected_auth
Is there a different one we should be using with multisite/beta version?
Thank you!
hmm…I changed the password, cleared the cache and tried again. It didn’t allow me to login with the new password, but the previous one it accepted (even though I cleared the cache).
Unfortunately, the plugin is no longer working. It will not allow me to login in. The password is correct, I’ve double checked that. But I cannot login. I have a development site and thought I’d try it on that one (since I can’t access my staging site). When I activate the plugin and try it in a private window, I cannot login. I do have WP Engine hosting, but they have disabled the cookie as you instructed.
- This reply was modified 1 year, 10 months ago by care2michelle.