Martin Robbins
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Is it possible to refund?I don’t think it is possible. Have you tried asking on https://en.support.wordpress.com/
Forum: Fixing WordPress
In reply to: Problem With Home Page META TITLESorry, I was trying to say I think it not is possible to solve the problem you described.
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Moving second sidebar to the leftThen 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?
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Moving second sidebar to the leftYou 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' );Forum: Fixing WordPress
In reply to: Problem With Home Page META TITLEYou’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 ;{
Forum: Fixing WordPress
In reply to: 404 error on main but index.php worksInstead of file index.php, shouldn’t the virtual directory go to root directory ( / ) ?
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Moving second sidebar to the leftGuten 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 -->Forum: Installing WordPress
In reply to: Install hangs on copying filesMike, you’ll have better results if you start your own topic, this one is ‘resolved’.
Or just try the manual update referred above ;|
Forum: Installing WordPress
In reply to: Where to start?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.
Forum: Fixing WordPress
In reply to: CPTs don't show up at all users?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.
Forum: Fixing WordPress
In reply to: can a softaculous backup be used for my website?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
Forum: Themes and Templates
In reply to: Port twentyfifteen to a different CMSGood 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. */Forum: Themes and Templates
In reply to: Remove Header and footer from one pageYou are welcome … Please mark the topic resolved?
Forum: Installing WordPress
In reply to: Install hangs on copying filesYes, manual update is the way to go.
https://codex.wordpress.org/Updating_WordPress#Manual_UpdateAnd remember delete the .maintenance hidden file to get out of maintenance mode.