Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter wilsmithwp

    (@wilsmithwp)

    OW, the image is hosted on another URL, so this is not the website that gives me headaches. I am building the new one offline on a Xampp webserver.

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @wilsmithwp

    Does this issue occur with a default WP Theme such as 2020 or 2021?

    Regards,

    Thread Starter wilsmithwp

    (@wilsmithwp)

    Hi, happy Newyear! ((-;

    No, it is a sub-theme from e-commerce plus by ceylonthemes.
    I made a childtheme from it.

    Thread Starter wilsmithwp

    (@wilsmithwp)

    The sub-theme is Digital Shop.

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @wilsmithwp

    You change the field type from select to radio. Here’s a code snippet:

    add_filter("um_predefined_fields_hook","um_010422_change_field_type");
    function um_010422_change_field_type( $fields ){
        $fields['profile_privacy']['type'] = 'radio';
        $fields['profile_noindex']['type'] = 'radio';
        
        return $fields;
    }

    You can add the code to your theme/child-theme’s functions.php file or use the Code Snippet plugin to run the code.

    Regards,

    Thread Starter wilsmithwp

    (@wilsmithwp)

    Hello Champ Camba, that works!
    Many thanks or this code.
    Greetz
    Wil

    Thread Starter wilsmithwp

    (@wilsmithwp)

    or=for

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Thanks for letting us know.

    Regards,

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Account privacy dropdowns’ is closed to new replies.