• I’m a wordpress noob.

    This is my test site: https://chise2.byethost9.com/

    I can’t get bandcamp embed/widgets to work properly on this theme. Can’t click on tracks, can’t change songs. Also, i want to remove the scroll bar, make the player taller, but the theme forces the embed/widget to be that height (i tried to change it to no avail).
    Any help is much appreciated. Thank you.

    [ Please do not bump, that’s not permitted here. ]

Viewing 10 replies - 1 through 10 (of 10 total)
  • Which plugin are you using? the WP BandCamp?

    Would you provide me an album and an ID so I can try it on my theme development site??

    Thread Starter suprakarma

    (@suprakarma)

    I tried with both the WP Bandcamp widget and the embed code from the Bandcamp site.
    One album id: 463423256

    Thanks.

    Thread Starter suprakarma

    (@suprakarma)

    The height of the embeded player is set by the plugin author, you can change it in the file wp-bandcamp/components/general.php from the Editor under the Plugins panel. In the file, there is a function called “function wp_bandcamp_player_dimensions ( $size = null )” you can change the width and height from there.

    As for song tracks not clickable, I found this post, https://www.ads-software.com/support/topic/plugin-wp-bandcamp-songs-from-album-not-clickable talking about the same thing, maybe you should follow that thread ??

    Thread Starter suprakarma

    (@suprakarma)

    Thanks Danni, but I can’t change the height or width, no matter what numbers i put. At least if the tracks were clickable, all would be well.
    The thing is that if i add an album with less tracks (and the height of the player doesn’t force the appearance of the scroll bar), then i can click the tracks… So i think the height, and the scroll bar, are related to the unclickable tracks.

    try add this to the end of style.css of the pilot fish theme:

    /*	BandCamp Player	*/
    .widget_bandcamp_player iframe {
    	height: 650px !important;
    }

    Thread Starter suprakarma

    (@suprakarma)

    No result. Somehow i made the tracks clickable. But the height is still unchangeable.

    BlackChicken

    (@blackchicken)

    Danni post above works. Go to wp-bandcamp/components/general.php under the editor tab. Click edit next to the bandcamp widget. Change the dimensions below.

    $dimensions = array (
    ‘venti’ => array(400,100),
    ‘grande’ => array(300,100),
    ‘grande2’ => array(300,355),
    ‘grande3’ => array(300,485),
    ‘tall’ => array(150,295),
    ‘tall2’ => array(150,450),
    ‘short’ => array(46,23)
    );
    return strlen($size) ? $dimensions[$size] : $dimensions;

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘[Theme: Pilot Fish] Bandcamp embed doesn't work’ is closed to new replies.