Perfect, thank youThat will get it working again.
Please take a backup before installing this version, that way if something goes wrong you can restore to a working point!!!
Should be good to go with XF 2.2 Only thing you need to do is turn off the polls in the node(s) under the setting "Allowed thread types" for the movie forums.
Support for Xon's multi prefix addon.
Bella Donna (1981)
, I'd like to see an option to prepend the artist to end up with Stevie Nicks - Bella Donna (1981)
as the title./src/addons/Snog/Music/XF/Pub/Controller/Forum.php
$title = $albumTitle;
if ($this->options()->musicthreads_useyear)
{
$year = '';
if ($releasedate) $year = ' (' . $releasedate . ')';
$title .= $year;
}
if (isset($artist)) {
$title = $artist . ' - ' . $title;
}
Request: There is an option to append the release year to the title, please add an option to prepend the artist in the title. Current, for example, Stevie Nick's "Bella Donna" album from 1981 can get a title ofBella Donna (1981)
, I'd like to see an option to prepend the artist to end up withStevie Nicks - Bella Donna (1981)
as the title.
Shoot me off a PM if a donation would help getting this as a stock option so I don't have to track a manual change.
For anybody else interested, and wants to do the same..../src/addons/Snog/Music/XF/Pub/Controller/Forum.php
Line 413 (of the current version as of today), find...... and insert below it:Code:$title = $albumTitle; if ($this->options()->musicthreads_useyear) { $year = ''; if ($releasedate) $year = ' (' . $releasedate . ')'; $title .= $year; }
Code:if (isset($artist)) { $title = $artist . ' - ' . $title; }
![]()
![]()
Now That Ive got your attention:
This is a beta release, take a full backup before installing on a production site. Optimally try it out on a test site that is a replication of your live site before installing on the live site. It has had limited testing.
[H2]Changes:[/H2]
- General code...
![]()
![]()
Now That Ive got your attention:
This is a beta release, take a full backup before installing on a production site. Optimally try it out on a test site that is a replication of your live site before installing on the live site. It has had limited testing.
2.2.0 Beta 2:
Fixed "undefined method...
@media only screen and (max-width: 430px) and (min-width: 260px) {
.message-music {
display: flex;
width: 100%;
padding-top: 10px;
overflow: hidden;
flex-direction: column;
align-items: center;
}
}
@media only screen and (max-width: 430px) and (min-width: 260px) {
.message-movie {
display: flex;
width: 100%;
padding-top: 12px;
overflow: hidden;
flex-direction: column;
align-items: center;
}
}
That worked, and I managed to apply it to music too.This should get you started and is what I use on my Music and Movies site: add to your extra.less file.
For music:
Code:@media only screen and (max-width: 430px) and (min-width: 260px) { .message-music { display: flex; width: 100%; padding-top: 10px; overflow: hidden; flex-direction: column; align-items: center; } }
For Movies:
Code:@media only screen and (max-width: 430px) and (min-width: 260px) { .message-movie { display: flex; width: 100%; padding-top: 12px; overflow: hidden; flex-direction: column; align-items: center; } }
You can play around with poster and album image sizes to add more visual appeal.
Added covers carousel widget
New features:
Split user lists using tabs
Changes:
Fixed XF 2.3 image optimization support
Fixes:
Fix: avoid errors on sorting album track data
Fix: optimize upgrade step for large forums
Fix: mobile responsive view
Feature: support "General discussion"
Fix: avoid "Undefined array key" error when posting music with incorrect video link in track list
We use essential cookies to make this site work, and optional cookies to enhance your experience.