Making WordPress.org

Ticket #4112: showcase_heading_fix.diff

File showcase_heading_fix.diff, 13.3 KB (added by dufresnesteven, 5 years ago)

Updates wporg-showcase headings in preparation of h1 logo removal.

  • wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/404.php

    diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/404.php wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/404.php
    index eaf33ef6f..b7baf6707 100644
    $wp_query = new WP_Query( array( 'no_found_rows' => true, 'post_type' => 'post', 
    1313
    1414                                        <div class="col-5">
    1515                                                <div class="storycontent">
    16                                                                 <h3><?php _e( 'Page Not Found', 'wporg-showcase' ); ?></h3>
     16                                                                <h2><?php _e( 'Page Not Found', 'wporg-showcase' ); ?></h2>
    1717                                                                <p><?php _e( 'Sorry, we could not not find that site in the Showcase. We do have many others available though. Here&#8217;s one chosen at random!', 'wporg-showcase' ); ?></p>
    1818                                                                <?php //breadcrumb(); ?>
    19                                                                 <h3><?php the_title(); ?></h3>
     19                                                                <h2><?php the_title(); ?></h2>
    2020                                                                <a href=' http://<?php get_site_domain( false ); ?>'>
    2121                                                                        <?php site_screenshot_tag( 518, 'screenshot site-screenshot'); ?>
    2222                                                                </a>
  • wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/archive.php

    diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/archive.php wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/archive.php
    index 46be48d22..fc83a8a31 100644
    get_header(); 
    1717                                        <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
    1818                                                <?php site_screenshot_tag( 145, 'screenshot alignleft' ); ?>
    1919                                        </a>
    20                                         <h5><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h5>
     20                                        <h3 class="heading"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    2121                                        <div class="excerpt"><?php the_content_limit(200); ?></div>
    2222                                        <div class="meta"><?php tags_with_count( 'flat', '<strong>' . __( 'Tags:', 'wporg-showcase' ) . '</strong> ', ', ', '<br />'); ?><?php edit_post_link( __( 'Edit this entry', 'wporg-showcase' ) ); ?></div>
    2323                                        <div style="clear:both;"></div>
  • wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/functions.php

    diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/functions.php wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/functions.php
    index 897443338..773d10875 100644
    function site_screenshot_tag( $width = '', $classes='screenshot' ) { 
    8181function wp_flavors() {
    8282        global $post;
    8383
    84         echo '<h4>' . __( 'Flavor', 'wporg-showcase' ). '</h4>';
     84        echo '<h3>' . __( 'Flavor', 'wporg-showcase' ). '</h3>';
    8585        echo '<ul id="flavors">';
    8686
    8787        $flavors = array( 'WordPress.org', 'WordPress.com', 'WordPress.com VIP', 'WordPress MS' );
    function popular_tags ($number = 10) { 
    131131        $args = array('number' => $number, 'orderby' => 'count', 'order' => 'DESC');
    132132        $tags = get_terms( 'post_tag', $args );
    133133
    134         $out = '<h4>' . __( 'Browse Popular Tags', 'wporg-showcase' ). '</h4>';
     134        $out = '<h3 class="heading">' . __( 'Browse Popular Tags', 'wporg-showcase' ). '</h3>';
    135135        $out .= '<ul class="submenu wpsc-popular-tags">';
    136136
    137137        foreach ($tags as $tag) {
    function popular_tags ($number = 10) { 
    150150
    151151function breadcrumb() { ?>
    152152
    153         <h3><a href="<?php echo home_url( '/' ); ?>" title="<?php esc_attr_e( 'Showcase', 'wporg-showcase' ); ?>"><?php _e( 'Showcase', 'wporg-showcase' ); ?></a>
     153        <h2><a href="<?php echo home_url( '/' ); ?>" title="<?php esc_attr_e( 'Showcase', 'wporg-showcase' ); ?>"><?php _e( 'Showcase', 'wporg-showcase' ); ?></a>
    154154
    155155                <?php if ( is_search() ) : ?>
    156156                        <?php
    function breadcrumb() { ?> 
    172172                        ?>
    173173                <?php endif; // is_search ?>
    174174
    175         </h3>
     175        </h2>
    176176<?php
    177177}
    178178
  • wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/header.php

    diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/header.php wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/header.php
    index 232512e8f..2f5357ac6 100644
    $wporg_global_header_options['in_wrapper'] .= '<a class="skip-link screen-reader 
    77
    88$prefix = is_ssl() ? 'https://' : 'http://s.';
    99wp_enqueue_style( 'blog-wp4', $prefix.'wordpress.org/style/blog-wp4.css', array(), 4 );
    10 wp_enqueue_style( 'showcase', $prefix.'wordpress.org/wp-content/themes/pub/wporg-showcase/style.css', array(), 19 );
     10wp_enqueue_style( 'showcase', get_stylesheet_uri(), array(), 19 );
    1111require WPORGPATH . 'header.php';
    1212?>
    1313<div id="headline">
    1414        <div class="wrapper">
    1515                <a id="wpsc-mobile-menu-button" class="" href="#" onclick="toggle_wpsc_mobile_menu();"></a>
    16                 <h2><?php _e( 'WordPress Website Showcase', 'wporg-showcase' ); ?></h2>
     16                <h1><?php _e( 'WordPress Website Showcase', 'wporg-showcase' ); ?></h1>
    1717        </div>
    1818</div>
  • wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/index.php

    diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/index.php wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/index.php
    index 9979e3536..e072eec9a 100644
     
    22<div id="pagebody">
    33        <div class="wrapper archives">
    44                <?php get_sidebar( 'left' ); ?>
    5                 <div class="col-5">
     5                <div class="col-5 archives-content">
    66                <?php
    77                        breadcrumb();
    88                        $num_posts = 400;
     
    1313                <?php if ( have_posts() ) : ?>
    1414                        <?php while ( have_posts() ) : the_post(); ?>
    1515
    16                                 <?php the_date('', '<h4>', '</h4>'); ?>
     16                                <?php the_date('', '<h3 class="heading">', '</h3>'); ?>
    1717                                <div class="storycontent"><a href='<?php the_permalink(); ?>' title='<?php the_title_attribute(); ?>'><?php the_title(); ?></a></div>
    1818
    1919                        <?php endwhile; // have_posts ?>
  • wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/page-home.php

    diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/page-home.php wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/page-home.php
    index a226d3f49..a1273ba30 100644
    add_action( 'wp_head', function() { 
    1313get_header();
    1414?>
    1515<div id="pagebody" class="home">
     16        <h2 class="screen-reader-text"><?php _e( 'Featured Sites', 'wporg-showcase' ); ?></h2>
    1617        <?php query_posts( array( 'cat' => 4, 'posts_per_page' => 9, 'post_status' => 'publish' ) ); ?>
    1718        <?php if ( have_posts() ) : ?>
    1819
    get_header(); 
    6869                <div class="maincontentwrapper">
    6970                        <?php query_posts( array( 'cat' => 4, 'posts_per_page' => 3, 'tag' => 'business', 'orderby' => 'rand' ) ); ?>
    7071                        <?php if ( have_posts() ) : ?>
    71                         <h3><?php _e( 'Featured Business Sites', 'wporg-showcase' ); ?></h3>
     72                        <h2><?php _e( 'Featured Business Sites', 'wporg-showcase' ); ?></h2>
    7273                        <ul class="wpsc-recent">
    7374
    7475                                <?php while ( have_posts() ) : the_post(); ?>
    get_header(); 
    7778                                                <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
    7879                                                        <?php site_screenshot_tag( 215 ); ?>
    7980                                                </a>
    80                                                 <h5><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h5>
     81                                                <h3><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    8182                                                <?php
    8283                                                        the_content_limit( 90 );
    8384                                                        the_tags( '<ul class="wpsc-tags"><li>', '</li><li>', '</li></ul>' );
    get_header(); 
    9192                        <?php query_posts( array( 'posts_per_page' => 9 ) ); ?>
    9293                        <?php if ( have_posts() ) : ?>
    9394
    94                         <h3><?php _e( 'Recently Added Sites', 'wporg-showcase' ); ?></h3>
     95                        <h2><?php _e( 'Recently Added Sites', 'wporg-showcase' ); ?></h2>
    9596                        <ul class="wpsc-recent">
    9697
    9798                                <?php while ( have_posts() ) : the_post(); ?>
    get_header(); 
    100101                                        <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
    101102                                                <?php site_screenshot_tag( 215 ); ?>
    102103                                        </a>
    103                                         <h5><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h5>
     104                                        <h3><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    104105                                        <?php
    105106                                                the_tags( '<ul class="wpsc-tags"><li>', '</li><li>', '</li></ul>' );
    106107                                        ?>
  • wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/sidebar-left.php

    diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/sidebar-left.php wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/sidebar-left.php
    index 48ce12237..5259b4e9b 100644
     
    11                <div class="col-2 secondary leftsidebar">
     2                        <h2 class="screen-reader-text"><?php _e( 'Sidebar', 'wporg-showcase' ); ?></h2>
    23                        <a href="<?php echo home_url( '/submit-a-wordpress-site/' ); ?>" class="wpsc-submit-site"><?php _e( 'Submit a Site &rarr;', 'wporg-showcase' ); ?></a>
    34
    4                         <h4 class="search"><?php _e( 'Search', 'wporg-showcase' ); ?></h4>
     5                        <h4 class="heading search"><?php _e( 'Search', 'wporg-showcase' ); ?></h4>
    56                        <?php // @todo: use get_search_form(); ?>
    67                        <form method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
    78                                <input type="text" value="<?php the_search_query(); ?>" name="s" id="s" class="text" />
     
    1112                        <?php popular_tags(); ?>
    1213                        <a href='<?php echo home_url( '/tag-cloud/' ); ?>' class="wpsc-all-tags"><?php _e( 'View All Tags &rarr;', 'wporg-showcase' ); ?></a>
    1314
    14                         <h4><?php _e( 'Browse by Flavor', 'wporg-showcase' ); ?></h4>
     15                        <h3 class="heading"><?php _e( 'Browse by Flavor', 'wporg-showcase' ); ?></h4>
    1516                        <ul class="submenu">
    1617                                <?php wp_list_categories( 'exclude=4&title_li=' ); ?>
    1718                        </ul>
  • wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/sidebar-right.php

    diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/sidebar-right.php wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/sidebar-right.php
    index 2715bb1aa..6ce6a96f2 100644
     
    11                <div class="col-3 rightsidebar">
    22                        <div class="rightsidebarwrapper">
    33                        <div class="currentSiteRating">
     4                                <h2 class="screen-reader-text"><?php _e( 'Site Details', 'wporg-showcase' ); ?></h2>
    45                                <p class="button"><a href="http://<?php get_site_domain( false ); ?>"><?php _e( 'Visit Site', 'wporg-showcase' ); ?></a></p>
    56
    67                                <?php wp_flavors(); ?>
    78                                <br />
    8                                 <?php tags_with_count( 'list', '<h4>' . __( 'Tags', 'wporg-showcase' ) . '</h4><ul>', '', '</ul>' ); ?>
     9                                <?php tags_with_count( 'list', '<h3>' . __( 'Tags', 'wporg-showcase' ) . '</h3><ul>', '', '</ul>' ); ?>
    910                        </div>
    1011                </div>
    1112        </div>
  • wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/style.css

    diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/style.css wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/style.css
    index dea0302cf..d4629b3de 100644
    textarea.text { 
    9090        color: #666;
    9191}
    9292
    93 h4 {
    94         border-bottom:1px solid #DEDEDE;
    95         color:#333333;
    96         font-size:12px;
    97         font-weight:bold;
    98         margin-bottom:10px;
    99         padding-bottom:4px;
    100         padding-top:1px;
    101 }
    102 
    103 h4.search {
     93.heading.search {
    10494        padding-top: 0;
    10595}
    10696
    107 .archives h4 {
     97.archives-content .heading {
    10898        margin-top: 10px;
    10999}
    110100
    h4.search { 
    139129        text-align: left;
    140130}
    141131
    142 .gallery-caption h5 {
     132.gallery-caption h4 {
    143133        margin-top: 10px;
    144134}
    145135
    146 h5 {
     136h4,
     137.archives-content .heading {
    147138        font-size: 16px;
    148139        margin-bottom: 5px;
    149140}
    150141
    151 h5 a {
     142h4 a {
    152143        font-weight: normal;
    153144}
    154145
    ul#flavors li.flavor-used { 
    207198        margin: 0 0 30px 0;
    208199}
    209200
    210 h3 {
     201.story-excerpt .heading {
     202        font-size: 16px;
     203        margin-bottom: 5px;
     204}
     205
     206.story-excerpt .heading a {
     207        font-weight: normal;
     208}
     209
     210h2 {
    211211        font-weight: normal;
    212212        font-size: 20px;
    213213        margin-bottom: 20px;
    214214}
    215215
    216 h3 a {
     216h2 a {
    217217        font-weight: normal;
    218218}
    219219
    a.wpsc-hero-learnmore { 
    592592        width: 150px;
    593593}
    594594
    595 .secondary h4 {
     595.secondary .heading,
     596.archives-content .heading {
    596597        color: #444;
    597598        font-size: 13px;
    598599        line-height: 1.2;
    a.wpsc-hero-learnmore { 
    600601        padding: 0 0 10px 0;
    601602
    602603        margin: 47px 0 11px 0;
     604        border-bottom: 1px solid #DEDEDE;
     605        font-weight: bold;
     606}
     607
     608.archives-content .heading {
     609        margin-top: 0;
    603610}
    604611
    605612.home .secondary h4.search {
    a.wpsc-hero-learnmore { 
    714721        float: left;
    715722}
    716723
    717 .home .main-content h3 {
     724.home .main-content h2 {
    718725        font-weight: bold;
    719726        margin: 0 0 29px 14px;
    720727}
    a.wpsc-hero-learnmore { 
    760767        line-height: 1.4
    761768}
    762769
    763 .wpsc-recent h5 {
     770.wpsc-recent h4 {
    764771        font-size: 14px;
    765772        line-height: 1.2;
    766773        margin: 13px 0 0 0;
    767774}
    768775
    769 .wpsc-recent h5 a {
     776.wpsc-recent h4 a {
    770777        font-style: normal;
    771778        font-weight: bold;
    772779}
    a.wpsc-hero-learnmore { 
    812819        margin-top: 50px;
    813820}
    814821
     822#headline h1 {
     823        color: #555;
     824        font-size: 28px;
     825        line-height: 1em;
     826        text-shadow: #fff 0px 1px 0px;
     827        padding-top: 18px;
     828        padding-left: 9px;
     829        padding-bottom: 18px;
     830        display: -webkit-box;
     831        display: -webkit-flex;
     832        display: -moz-box;
     833        display: -ms-flexbox;
     834        display: flex;
     835        font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;
     836        font-weight: 300;
     837}
     838
    815839/* Large devices */
    816840@media ( max-width: 992px ) {
    817841