• Resolved isa64

    (@isa64)


    Hello,

    I changed my database informations and the font customizr is not working anymore since this change.
    My site : my test site
    In the customizr, the fonts are well dsiplayed (Oswald and Droid) but not on the site.
    Maybe there’s something to change in the the tables to make it work again.

    Thanks for your help

    # SITE_URL: https://tourisme-pays-de-bidache.com/2015
    # HOME_URL: https://tourisme-pays-de-bidache.com/2015
    # IS MULTISITE : No

    # THEME | VERSION : customizr | v3.3.15# WP VERSION : 4.1.1
    # PERMALINK STRUCTURE : /%postname%/

    # ACTIVE PLUGINS :
    Admin Log: 1.44
    Advanced Access Manager: 2.8.5
    Akismet: 3.1.1
    BackWPup: 3.1.4
    Black Studio TinyMCE Widget: 2.2.3
    Contact Form 7: 4.1.1
    Contact Form 7 – Dynamic Text Extension: 1.2
    HTML Editor Syntax Highlighter: 1.6.7
    ImageInject: 1.12
    InfiniteWP – Client: 1.3.12
    Jetpack by WordPress.com: 3.4.1
    Meta Slider: 3.3.1
    Newsletter: 3.7.2
    PHP Code Widget: 2.2
    Polylang: 1.7.3
    Really Simple CAPTCHA: 1.8.0.1
    Regenerate Thumbnails: 2.2.4
    Shortcodes Ultimate: 4.9.6
    Simple Login Log: 1.1.0
    UpdraftPlus – Backup/Restore: 1.9.63
    WordPress Importer: 0.6.1
    WP Google Maps: 6.1.5
    WP Lightbox 2: 3.0.3

    PHP Version: 5.4.38
    MySQL Version: 5.1.73-2+squeeze+build1+1-log
    Web Server Info: Apache

    WordPress Memory Limit: 40MB
    PHP Safe Mode: No
    PHP Memory Limit: 256M
    PHP Upload Max Size: 64M
    PHP Post Max Size: 64M
    PHP Upload Max Filesize: 64M
    PHP Time Limit: 300
    PHP Max Input Vars: 16000
    PHP Arg Separator: &
    PHP Allow URL File Open: Yes
    WP_DEBUG: Disabled

    Show On Front: page
    Page On Front: Accueil FR (#68)
    Page For Posts: (#0)

Viewing 13 replies - 1 through 13 (of 13 total)
  • Mmm, I can see them.
    Have you tried to clean your browser’s cache?

    Thread Starter isa64

    (@isa64)

    Thanks for your reply.

    Yes, I tried… with no visible effect ! Same thing with Firefox, Chrome or IE.

    There was an update to the theme on 04/12/2015. Please update the theme to the most recent version: 3.3.18

    Thread Starter isa64

    (@isa64)

    Thanks for your reply Robbie.
    In the WordPress Repository, the last update is on 04/04/2015
    I don’t see the update you’re speaking of…

    The update isn’t live yet (means theme reviewers didn’t have deployed it).
    Anyway, dunno .. what could be.. which s.o. are you using?

    Thread Starter isa64

    (@isa64)

    I saw it on Github…

    What do you mean by ” which s.o. are you using? ”

    You should still update to the latest version available. 3.3.15 is 2 versions back and your issue is most likely addressed by an update.

    Thread Starter isa64

    (@isa64)

    The last update proposed on www.ads-software.com (and in my dashboard) is 3.3.15
    Where do I find the very LAST update ?

    https://downloads.www.ads-software.com/theme/customizr.3.3.19.zip

    Anyway, I don’t think has been resolved.. I mean I cannot see any issue, I can see those fonts loaded and working, for titles for example:
    https://i57.tinypic.com/2aje3pg.jpg
    but also for the menu items.

    Am I wrong? Not unlikely ??

    Thread Starter isa64

    (@isa64)

    The fonts in your image is not Oswald.
    I realise the change, when I changed my datbase.
    Do you know if it could be somewhere in the option table that the change is not made ?

    But what are you talking about when you talk about “database”. The change is made, the option is working, the problem is that the font isn’t retrieved from google.
    But the “src” path of the google font isn’t saved in the database, the part saved in the database is the option, the same from which the correct font family in the css is generated.
    So the problem is elsewhere, I don’t know why you have this stuff:

    <link rel='stylesheet' id='tc-gfonts-css'  href='//fonts.googleapis.com/css?ver=68e49a7dcdc5d6b3b7e5ccd3ab760db4' type='text/css' media='all' />
    <link rel='stylesheet' id='contact-form-7-css'  href='https://tourisme-pays-de-bidache.com/2015/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=1b698f436efc95e9bf8c25d2de6e1b76' type='text/css' media='all' />
    <link rel='stylesheet' id='wp-lightbox-2.min.css-css'  href='https://tourisme-pays-de-bidache.com/2015/wp-content/plugins/wp-lightbox-2/styles/lightbox.min.css?ver=6d64b8ae6b3ad9b6a0b8db7eace68c05' type='text/css' media='all' />
    <link rel='stylesheet' id='customizr-common-css'  href='https://tourisme-pays-de-bidache.com/2015/wp-content/themes/customizr/inc/assets/css/tc_common.css?ver=a48ba54e30155f44695fcc7224330b1a' type='text/css' media='all' />
    <link rel='stylesheet' id='customizr-skin-css'  href='https://tourisme-pays-de-bidache.com/2015/wp-content/themes/customizr/inc/assets/css/orange.css?ver=a48ba54e30155f44695fcc7224330b1a' type='text/css' media='all' />

    in your source page.

    As you can see here:
    <link rel='stylesheet' id='tc-gfonts-css' href='//fonts.googleapis.com/css?ver=68e49a7dcdc5d6b3b7e5ccd3ab760db4' type='text/css' media='all' />

    mah.

    Anyway do you want to know the wp table? wp-options. The option name is tc_theme_options

    Thread Starter isa64

    (@isa64)

    YES !!!

    I had this in my functions.php.
    It’s to hide the plugins versions.
    When I disable this lines, it works !

    function supprimer_versions( $src ){
    $parts = explode( '?', $src );
    $ver = '?ver=' . md5( wp_salt( 'nonce' ) . $parts[1] );
    return $parts[0] . $ver;
    }
    add_filter( 'script_loader_src', 'supprimer_versions', 15, 1 );
    add_filter( 'style_loader_src', 'supprimer_versions', 15, 1 );

    Thanks Rocco; you put me on tracks.

    Glad you solved and thanks for sharing the solution! ??

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Font customizr not working’ is closed to new replies.