Peter_L
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing the background Image of Weaver child themethis is the file you want to make your changes to
https://farmboyandcitygirl.com/wp/wp-content/themes/2010-weaver/style.css
(take backup of original!)Don’t worry that the body tag isn’t in there, just redeclare it.
Try to put everything you embedded internally into above css file.Your url has wp in it because you installed it into a folder /wp.
There might be another solution for this, not sure, but I’d say: install it in the root.
Forum: Fixing WordPress
In reply to: Email Addressis the previous email the one that’s set in the user panel?
I think:
Your loop has to be told to show both ‘regular posts’ and ‘your custom post type posts’.
Try the vid in the page for more info.
https://www.wpbeginner.com/wp-tutorials/how-to-use-custom-post-types/
Use query_posts for this.a tip: use the category.php template file
Forum: Fixing WordPress
In reply to: Can't change body background in Twenty Ten themeedit: nevermind my reply, see other replies above
Forum: Fixing WordPress
In reply to: Can't change body background in Twenty Ten themeyour background is set by internal css (css inside <style> tags within the head of your homepage),
any settings in your external css are overridden by the internal css.solution: get rid of the internal css and set the background you want in style.css of your twenty-ten theme
Forum: Fixing WordPress
In reply to: Site blinks black briefly during loadI don’t see a black blip.
This might have to do with your system.Try looking a the site in a different browser.
Forum: Fixing WordPress
In reply to: How to remove "no comment" link for posts with closed commentsI tried out this theme and everything works for me.
So, a post on single.php with comments off says ‘Comments are closed.’ without me having to alter even a letter of code.
The things you added on the single.php is the reason why it’s showing 2 comment statuses. Not sure why the first one says no comments.
I’d suggest you go back to the original to see if that works and then trace back your steps to see if you didn’t accidentally remove a piece of essential code while customizing this theme.
Forum: Fixing WordPress
In reply to: How to remove "no comment" link for posts with closed commentsdid you manually add this
′<span class=”commentlink”><?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?></span> <span class=”editcomment”><?php edit_post_link(‘Edit’, ”, ”); ?>′
to your single.php?Forum: Fixing WordPress
In reply to: How to remove "no comment" link for posts with closed commentsDid you want to close the comments (no comments possible anymore)
or did you disable the comments?