acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Comments Section not showingIf you disable all the plugins and there is still a problem it’s not the theme’s fault. You must have modified a file or an option and I really don’t know where to start.
Forum: Themes and Templates
In reply to: [JustWrite] Comments Section not showingTry disabling all your plugins then see if it works. If it does reactivate them one by one until you see which one creates issues.
Forum: Themes and Templates
In reply to: [JustWrite] Comments Section not showingDid you change anything in the theme’s files?
Forum: Themes and Templates
In reply to: [JustWrite] Comments Section not showingYou obviously did something :). One option would be to go in WP Administration Panel > Appearance > Theme Options > More settings and see if “Comments globally” is checked.
Or it has something to do with Info Links… Try disabling that plugin and see if it works.
Forum: Themes and Templates
In reply to: [JustWrite] Text font sizeUnfortunately not. It will break the design.
Forum: Themes and Templates
In reply to: [JustWrite] Text font size.single-template-1 .single-content { font-size: 14px !important; } .post-template-1 p, .single-template-1 .single-content { font-size: 14px !important; }Forum: Themes and Templates
In reply to: [JustWrite] How to adjust menuDid you create the child theme (as the above tutorial says) and activate it?
Forum: Themes and Templates
In reply to: [JustWrite] How to adjust menuNo changes were made to the css/html structure. You might be doing something wrong…
Forum: Themes and Templates
In reply to: [JustWrite] How to adjust menuHi! That will happen every time you update the theme, it overwrites
style.css.You need to create a child theme and all your changes remain intact. It’s actually recommended (with all themes in general) if you look in
style.css, at the top.No problem. I’m glad it worked.
Maybe something like:
/* Remove Hentry /* ------------------------------------ */ function remove_hentry( $classes ) { if( !is_single() ) { $classes = array_diff($classes, array('hentry')); return $classes; } else { return $classes; } } add_filter( 'post_class', 'remove_hentry' );Do these errors appear with other WP themes? I coded this theme with the guidelines in mind, Twenty Fourteen has almost the same structure and it’s the default theme.
I don’t know what to say, what would you like to remove?
You made me curious.. Try adding this in
functions.php/* Remove Hentry /* ------------------------------------ */ function remove_hentry( $classes ) { $classes = array_diff($classes, array('hentry')); return $classes; } add_filter( 'post_class', 'remove_hentry' );Hi! I don’t really know where you got that, are you using any WordPress SEO plugins?
The only “hentry” thing that this theme has is a css class for posts, outputted by WordPress via post_class() (and I can’t change it, it’s included in all the themes that follow basic WP coding guidelines).
Later Edit: You could implement something like this: https://wordpress.org/ideas/topic/exclude-a-class-from-post_class if it’s really necessary.
Forum: Themes and Templates
In reply to: [JustWrite] can't see pages on mobileI don’t know what to say, it appears on my end. There is an image with a calculator and some other stuff laying on a table.