• Hi, I am using the Fashionista theme and I was wondering if anyone can help me get the comments box on the bottom of each post. website: http://www.ohmell.com there is a comment box showing on my ‘contact me’ page but I want it on the bottom of each post. When I post I have selected Discussion “allow comments” and “allow pingbacks” and when I go to quick edit both are ticked. My most recent post now has “leave a comment” written under the title, I dont know how this one appeared but it didn’t on the others. But I would prefer a box at the bottom as its more obvious to users. I don’t really know how to use code but any help would be appreciated! Thanks

Viewing 1 replies (of 1 total)
  • Here is the CSS code to move comments link to bottom in home/blog/archive (the listings page). Use this code in Custom CSS plugin.

    /*----- move comments link to bottom Fashionistas Theme v 1.5 -----*/
    
    .home .hentry, .archive .hentry, .search .hentry {
    	position: relative;
    }
    .home .entry-footer, .archive .entry-footer, .search .entry-footer {
    	padding-right: 115px; /* fix possible many categories */
    }
    .comments-link {
    	position: absolute;
    	bottom: 7px;
    	right: 0;
    }
    .comments-link::before {
    	content: "»";
    	color: black;
    	font-size: 20px;
    	font-weight: bold;
    	padding-right: 5px;
    }

    My most recent post now has “leave a comment” written under the title, I dont know how this one appeared but it didn’t on the others.

    There are 2 settings for comments, one is site wide default discussion setting, and the other is individual setting in post editing screen which will override the default settings.

    Discussion settings, can be overridden individually when editing post/page.
    https://codex.wordpress.org/images/5/55/options-discussion1.png

    IMO, all the page should not have comments at all, like Contact page or About page, it doesn’t make sense to have comments on this kind of static info page.

Viewing 1 replies (of 1 total)
  • The topic ‘Comment box on posts using Fashionista theme’ is closed to new replies.