rexana
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Writr] Glitch in Switching to Child ThemeKathryn,
I changed that line and it didn’t hurt anything but didn’t fix the wideness either.
My host walked me through reuploading the file through cPanel. It wasn’t actually hard once I knew where to go. I was just intimidated by cPanel at first because I’m new to this.
Forum: Plugins
In reply to: [Simple Social Icons] Email link generating warningsNick,
That was the issue! Thanks so much!!
Forum: Themes and Templates
In reply to: [Writr] Glitch in Switching to Child ThemeYes it’s checked. But maybe it’s because I still have my functions.php is as follows:
<?php function writr_child_enqueue_child() { wp_register_style( 'writr', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'writr-child', get_stylesheet_uri(), array( 'writr' ) ); } add_action( 'wp_enqueue_scripts', 'writr_child_enqueue_child', 11 ); ?>
I am too afraid to change it now after what happened before haha
Forum: Themes and Templates
In reply to: [Writr] Glitch in Switching to Child ThemeYeah I just updated it. It doesn’t seem to be any wider tho.
Forum: Themes and Templates
In reply to: [Writr] Glitch in Switching to Child ThemeKathryn, I got some help from my host and got the site back up. Thank you for pointing me towards them! And I would love to know where to make changes in the stylesheet to temporarily fix the width!
Forum: Themes and Templates
In reply to: [Writr] Glitch in Switching to Child ThemeI don’t know how to get to it though. I have files on my computer but I can’t get into the wordpress dashboard at all at this point.
Forum: Themes and Templates
In reply to: [Writr] Glitch in Switching to Child ThemeOh god I broke everything. I tried doing that and now I can’t even get to the wordpress back end. I just get a white page that says
Parse error: syntax error, unexpected ‘url’ (T_STRING) in /home/rexanotq/public_html/wp-content/themes/writr-child/functions.php on line 2Forum: Themes and Templates
In reply to: [Writr] Glitch in Switching to Child ThemeThanks, Kathryn! That fixed the issue. The only thing is now the site isn’t displaying the wider content area option even though I have that selected. Is there a way to get that back?
Forum: Themes and Templates
In reply to: [Writr] Glitch in Switching to Child ThemeSo I have removed all of that and it didn’t seem to hurt anything else but I am still having the same issue. I’ve tried clearing my cache but it persists. My functions.php file now looks like this:
<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'writr', get_template_directory_uri() . '/style.css' ); } ?>
Forum: Themes and Templates
In reply to: [Writr] Glitch in Switching to Child ThemeI seem to only be able to have it as it is now or totally broken by removing things. What I have in my child theme is this:
style.css:
.page .genericon-document::before { content: none; } .page .entry-format-badge.genericon { background: none; }
functions.php:
<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'writr', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'writr', get_template_directory_uri() . '/editor-style-wider.css' ); wp_enqueue_style( 'writr', get_template_directory_uri() . '/editor-style.css' ); wp_enqueue_style( 'writr', get_template_directory_uri() . '/css/blue.css' ); wp_enqueue_style( 'writr', get_template_directory_uri() . '/css/genericons.css' ); wp_enqueue_style( 'writr', get_template_directory_uri() . '/css/green.css' ); wp_enqueue_style( 'writr', get_template_directory_uri() . '/css/grey.css' ); wp_enqueue_style( 'writr', get_template_directory_uri() . '/css/purple.css' ); wp_enqueue_style( 'writr', get_template_directory_uri() . '/css/red.css' ); wp_enqueue_style( 'writr', get_template_directory_uri() . '/css/wider.css' ); } ?>
Do you know what I could add or remove to fix the issue?
Thanks!
Forum: Themes and Templates
In reply to: [Writr] Remove Post Icon in Child ThemeWonderful! Thanks so much, Kathryn!