TaylorReints
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Created Child Theme, Blog Now Has ProblemsYes, but why isn’t my theme working?
Forum: Fixing WordPress
In reply to: Created Child Theme, Blog Now Has ProblemsI deleted and reuploaded my theme and got this error:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 30720 bytes) in /home/a9603376/public_html/wp-admin/includes/deprecated.php on line 493
Forum: Fixing WordPress
In reply to: Created Child Theme, Blog Now Has ProblemsI’m so sorry I didn’t provide a link. My website is https://pastafarian.tk
Forum: Fixing WordPress
In reply to: Created Child Theme, Blog Now Has ProblemsCan somebody please help me? I’m interested in getting my WordPress blog back. This is a serious issue.
Forum: Fixing WordPress
In reply to: Created Child Theme, Blog Now Has ProblemsPlease help.
Forum: Fixing WordPress
In reply to: Created Child Theme, Blog Now Has ProblemsDelete your child theme and revert back to your old theme.
I did delete it, and when I did I got the error message. I can’t revert to my other theme because of the error message.
Forum: Fixing WordPress
In reply to: WP Symposium Panel DisappearedAny help would be greatly appreciated. My URL is https://pastafarian.host22.com
Forum: Fixing WordPress
In reply to: Selective Navigation MenusWhere do I put this code?
Forum: Fixing WordPress
In reply to: Widget LogicYes, I tested it on Twenty Eleven and it worked. So should I see the forums of my theme provider?
Forum: Fixing WordPress
In reply to: Widget LogicYes.
Forum: Fixing WordPress
In reply to: Removing Title on Single PageThanks!
Forum: Fixing WordPress
In reply to: Removing Title on Single PageThank you! It worked.
But now I have another dilemma. On the Forums page, it says “Posted By Taylor Reints On Sunday, December 9th, 2012 With 0 Comments · Edit”
How would I get rid of this? Thanks.
Forum: Fixing WordPress
In reply to: Removing Title on Single PageI kept it, in header.php, as
<body <?php body_class();?>>
and then removed#post-14 h2 {display:none;}
and replaced it with.page-id-14 . post h2 {display:none;}
It’s still not working, unfortunately.
Forum: Fixing WordPress
In reply to: Removing Title on Single PageI changed
<body>
to<body <?php body_class();?>>
and then added#post-14 h2 {display:none;}
at the bottom of my theme stylesheet, but the title is still there.Forum: Fixing WordPress
In reply to: Issue with header.php in blog themeOkay. I successfully retrieved header-types.php. However, now there is this error: “Parse error: syntax error, unexpected $end in /home/a9603376/public_html/wp-content/themes/city-desk/header-types.php on line 58“
Here is header-types.php:
<?php /* ******************** IF HEADER WITH A SINGLE IMAGE IS ACTIVATED *************************** */ if(of_get_option('of_header_type') == 'singleimage') { ?> <a href="<?php echo home_url('/'); ?>" title="<?php bloginfo('description'); ?>"> <img src="<?php echo of_get_option('of_himageurl'); ?>" id="header_banner" alt="<?php bloginfo('name'); ?>" title="<?php bloginfo('name'); ?>"/> </a> <?php } /* ******************** IF HEADER LOGO - BANNER IS ACTIVATED ********************************* */ elseif(of_get_option('of_header_type') == 'logobanner') { ?> <div class="left-2col"> <div class="logo" style="padding:<?php echo of_get_option('of_padding_top', 0); ?>px 0px <?php echo of_get_option('of_padding_bottom', 0); ?>px <?php echo of_get_option('of_padding_left', 0); ?>px;"> <?php if ( of_get_option('of_logo_type', 'text') == 'image') { ?> <h1> <a href="<?php echo home_url('/'); ?>" title="<?php bloginfo('description'); ?>"> <img src="<?php echo of_get_option('of_logo'); ?>" alt="<?php bloginfo('name'); ?>" title="<?php bloginfo('name'); ?>"/> </a> </h1> <?php } else { ?> <h1> <a href="<?php echo home_url('/'); ?>" title="<?php bloginfo('description'); ?>"><?php echo of_get_option('of_logo1'); ?></a> <span><a href="<?php echo home_url('/'); ?>" title="<?php bloginfo('description'); ?>"><?php echo of_get_option('of_logo2'); ?></a></span> </h1> <?php } ?> </div><!-- .logo --> </div><!-- .left-2col --> <div class="right-2col" <?php if (of_get_option('of_cd_adm1') <> '') { ?>style="padding-top:<?php echo of_get_option('of_cd_adm1'); ?>px"<?php } ?>> <?php gab_categoryad('header_468x60'); ?> </div><!-- .right-2col --> <?php } elseif(of_get_option('of_header_type') == 'logobnews') { /* ******************** IF HEADER LOGO - BREAKING NEWS ********************************* */ ?> <div class="left-2col"> <div class="logo" style="padding:<?php echo of_get_option('of_padding_top', 0); ?>px 0px <?php echo of_get_option('of_padding_bottom', 0); ?>px <?php echo of_get_option('of_padding_left', 0); ?>px;"> <?php if ( of_get_option('of_logo_type', 'text') == 'image') { ?> <h1> <a href="<?php echo home_url('/'); ?>" title="<?php bloginfo('description'); ?>"> <img src="<?php echo of_get_option('of_logo'); ?>" alt="<?php bloginfo('name'); ?>" title="<?php bloginfo('name'); ?>"/> </a> </h1> <?php } else { ?> <h1> <a href="<?php echo home_url('/'); ?>" title="<?php bloginfo('description'); ?>"><?php echo of_get_option('of_logo1'); ?></a> <span><a href="<?php echo home_url('/'); ?>" title="<?php bloginfo('description'); ?>"><?php echo of_get_option('of_logo2'); ?></a></span> </h1> <?php } ?> </div><!-- .logo --> </div><!-- .left-2col --> <?php if (intval(of_get_option('of_nrteaser')) > 0 ) { ?> <div class="right-2col"> <div class="entries"> <?php $count = 1;