Forum Replies Created

Viewing 15 replies - 346 through 360 (of 518 total)
  • I don’t think it is possible. Have you tried asking on https://en.support.wordpress.com/

    Sorry, I was trying to say I think it not is possible to solve the problem you described.

    Then you would need some css in the child style.css properly to position the extra sidebar

    .site-main div#quaternary.sidebar-container {
    /*
        height: 0px;
        position: absolute;
        top: 40px;
        width: 100%;
        z-index: 1;
    */
    new code goes here
    }

    and that’s just the beginning of the css, likely there will be more to be done even at this point.

    Are you sure you don’t want to look at some other 3-column reponsive theme?

    You are welcome,

    It appears you have only changed a comment.
    Let’s start over:
    First you should make a child theme
    Then in the child functions.php you could could have something like this:

    /**
     * Register more widget areas.
     */
    function more_twentythirteen_widgets_init() {
    	register_sidebar( array(
    		'name'          => __( 'Extra Widget Area', 'twentythirteen' ),
    		'id'            => 'sidebar-3',
    		'description'   => __( 'Appears blah-blah-blah', 'twentythirteen' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget'  => '</aside>',
    		'before_title'  => '<h3 class="widget-title">',
    		'after_title'   => '</h3>',
    	) );
    	register_sidebar( array(
    }
    add_action( 'widgets_init', 'more_twentythirteen_widgets_init' );

    Then you could create a new file in the child theme with the name sidebar-extra.php
    And with the following content:

    <?php
    /**
     * The sidebar containing the "extra" widget area
     *
     * Displays bLAHBLAH.
     *
     * If no active widgets are in this sidebar, hide it completely.
     *
     * @package WordPress
     * @subpackage Twenty_Thirteen
     * @since Twenty Thirteen 1.0
     */
    
    if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
    	<div id="quaternary" class="sidebar-container" role="complementary">
    		<div class="sidebar-inner">
    			<div class="widget-area">
    				<?php dynamic_sidebar( 'sidebar-3' ); ?>
    			</div><!-- .widget-area -->
    		</div><!-- .sidebar-inner -->
    	</div><!-- #quaternary -->
    <?php endif; ?>

    Then you could put this in the child functions.php

    /**
     * Whenever the sidebar is called, also call the extra sidebar
     */
    function get_extra_sidebar() {
    	get_sidebar('extra');
    }
    add_action( 'get_sidebar', 'get_extra_sidebar' );

    You’re welcome Wade

    From what you describe it appears the search engine uses a CSS text-transform:lowercase;

    Likely it’s not possible anything you can do to change it.

    Here on this forum, like many places, the extended use of uppercase letters is considered “SHOUTING” or “YELLING”. And frowned upon ;{

    Instead of file index.php, shouldn’t the virtual directory go to root directory ( / ) ?

    Guten Tag Harry

    First thing you’ll want to do is give your new sidebar a unique ID like “quaternary”. Presently you are using twice the same ID “tertiary”. Also, I believe it should be not within #primary

    Instead of this:

    <div id="primary" class="content-area">
    	<div id="content" class="site-content" role="main">
    
    		<div id="tertiary" class="sidebar-container" role="complementary">
    
    		</div><!-- #tertiary -->
    
    	</div><!-- #content -->
    </div><!-- #primary -->
    
    <div id="tertiary" class="sidebar-container" role="complementary">
    
    </div><!-- #tertiary -->

    It should be something more like this:

    <div id="primary" class="content-area">
    	<div id="content" class="site-content" role="main">
    
    	</div><!-- #content -->
    </div><!-- #primary -->
    
    <div id="tertiary" class="sidebar-container" role="complementary">
    
    </div><!-- #tertiary -->
    
    <div id="quaternary" class="sidebar-container" role="complementary">
    
    </div><!-- #quaternary -->

    Mike, you’ll have better results if you start your own topic, this one is ‘resolved’.

    Or just try the manual update referred above ;|

    can I build the site somewhere else in the mean time?

    Yes, and then use a DNS A record to point the domain to the new host

    I am currently looking at installing MAMP and WordPress on my Mac. Is this a way to go?

    No, probably not

    currently have my own website hosting with TSOhost, would I be able to build the scout website there, then buy separate hosting with them and switch the scout website to that once we launch?

    You should ask TSO if your account supports multiple virtual hosts. If so you wouldn’t have to buy another account and the sites would all be totally separate.

    Here are the codex default args from http://codex.wordpress.org/Function_Reference/register_post_type
    Probably a good place to start…

    add_action( 'init', 'codex_book_init' );
    /**
     * Register a book post type.
     *
     * @link http://codex.wordpress.org/Function_Reference/register_post_type
     */
    function codex_book_init() {
    	$labels = array(
    		'name'               => _x( 'Books', 'post type general name', 'your-plugin-textdomain' ),
    		'singular_name'      => _x( 'Book', 'post type singular name', 'your-plugin-textdomain' ),
    		'menu_name'          => _x( 'Books', 'admin menu', 'your-plugin-textdomain' ),
    		'name_admin_bar'     => _x( 'Book', 'add new on admin bar', 'your-plugin-textdomain' ),
    		'add_new'            => _x( 'Add New', 'book', 'your-plugin-textdomain' ),
    		'add_new_item'       => __( 'Add New Book', 'your-plugin-textdomain' ),
    		'new_item'           => __( 'New Book', 'your-plugin-textdomain' ),
    		'edit_item'          => __( 'Edit Book', 'your-plugin-textdomain' ),
    		'view_item'          => __( 'View Book', 'your-plugin-textdomain' ),
    		'all_items'          => __( 'All Books', 'your-plugin-textdomain' ),
    		'search_items'       => __( 'Search Books', 'your-plugin-textdomain' ),
    		'parent_item_colon'  => __( 'Parent Books:', 'your-plugin-textdomain' ),
    		'not_found'          => __( 'No books found.', 'your-plugin-textdomain' ),
    		'not_found_in_trash' => __( 'No books found in Trash.', 'your-plugin-textdomain' )
    	);
    
    	$args = array(
    		'labels'             => $labels,
    		'public'             => true,
    		'publicly_queryable' => true,
    		'show_ui'            => true,
    		'show_in_menu'       => true,
    		'query_var'          => true,
    		'rewrite'            => array( 'slug' => 'book' ),
    		'capability_type'    => 'post',
    		'has_archive'        => true,
    		'hierarchical'       => false,
    		'menu_position'      => null,
    		'supports'           => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
    	);
    
    	register_post_type( 'book', $args );
    }

    I believe the Yoast SEO plugin will allow you easily to remove attachment posts from your xml sitemap.

    Greetings

    I wouldn’t try to back it up and then restore later. It would be easier to enable the WordPress maintenance mode, either via a plugin or manually create the hidden .maintenance file.

    Even easier, you can just rename the index.php file. And name it back when you want to go live again.

    Good Luck

    Good question, please see license section below from the theme’s style.css file

    /*
    Theme Name: Twenty Fifteen
    Theme URI: https://wordpress.org/themes/twentyfifteen/
    Author: the WordPress team
    Author URI: https://wordpress.org/
    Description: Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.
    Version: 1.2
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: black, blue, gray, pink, purple, white, yellow, dark, light, two-columns, left-sidebar, fixed-layout, responsive-layout, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
    Text Domain: twentyfifteen
    
    This theme, like WordPress, is licensed under the GPL.
    Use it to make something cool, have fun, and share what you've learned with others.
    */

    You are welcome … Please mark the topic resolved?

    Yes, manual update is the way to go.
    https://codex.wordpress.org/Updating_WordPress#Manual_Update

    And remember delete the .maintenance hidden file to get out of maintenance mode.

Viewing 15 replies - 346 through 360 (of 518 total)