• Hello !
    It’s a great extension but I’ve got a problem. The overlay mode won’t work and Firefox gives me 2 errors.
    Maybe it’s related.

    Horodatage?: 22/10/2012 21:39:15
    Erreur?: TypeError: $("ul.music").MRCinfo is not a function
    Fichier Source?: https://blog.dabeuliou.com/wp-content/plugins/my-record-collection/js/mrc_scripts.js?ver=3.4.2
    Ligne?: 10

    And

    Horodatage?: 22/10/2012 21:39:15
    Erreur?: TypeError: $ is not a function
    Fichier Source?: https://blog.dabeuliou.com/wp-content/plugins/my-record-collection/js/mrc_scripts.js?ver=3.4.2
    Ligne?: 116

    The page is here : https://blog.dabeuliou.com/?page_id=1066

    https://www.ads-software.com/extend/plugins/my-record-collection/

Viewing 1 replies (of 1 total)
  • Thread Starter BruceFeuillette

    (@brucefeuillette)

    Ok, I got it sorted at least !

    In mrc_scripts.js, line 110 or 115 you had this

    var MRCsettings = {
    	onEachRow: null,
    	tt: $('#MRC_info_tooltip')
    };
    
    (function( $ ){
    
    	var methods = {

    It must be

    (function( $ ){
    
    var MRCsettings = {
    	onEachRow: null,
    	tt: $('#MRC_info_tooltip')
    };
    	var methods = {

    I’ve tweaked it a little bit to handle CDr and DVDr.
    You can edit my-record-collection.php and edit line 129 to be this

    $cd=array("CD","CDr","DVD","DVDr");
    if(in_array($rec->f_name,$cd)){

Viewing 1 replies (of 1 total)
  • The topic ‘Overlay mode don't work’ is closed to new replies.