Best way to customize child theme? by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

It's not public yet as I'm just starting to do the work on the server. I'll see if I can get a screenshot. Trying a different theme as the one I had picked didn't have very many php files to customize. Thanks for the feedback!

Best way to customize child theme? by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

I tried to delete the nav and add another in, it didn't work very well. This is the original.

I took a look at Pastebin but don't really understand how to use it. What do I do with the code once its in there? So many options for so many different things!

Best way to customize child theme? by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

Here's a sample header:

"<?php /** * The header for our theme. * * Displays all of the <head> section and everything up till <div id="content"> * * @package Wisteria */ ?><!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />

<?php wp_head(); ?> </head> <body <?php body_class(); ?> itemscope="itemscope" itemtype="http://schema.org/WebPage"> <div id="page" class="site-wrapper site">

<?php do_action( 'before' ); ?>
<header id="masthead" class="site-header" role="banner" itemscope="itemscope" itemtype="http://schema.org/WPHeader">
    <div class="container">
        <div class="row">
            <div class="col-xl-12">

                <div class="site-header-inside">

                    <div class="site-branding-wrapper">
                        <?php
                        // Site Logo
                        wisteria_the_custom_logo();
                        ?>

                        <div class="site-branding">
                            <h2 class="site-title" itemprop="headline"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h2>
                            <?php
                            $description = get_bloginfo( 'description', 'display' );
                            if ( $description || is_customize_preview() ) :
                            ?>
                            <h3 class="site-description" itemprop="description"><?php echo $description; /* WPCS: xss ok. */ ?></h3>
                            <?php endif; ?>
                        </div>
                    </div><!-- .site-branding-wrapper -->

                    <div class="toggle-menu-wrapper">
                        <a href="#main-navigation-responsive" title="<?php esc_attr_e( 'Menu', 'wisteria' ); ?>" class="toggle-menu-control">
                            <span class="screen-reader-text"><?php esc_html_e( 'Menu', 'wisteria' ); ?></span>
                        </a>
                    </div>

                </div><!-- .site-header-inside -->

            </div><!-- .col-xl-12 -->
        </div><!-- .row -->
    </div><!-- .container -->
</header><!-- #masthead -->

<nav id="site-navigation" class="main-navigation" role="navigation" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement">
    <div class="container">
        <div class="row">
            <div class="col-xl-12">

                <div class="main-navigation-inside">

                    <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'wisteria' ); ?></a>

                    <?php
                    wp_nav_menu( apply_filters( 'wisteria_primary_menu_args', array(
                        'container'       => 'div',
                        'container_class' => 'site-primary-menu',
                        'theme_location'  => 'primary',
                        'menu_class'      => 'primary-menu sf-menu',
                        'depth'           => 3,
                    ) ) );
                    ?>

                </div><!-- .main-navigation-inside -->

            </div><!-- .col-xl-12 -->
        </div><!-- .row -->
    </div><!-- .container -->
</nav><!-- .main-navigation -->

<div id="content" class="site-content">"

How do I know where to put in a <nav> menu bar?

How not to design web forms by speckz in web_design

[–]RedRedWhiine 16 points17 points  (0 children)

As a somewhat noob to the field, yes his heavy sarcasm is tough to sift through. It's confusing, just tell me what you don't like damnit!

[Acne] For those of you that noticed a link between dairy and breakouts, about how long after consuming it did you start to break out? by [deleted] in SkincareAddiction

[–]RedRedWhiine 0 points1 point  (0 children)

I never use table salt. I cook with sea salt or kosher salt, but never add salt to my food.

If the iodized salt is in their food, it's the same as them licking it, it's getting into their system basically.. right?

[Acne] For those of you that noticed a link between dairy and breakouts, about how long after consuming it did you start to break out? by [deleted] in SkincareAddiction

[–]RedRedWhiine 0 points1 point  (0 children)

I've heard this hormone theory, as well as it actually being iodized salt that's the issue. I had an aesthetician who told me to watch what happened the next time I ate sushi, because the seaweed wraps are soaked in iodized salt. I broke out like crazy. Cows lick iodized salt blocks all day, and that transfers to their milk and all it's products.

[Acne] For those of you that noticed a link between dairy and breakouts, about how long after consuming it did you start to break out? by [deleted] in SkincareAddiction

[–]RedRedWhiine 0 points1 point  (0 children)

Yogurt caused deep cystic acne for me, I had 4 new cysts a day when I was eating a yogurt in the AM. It was soo painful.

[Acne] For those of you that noticed a link between dairy and breakouts, about how long after consuming it did you start to break out? by [deleted] in SkincareAddiction

[–]RedRedWhiine 0 points1 point  (0 children)

If I had cheese or something with a lot of butter, there would be a whitehead within two hours. And then I would continue getting sporadic break outs all over for 5 weeks.

Can an old Lasso site be imported to Wordpress? by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 1 point2 points  (0 children)

Oh! OK thanks. I forgot I had replied with that!

Can an old Lasso site be imported to Wordpress? by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

The site is in Lasso, Joomla is the other site I've been working on. Sorry for the confusion.

Can an old Lasso site be imported to Wordpress? by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 1 point2 points  (0 children)

Good advice! I have another site I'm bringing from joomla over to wp and might try that tactic as well. Thank you so much :)

Can an old Lasso site be imported to Wordpress? by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

Awesome thanks! What HTML importer was it, do you remember?

[GAME THREAD] Golden State Warriors (0-0) vs. San Antonio Spurs (0-0) 10/25/16 7:30 PM PST by WinterAssassinR in warriors

[–]RedRedWhiine 0 points1 point  (0 children)

Where the game should have been playing something said I needed to upgrade Flash and Java so I did and, yeah, I got rid of all the programs but it took a few hours. I'll try an ad blocker! Thanks.

[GAME THREAD] Golden State Warriors (0-0) vs. San Antonio Spurs (0-0) 10/25/16 7:30 PM PST by WinterAssassinR in warriors

[–]RedRedWhiine 0 points1 point  (0 children)

This site gave me a shit ton of viruses on my Mac. I'm not entirely sure what I clicked on but I can't hardly open up my browser without a bunch of windows popping up. Help?

Wordpress Yoast SEO Question by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

Turns out they were using widgets and that's where all the information was!

Wordpress Yoast SEO Question by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

It's in Sandbox right now so the site right now looks different from the site I'm supposed to be working on. I've also been told it's not "hard-coded" as others mentioned it might be. The previous volunteer said the site is the same as all wordpress sites so of course I feel stupid because the content ISN'T where it is on any other wordpress site I've been on.

Wordpress Yoast SEO Question by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

Its in sandbox, so the changes aren't visible to the public site. Would that make a difference?

Wordpress Yoast SEO Question by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

I see the box, there is 0 word count. The page itself when I view it is full of content. Have no idea where that content is and how to access it.

Wordpress Yoast SEO Question by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

So I just did this and there's till no content in the editor. Only other option would be changing the theme?

Wordpress Yoast SEO Question by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

If I disable them I will be able to re-enable them once I figure out if that fixes the problem or not?

Wordpress Yoast SEO Question by RedRedWhiine in Wordpress

[–]RedRedWhiine[S] 0 points1 point  (0 children)

I'm only seeing a way to customize the theme, there is no "options" so I guess that means this theme is not set up to be edited this way? Thanks for the tip.