Forum Replies Created

Viewing 15 replies - 1 through 15 (of 878 total)
  • Forum: Plugins
    In reply to: [GEO my WP] Error
    Thread Starter hebhansen

    (@hebhansen)

    Hi @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

    Thread Starter hebhansen

    (@hebhansen)

    Hi
    Report generated: GLFKMFMA

    Note: 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

    Thread Starter hebhansen

    (@hebhansen)

    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…..

    Thread Starter hebhansen

    (@hebhansen)

    Issue #2: Leaving a browser open over night, renders repeatedly like so.

    Thread Starter hebhansen

    (@hebhansen)

    Fix:

    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
    });
    }
    }
    Thread Starter hebhansen

    (@hebhansen)

    This 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);
    Thread Starter hebhansen

    (@hebhansen)

    Hi @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 welcome

    Thread Starter hebhansen

    (@hebhansen)

    @pouyaebrhm

    Thx 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.

    Thread Starter hebhansen

    (@hebhansen)

    hi @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

    Thread Starter hebhansen

    (@hebhansen)

    so where can I get latest for registered subscriber

    Forum: Plugins
    In reply to: [GEO my WP] Error
    Thread Starter hebhansen

    (@hebhansen)

    yes – I auto update to latest official release. I am on latest WP, tt5 theme, php 8.3. Problem persists.

    Thread Starter hebhansen

    (@hebhansen)

    thx, good tutorial. I believe I am on track…

    Thread Starter hebhansen

    (@hebhansen)

    I appreciate it Milan. I will give it a try after new year and then we see. Thx

    Thread Starter hebhansen

    (@hebhansen)

    @dd32

    ok, 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?

    Thread Starter hebhansen

    (@hebhansen)

    Hi @bernhard-reiter

    Thx 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

Viewing 15 replies - 1 through 15 (of 878 total)