Search found 456 matches

by Jake
Fri Jun 16, 2023 10:47 am
Forum: About the site...
Topic: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
Replies: 9
Views: 99520

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

Also, to make images and videos and stuff fill the whole content area, tweak theme's fuctions.php and change the $content_width variable from 474 to 700. /** * Set up the content width value based on the theme's design. * * @see twentyfourteen_content_width() * * @since Twenty Fourteen 1.0 */ if ( !...
by Jake
Fri May 12, 2023 12:40 pm
Forum: About the site...
Topic: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
Replies: 9
Views: 99520

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

Additional CSS to prevent big ass space under youtube videos:

Code: Select all

p:has(iframe) {
  margin-bottom: 0px;
}
by Jake
Tue Nov 29, 2022 2:15 pm
Forum: About the site...
Topic: How to prevent Wordpress Twenty Fourteen from chopping featured images on mobile
Replies: 9
Views: 99520

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

A new thing I just added to the theme's functions.php file to format posts to Mastodon the way I like them add_filter( 'share_on_mastodon_status', function( $status, $post ) { $toot_size = (int) 500; //$message_template = "[title]\n\n[excerpt]...\n\nRead more: [permalink]\n\n[tags]"; $mess...
by Jake
Wed Jul 27, 2022 12:05 pm
Forum: About the site...
Topic: You have to be signed in to read most of the forums now
Replies: 1
Views: 14390

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

I realized today that there was no way for new users to register a new account (an unintended side effect of disabling the ability to send email through the board). So I opened it back up to allowing new accounts by disabling the requirement to confirm an email address. We'll see how long it takes f...
by Jake
Tue Jul 26, 2022 9:36 am
Forum: About the site...
Topic: BB logo sizing
Replies: 0
Views: 14755

BB logo sizing

When we upgrade our bb software I need to remember to update the following in common.css:

Code: Select all

.site_logo {
	background-repeat: no-repeat;
	display: inline-block;
	width: 149px;
	height: 52px;
	[b]background-size: 149px 52px; [/b]
}
(Add the bold part.)
by Jake
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: 9
Views: 99520

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' ...
by Jake
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: 9
Views: 99520

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...
by Jake
Sat Feb 12, 2022 10:26 am
Forum: About the site...
Topic: Omg I just spent an inordinate amount of energy on something totally ridiculous
Replies: 2
Views: 9353

Re: Omg I just spent an inordinate amount of energy on something totally ridiculous

TODO:

1. Modify phpbb extension to embed YouTube videos and quoted tweets.

2. Strip hashtags from titles: https://stackoverflow.com/questions/448 ... sing-regex
by Jake
Fri Feb 11, 2022 3:53 pm
Forum: About the site...
Topic: Omg I just spent an inordinate amount of energy on something totally ridiculous
Replies: 2
Views: 9353

Omg I just spent an inordinate amount of energy on something totally ridiculous

<r> Omg I just spent an inordinate amount of energy on something totally ridiculous. I figured out how to get php to use the twitter api to convert a feed to rss so I could import tweets into my message board that literally nobody uses. <EMOJI seq="1f913" tseq="1f913">🤓</EMOJI> <br/> <br/> S...