• Resolved thiartj

    (@thiartj)


    Good day, I installed Buttonizer today on 2 websites. On one of the websites it works fine (Astra Theme) and the other the Group Style Colors is not selectable (i-Craft Theme). I posted a video of this behaviour at https://www.hdcabling.co.za/wp-content/uploads/2020/02/2020.02.10-18.56.mp4

    Please advise if I can change colors directly in the DB and which table is this stored ? If possible I can then copy the color code I need to the specific row value if problem is not known.

    • This topic was modified 4 years, 9 months ago by thiartj.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Buttonizer

    (@buttonizer)

    Hi @thiartj,

    Thanks for the video and all the information!
    It made it quite easy to find out what’s causing the issue.

    The i-Craft theme has a CSS that sets the color picker’s visibility to hidden.

    You can add this into your Functions.php to make Buttonizer’s color picker visible again:

    add_action('admin_head', 'buttonizer_color_picker');
    
    function buttonizer_color_picker() {
      echo '<style>
        .buttonizer-input-container.is-color-picker .popup {
            opacity: 1;
            visibility: visible;
    	height: auto;
        } 
      </style>';
    }

    Please let us know if this works for you! ??

    Thread Starter thiartj

    (@thiartj)

    Great thanks! It works ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Group Style Colors not Selectable’ is closed to new replies.