• Resolved mackeelive

    (@mackeelive)


    Hello Nicolas,

    is it possible to add a social link for Bandcamp and a text field for a short description under the name.

    What are the possibilities to enlarge the profile picture? 75×75 or 100x100px.

    Thank you very much.

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

    (@undefinedfr)

    Hi @mackeelive

    We added Bandcamp icon in 1.4.4 version.
    For short description, we will add this feature in future.

    For now, you can do that :
    In functions.php in your theme (or child theme, if you use it) :

    if(defined('UNDFND_WP_LINKY_DOMAIN')) {
    add_filter(UNDFND_WP_LINKY_DOMAIN . '_view_path', function ($path, $partial) {
    if($partial == 'front/links')
    return get_template_directory() . '/linky/page.php';

    return $path;
    }, 10, 2);
    }

    This code allow to use a specific template for display links in page.
    Then you can create a new file in your theme : linky/page.php

    In this file, add this :
    <div class="links" style="padding: 30px 20px 10px 20px">Your short description</div>
    <?php
    require_once UNDFND_WP_LINKY_PLUGIN_DIR . 'views/front/links.php';

    And replace “Your short description” by your text.

    Plugin Author Undefined

    (@undefinedfr)

    For avatar size, you can check this topic

    • This reply was modified 1 year, 9 months ago by Undefined.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add Bandcamp Social & Short description’ is closed to new replies.