Your Time:
Our Time:
← Back to discussions

Some bug fixing

Need help with a different issue? Search the forums or open a new ticket.
Open a support ticket

This topic has 1 reply, 1 voice, and was last updated 11 years, 1 month ago by Artem.

  • 2015-07-09 at 5:32 pm
    Support Expired
    #8548
    Artem
    Participant
    • Topics: 4
    • Replies: 6
    • Total posts: 10
    • Post count: 13

    Hi, I found some issues in new release and it came from previous versions.

    1. Icon bg for social network VK.com
    Add string into file ‘/musicplay/style.css’
    [1362] ul.atpsocials li.vk:hover { background-color:#4c75a3; }

    2. Sorting artists issue
    Add strings into file ‘/musicplay/framework/shortcode/music_artist.php’

    [31] $orderby = get_option('atp_artist_orderby') ? get_option('atp_artist_orderby') : 'date';
    [32] $order   = get_option('atp_artist_order') ? get_option('atp_artist_order') : 'ASC';
    

    3. Contact Info Widget (remoove ‘http://’ from text)
    Change string [69] in file ‘/musicplay/framework/widgets/contactinfo.php’

    [69] [before] echo '<p><span class="icon"><i class="fa fa-link"></i></span><span class="details"><a href="'.esc_url($syscontact_websiteurl).'">'.esc_url($syscontact_websiteurl).'</a></span></p>';
    [69] [after]  echo '<p><span class="icon"><i class="fa fa-link"></i></span><span class="details"><a href="'.esc_url($syscontact_websiteurl).'">'.$syscontact_websiteurl.'</a></span></p>';

    4. Artist’s birth date in text format
    Change string [29] in file ‘/musicplay/musicband/artists/artist-meta.php’

    [29] [before] 'type'	=> 'dateformat',
    [29] [after]  'type'	=> 'text',

    Comment or remove strings in file ‘/musicplay/musicband/artists/single-artists.php’

    [73] //if(is_numeric($artist_born_date)){
    [74] //	$artist_born_date= date_i18n($default_date,$artist_born_date);
    [75] //}

    In next my post: some css tweaks and issues.

    • This topic was modified 11 years, 1 month ago by Artem.
    2015-07-09 at 6:16 pm
    Support Expired
    #8550
    Artem
    Participant
    • Topics: 4
    • Replies: 6
    • Total posts: 10
    • Post count: 13

    CSS issues

    1. In dark.css hardcoded yellow color #ffc000. Theme color from options is ignored. Also change strings there

    [197] [before]	color: #111111;
    [197] [after]	color: #ffffff;

    and

    [204] [before]	color: rgba(0, 0, 0, 0.4)
    [204] [after]	color: rgba(255, 255, 255, 0.75)

    2. Color of title on artists page is grey. Just add strings into ‘dark.css’

    .artist-list .entry-title,
    .gallery-desc .entry-title > a { color:#ffffff; }

    3. Remove hardcoded color of the links in albums-meta in ‘style.css’

    [2123] [before] .album-mdata a {display: block; outline: none; color:#01749F;}
    [2123] [after] .album-mdata a {display: block; outline: none;}

    If I find something more, I’ll write about it in this topic

You must be logged in to reply to this topic.