Search found 448 matches
- Tue Mar 08, 2022 9:33 am
- Forum: About the site...
- Topic: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
- Replies: 6
- Views: 66377
Re: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
One more thing! Gotta add the marquee tag in the footer.php! <marquee><a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>" class="imprint"> <?php /* translators: %s: WordPress */ printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ...
- Tue Mar 08, 2022 9:30 am
- Forum: About the site...
- Topic: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
- Replies: 6
- Views: 66377
Re: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
Oh yeah, I also replace the header.php so the logo is in the correct spot: <?php /** * The Header for our theme * * Displays all of the <head> section and everything up till <div id="main"> * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ ?><!DOCTYPE htm...
- Thu Jan 20, 2022 1:46 pm
- Forum: About the site...
- Topic: Ha¢ked!¡!
- Replies: 0
- Views: 1317
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 ...
- 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: 6
- Views: 66377
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...
- 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: 6
- Views: 66377
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',...
- Thu Nov 18, 2021 2:39 pm
- Forum: About the site...
- Topic: "Link in bio" page
- Replies: 0
- Views: 1174
"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...
- 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: 6
- Views: 66377
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...
- 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: 0
- Views: 4037
You have to be signed in to read most of the forums now
Hope this doesn't bother anybody too much.
- Wed Nov 18, 2020 2:32 pm
- Forum: About the site...
- Topic: Changed the site from http to https
- Replies: 0
- Views: 3774
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.
If you see any issues, please let me know.
- Mon Jun 22, 2020 10:11 am
- Forum: About the site...
- Topic: Weird issues logging into the board?
- Replies: 1
- Views: 5819
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...