Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • We tried almost all of the suggested fixes. this is the solution that worked for us: We are running on budget cpanel hosting, running php 7.2 and using the latest version of wordpress 5.4. Our hosts had switched the php manager without telling us.

    In our case, ImageMagick (part of php) is causing the problem. So, i just added this lines to functions.php to tell WordPress to use GD editor instead.

    function use_gd_editor($array) {
    return array( ‘WP_Image_Editor_GD’, );
    }
    add_filter( ‘wp_image_editors’, ‘use_gd_editor’ );

    • This reply was modified 4 years, 7 months ago by ahcreative.

    We tried almost all of the suggested fixes. this is the solution that worked for us: We are running on budget cpanel hosting, running php 7.2 and using the latest version of wordpress 5.4. Our hosts had switched the php manager without telling us.

    In our case, ImageMagick (part of php) is causing the problem. So, i just added this lines to functions.php to tell WordPress to use GD editor instead.

    function use_gd_editor($array) {
    return array( ‘WP_Image_Editor_GD’, );
    }
    add_filter( ‘wp_image_editors’, ‘use_gd_editor’ );

    Hello. I am using the Cubepoints widget and wanted the usernames to link to their Author Page. Using the code above generates a link with the username but with a space inbetween the name (If the user has chosen a username with a space in it)

    For example i use the following in the widget:
    %username%

    Generates a link like this:
    /author/joe bloggs/

    Which when clicked links to a page that doesnt exist:
    /author/joe%20bloggs/

    So rather than adding %20 in the space – is it possible to correct this so that it adds a dash?
    eg:
    /author/joe-bloggs/

    ahcreative

    (@ahcreative)

    Me too after last update:
    “WordPress Link Manager is inactive. To take full advantage of Link Library in WordPress 3.5 or higher, please install and activate the Link Manager Plugin.”

Viewing 4 replies - 1 through 4 (of 4 total)