Search found 456 matches

by Jake
Thu Jan 20, 2022 1:46 pm
Forum: About the site...
Topic: Ha¢ked!¡!
Replies: 0
Views: 15841

Ha¢ked!¡!

The site was compromised recently. Not sure how they got in, but they messed up some files, put some backdoors in place so they could run more bad stuff, and sent out a bunch of spam email. It's a pain in the ass to have to deal with this kind of thing, but hostrocket was super helpful, and I ended ...
by Jake
Wed Jan 05, 2022 2:42 pm
Forum: About the site...
Topic: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
Replies: 9
Views: 99402

Re: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile

And if you ever forget to back up that date.php file, here it is: <?php /** * The template for displaying Archive pages * * Used to display archive-type pages if nothing more specific matches a query. * For example, puts together date-based pages if no date.php file exists. -- That's what I did! -Ja...
by Jake
Wed Jan 05, 2022 2:41 pm
Forum: About the site...
Topic: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
Replies: 9
Views: 99402

Re: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile

And to add a default image, make sure you have the following in the /* JAKE MOD */ section of the functions.php page: function jeherve_custom_image( $media, $post_id, $args ) { if ( $media ) { return $media; } else { $permalink = get_permalink( $post_id ); $url = apply_filters( 'jetpack_photon_url',...
by Jake
Thu Nov 18, 2021 2:39 pm
Forum: About the site...
Topic: "Link in bio" page
Replies: 0
Views: 15328

"Link in bio" page

I made a simple little page that displays the last several posts: https://gloriousnoise.com/linkee It uses javascript to parse our RSS feed and format it in a easily clickable way. Based not so subtly on the linktr.ee format. I.e., I "re-purposed" a bunch of their css. The most challenging...
by Jake
Tue Feb 09, 2021 10:57 am
Forum: About the site...
Topic: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
Replies: 9
Views: 99402

Re: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile

Here's another mod I made. I added a date.php template for my date archives. And in order to get them to show all posts and in chronological order I had to add the following snippet to functions.php: /* JAKE MOD */ add_action('pre_get_posts', 'wpa_44980' ); function wpa_44980( $wp_query ) { if( is_d...
by Jake
Mon Jan 04, 2021 12:04 pm
Forum: About the site...
Topic: You have to be signed in to read most of the forums now
Replies: 1
Views: 14303

You have to be signed in to read most of the forums now

Hope this doesn't bother anybody too much.
by Jake
Wed Nov 18, 2020 2:32 pm
Forum: About the site...
Topic: Changed the site from http to https
Replies: 0
Views: 18049

Changed the site from http to https

If all goes well this will be invisible to everybody, but in order to make the site more secure, I changed the site from http to https. If you try to go to http://gloriousnoise.com you should automatically be redirected to https://gloriousnoise.com now.

If you see any issues, please let me know.
by Jake
Mon Jun 22, 2020 10:11 am
Forum: About the site...
Topic: Weird issues logging into the board?
Replies: 1
Views: 14238

Re: Weird issues logging into the board?

Update: I was able to resolve my issue with Chrome by: 1. Deleting the message board cookies: http://gloriousnoise.com/bb/ucp.php?mode=delete_cookies 2. Clearing the Cookies and other site data in Chrome: chrome://settings/clearBrowserData 3. Restarting my computer (this step was probably unnecessar...
by Jake
Mon Jun 22, 2020 9:33 am
Forum: About the site...
Topic: Weird issues logging into the board?
Replies: 1
Views: 14238

Weird issues logging into the board?

I've been seeing some weird issues with logging in. I've been tinkering with some settings and stuff, so I wouldn't be totally surprised if I messed things up, but last week I noticed it was saving my login between settings, and then this morning it wouldn't let me log in with Chrome at all ("T...
by Jake
Thu Apr 23, 2020 4:02 pm
Forum: About the site...
Topic: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
Replies: 9
Views: 99402

Re: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile

Thank GOODNESS I posted this. It would've taken forever to figure it out again!