• Resolved zsolt

    (@zsolt82)


    Hello

    The plugin is very good

    1. The window popup model disappears behind the theme, so you cannot write in it.

    2. I would like the window to be extendable.

    3. I would like to place it on the left side.

    I appreciate your help.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Jordy Meow

    (@tigroumeow)

    Hi @zsolt82,

    1. Are you using the latest version? The z-index of the chatbot is very high when it’s in the popup, so it should really be above everything. But that’s only the case since version 0.2.9. Are you using this one?
    2. You mean, to be full-screen? If yes, that’s doable, and that would be excellent on mobile too. However, if you mean resizable, I don’t think I would do it; it would create too many side issues (which is maybe why the chatbot I often see are fixed).
    3. Yes, I made it so, so that the CSS is easy to modify. You should add this CSS in your theme/WP:
    .mwai-window {
        right: inherit !important;
        left: 20px;
    }
    
    .mwai-open-button {
        right: inherit;
        left: 10px;
    }
    Thread Starter zsolt

    (@zsolt82)

    Hello

    1. I have updated it now, thank you
    2. Thank you
    3. 3. yes. You mean, to be full-screen? If yes, that’s doable, and that would be excellent on mobile too.

    Furthermore, the window could open automatically, e.g. 5 seconds

    Thank you

    Plugin Author Jordy Meow

    (@tigroumeow)

    Hi @zsolt82,

    Just released a new version! You can add fullscreen now! In the shortcode, it’s simply fullscreen=”true”. If it’s used with the window=”true”, it will be fullscreen when clicked. If no window, it’s fullscreen right away.

    Then, to open the window 5sec later, you’ll need to add some code in your WordPress. Everything is doable with AI Engine, we can hook everywhere in it, I made it so ??

    Here is how to do it:

    add_filter( 'mwai_chatbot', function( $content, $params ) {
    	$id = $params['id'];
    	ob_start();
    	?>
    	<script>
    		setTimeout(() => {
              var chat = document.querySelector('#mwai-chat-<?= $id ?>');
              chat.classList.add('mwai-open');
            }, 5000);
    	</script>
    	<?php
    	$output = ob_get_contents();
        ob_end_clean();
    	return $content . $output;
    }, 10, 2);
    
    

    If you don’t know how to add custom code to your WP, I explain it here: https://meowapps.com/add-custom-php-code-wordpress/

    Let me know if it works ??

    Thread Starter zsolt

    (@zsolt82)

    Hello

    Of course, I know how to insert the code snippets, either by writing function.php or a plugin

    Full screen mode on desktop is not good. window cannot be closed.

    Also, I thought it was up to the user to decide if they wanted full screen mode.

    Opening the window automatically works perfectly fine

    Thanks

    Plugin Author Jordy Meow

    (@tigroumeow)

    Hi @zsolt82,

    Full screen mode on desktop is not good. window cannot be closed.

    It does work ?? The cross to close the window is at the top right. Please give me a link to your website.

    Also, I thought it was up to the user to decide if they wanted full screen mode.

    Okay, so let’s say we add window and fullscreen in the shortcode. One click would simply open the chatbot in small, in the corner, and there would be an icon to make it fullscreen ? Let me know.

    Opening the window automatically works perfectly fine

    Super ?? Don’t hesitate to leave me a little review if you have some time, it helps a lot, I am spending my days and nights on this. Thank you!

    Thread Starter zsolt

    (@zsolt82)

    Hi

    It should be there, but the template covers it?
    https://zsizso.hu/

    yes: Okay, so let’s say we add window and fullscreen in the shortcode. One click would simply open the chatbot in small, in the corner, and there would be an icon to make it fullscreen ? Let me know.

    Lots of ideas swirling around in my head.

    An example: I’m thinking of adding an ad site to help users post an AI ad.

    If you’re interested, I’ll tell you what ideas come to mind

    • This reply was modified 2 years, 2 months ago by zsolt.
    Plugin Author Jordy Meow

    (@tigroumeow)

    It should be there, but the template covers it

    The CSS I wrote for the chatbot is clean, so if everything is fine, it should be at the top right. However, of course, depending on your theme, the styles used by it, and potentially other plugins, that might change. There is no choice but to override some of the CSS by yourself.

    yes

    Okay, I think it’s better, so I’ll do in 2-3 releases (I have a few other tasks before this).

    If you’re interested, I’ll tell you what ideas come to mind

    Of course! I am always ?? I have a lot of ideas too, my friends also, and a lot of my users. So I am trying to gather everything to craft the perfect direction for the plugin. The idea is to keep it easy and extremely clean, while giving the possibilities to do (almost) everything). Lot of work ??

    Thread Starter zsolt

    (@zsolt82)

    All right

    Thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘The window popup model window does not work well.’ is closed to new replies.