• Resolved libertov2019

    (@libertov2019)


    Good afternoon from Spain!!!

    Regarding floating botton seetings I would like consult if it’s possible to show a text (“Cookies”) instead of an icon, or as alternative to keep always visible the text showed when you pass the mouse. If the user see only the icon doesn’t understand that this icon is an option to check cookies settings.

    Thanks a lot for your help!!!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Moove Agency

    (@mooveagency)

    Hi @libertov2019,

    Thanks for using our plugins.

    You can add the following code snippet to your functions.php

    add_action('moove_gdpr_inline_styles','gdpr_cookie_floating_button_style',10,3);
    function gdpr_cookie_floating_button_style( $styles, $primary, $secondary ) {
      ob_start();
      ?>
      #moove_gdpr_save_popup_settings_button span.moove_gdpr_text {
        display: block;
        padding: 0 15px;
        cursor: pointer;
      }
      #moove_gdpr_save_popup_settings_button span.moove_gdpr_icon {
        display: none;
      }
      <?php
      $styles .= ob_get_clean();
      return $styles;
    }

    Hope this helps.

Viewing 1 replies (of 1 total)

The topic ‘floating button’ is closed to new replies.