hebhansen
Forum Replies Created
-
Forum: Plugins
In reply to: [GEO my WP] ErrorHi @ninjew
Plugin updated. Not sure if further action is required but map is still not loading backend in block theme editor. I am not sure if further action is required on my side?I just reviewed my API keys. Server side a billing issue, since card died. This is now sorted and server side tests positive.
Browser side. I am puzzled which APIs I need to enable. ChatGPT says:
- Maps Javascript
- Places
After doing this, map still does not render. This has been hanging for sooooo long, so any help thx
Forum: Plugins
In reply to: [LiteSpeed Cache] Cloudflare Turnstile enters 401 loopHi
Report generated: GLFKMFMANote: I do settings from main site for all sites. Report is generated from main site, where site with this current issue is not the main site.
This report is generated from the actual site: ZPKZTBYB
Until fix by plugin this does the trick:
/* Target add-topic form */
.bbp-topic-form .cf-turnstile {
float: right; /* float to the right */
margin-left: 16px; /* spacing from form fields */
margin-bottom: 16px; /* spacing below */
}
/* Optional: clear float after the captcha to avoid layout issues */
.bbp-topic-form::after {
content: "";
display: block;
clear: both;
}This targets topic form only. Correct css for plugin to fix and right align all bbpress is:
.bbp-form .cf-turnstile {
float: right;
margin-left: 16px;
margin-bottom: 16px;
}
.bbp-form::after {
content: "";
display: block;
clear: both;
}Can’t wait for the fix…..
Issue #2: Leaving a browser open over night, renders repeatedly like so.
Forum: Plugins
In reply to: [Complianz - Terms and Conditions] Errors constantly – load on initFix:
class Cmplz_TC_Config {
protected $label = __('Label Text', 'complianz-terms-conditions'); // ❌ early
}should change to:
class Cmplz_TC_Config {
protected $label;
public function __construct() {
add_action('init', function() {
$this->label = __('Label Text', 'complianz-terms-conditions'); // ✅ at init or later
});
}
}Forum: Plugins
In reply to: [Ollie Menu Designer] Shortcode does not renderThis did the trick for me in functions.php. Let me know if it conflicts with the solution you have applied. Note: this specifically triggers the shortcode amelia_menu_events. After next release I will test your solution.
// Allow shortcode inside Ollie navigation
add_filter('render_block', function($block_content, $block){
if (!empty($block['blockName']) && $block['blockName'] === 'core/navigation') {
if (has_shortcode($block_content, 'amelia_menu_events')) {
$block_content = do_shortcode($block_content);
}
}
return $block_content;
}, 10, 2);Forum: Plugins
In reply to: [Ollie Menu Designer] Insert search Icon into dropdown blockHi @mmcalister
That’s not the idea. Your menu items do not allow an icon, but only text, hence, text appears in menu. I have applied the search block inside the drop down mega menu for consistent behaviour across menus.Here is how to switch your “Search” text, adding an icon, aligning to menu and also removing the animated arrow next to the search icon. Adjust size and animation to your liking and add css in your child theme:
/* Make the menu item align vertically like other items */
.search-icon .wp-block-ollie-mega-menu__toggle {
display: flex;
align-items: center;
justify-content: center;
}
/* Hide the text but keep it accessible */
.search-icon .wp-block-navigation-item__label {
font-size: 0;
}
/* Insert the search icon */
.search-icon .wp-block-navigation-item__label::before {
content: "";
display: block;
width: 18px;
height: 18px;
flex-shrink: 0;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}
/* Hover effect */
.search-icon:hover .wp-block-navigation-item__label::before {
transform: rotate(90deg) scale(1.1);
}
/* Remove Ollie mega menu arrow only for search */
.search-icon .wp-block-ollie-mega-menu__toggle-icon,
.search-icon .wp-block-ollie-mega-menu__toggle .wp-block-ollie-mega-menu__toggle-icon svg {
display: none;
}For the particular search item w drop down in Ollie Menu, activate drop down and in block settings > Additional classes add “search-icon”.
Your welcomeForum: Plugins
In reply to: [Gutenberg] Adding Gutenberg to bbpressThx for your input. I will give it a revisit.
I had the impression in the process, that Gutenberg will never load in frontend and this is the reason blocks everywhere got stuck on an antique Gutenberg!?
If this is the case, further work is a waste. But let me know.
Forum: Plugins
In reply to: [Ollie Menu Designer] Shortcode does not renderhi @mmcalister
could you more specifically lead me to a block that renders Product Categories with featured image and title.
I have added the shortcode in the shortcode block if that’s what you mean
so where can I get latest for registered subscriber
Forum: Plugins
In reply to: [GEO my WP] Erroryes – I auto update to latest official release. I am on latest WP, tt5 theme, php 8.3. Problem persists.
thx, good tutorial. I believe I am on track…
Forum: Plugins
In reply to: [GD bbPress Attachments] Plugin crash site – Block theme TT5I appreciate it Milan. I will give it a try after new year and then we see. Thx
Forum: Plugins
In reply to: [Gutenberg] Gutenberg and Blocks Everywhere pluginok, I see and now I’m puzzled… How are you running 2 different Gutens on the same ww.wp.xz.cn install?
that could sound like a solution. Is the antique Guten also used for frontend comments?
Forum: Plugins
In reply to: [Gutenberg] Gutenberg and Blocks Everywhere pluginThx for elaborating. That’s exactly what I was looking for. Just an understanding of …. So I guess, there’s nothing to do than wait around. So this conclusion means that this site ww.wp.xz.cn uses an antiquated Gutenberg?
Dear Automatic – Please lift the editor I am currently editing in, into core bbpress/gutenberg thx