Code Monkey home page Code Monkey logo

Comments (3)

mgsisk avatar mgsisk commented on August 30, 2024

That's some very odd behavior from Opera; I'll have to look into it.

There's actually supposed to be a setting in the Customizer for adjusting the size of comic previews on archive pages, but I apparently never bothered to add it. Until I fix this, just replace these bits:

get_theme_mod( 'webcomic_archive_size', 'large' )

with the actual size you want (like 'thumbnail').

Lines 105 - 108 of /inkblot/-/php/tags.php controls the author link in post footers:

$author = sprintf( __( '<a href="%1$s" rel="author">%2$s</a>', 'inkblot' ),
    esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    get_the_author()
);

You can link it to author's email instead of their archive page by changing it to:

$author = sprintf( __( '<a href="mailto:%1$s" rel="author">%2$s</a>', 'inkblot' ),
    get_the_author_meta( 'user_email' ),
    get_the_author()
);

from inkblot.

Seel avatar Seel commented on August 30, 2024

This is perfect, thank you.

I think I figured out what caused this weird behavior in Opera, I'm using Cloudflare and it's got this "Rocket Loader" which asynchronously loads javascript code. The page itself loads quicker with it, but it takes a while to load scripts and such after the fact, so things can get messy.

Seems to be more trouble than it's worth to me, so I disabled it.

from inkblot.

mgsisk avatar mgsisk commented on August 30, 2024

Good to know! My host offers CloudFlare too, but I've never tried it. XD Leaving this issue open until I add the archive size option to the Customize page.

from inkblot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.