webblish
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Lovecraft] Remove header imageRemoving the header images completely destroys the look & feel of the theme. Why not choose another theme?
Forum: Themes and Templates
In reply to: [Lovecraft] Archive list per year?The archive widget is a default WP widget, Marijn. I think you have to use a year archive widget from the plugins archive and look which classes/styles the theme developer used in the monthly archive, and make a custom CSS with corresponding styles.
Het is inderdaad een prachtig theme! 🙂
Gr., Bas
Forum: Themes and Templates
In reply to: [Lovecraft] How to limit number of tags displayed?Here’s a recent how-to: https://techjourney.net/limit-or-increase-number-of-tags-displayed-by-wordpress-tag-cloud-widget/
Remark: make a child theme or your changes are lost while updating the theme.
Forum: Themes and Templates
In reply to: [Lovecraft] Add text to mobile menu toggleYou’ll have to make a child theme to prevent losing your changes if the theme is updated.
In header.php you’ll find this piece of code:
<div class="toggles"> <div class="nav-toggle toggle"> <div class="bar"></div> <div class="bar"></div> <div class="bar"></div> </div>That is the div that will be shown in mobile mode. Just add the word ‘MENU’ to the first div in a span. Add a class to that span so you can give it the style you prefer in a custom CSS.
Forum: Themes and Templates
In reply to: [Lovecraft] How do I align images next to each other?Make a simple gallery with “Add media” in the post editor, choose 2 images and 2 columns.
In functions.php is a pice of code that adds an extra class if there’s featured image:
// Add body class if is_single and has_featured_image add_filter('body_class','lovecraft_is_single_featured_image'); function lovecraft_is_single_featured_image( $classes ){ if ( is_single() && has_post_thumbnail() ){ $classes[] = 'has-featured-image'; } return $classes; }So you can also add the class ‘has-featured-image’ to your style. You have to figure out the exact style by yourself. I’m using the PC Custom CSS plugin to add some custom CSS.
But… the featured image is only shown in the header, so why not delete it in the post???
EDIT: if you use CSS to hide the image, there will be no header as well which looks crappy, so you have to use something like this:
.has-featured-image div.header-image{
background-image: url(“http://domain.com/images/image.jpg”) !important;
}This only works with posts, not pages since the them only adds that .has-featured-image class to posts!
Forum: Themes and Templates
In reply to: [Lovecraft] How to complete localization of this GREAT themeLove the way you are using this theme, really great!
Just put the fr_FR.mo and fr_FR.po files in the ../wp-content/themes/lovecraft/languages/ folder, that should do the trick.
Forum: Themes and Templates
In reply to: [Lovecraft] Sticky post – "star on the demo"Just make the story sticky in the post editor (in the right column, near the publication options).
Forum: Themes and Templates
In reply to: [Lovecraft] Customizing the READ MOREYou better make a child theme, never edit theme files. With the next theme update your changes will be gone…
Forum: Themes and Templates
In reply to: [Lovecraft] Summary does not work for meUse the <more> tag in the post editor and you’ll be fine. That’s a default WordPress feature.
Forum: Themes and Templates
In reply to: [Lovecraft] Sidebar on MobileOh, and add this too, between the @media ( max-width: 1000px ) hooks:
.sidebar h3.widget-title {
line-height:150%;
}Forum: Themes and Templates
In reply to: [Lovecraft] Sidebar on MobileThe sidebar is hidden in mobile view. Since I didn’t like that (there’s the moneymaking part of the site..), I used the following custom CSS:
@media ( max-width: 1000px ) {
.sidebar {
display: inherit !important;
float:left;
width:100%;
margin-top:1em;
padding:2em 1em 1em 2em;
background:#fff;
border:solid 1px #ddd;
}
}@media ( max-width: 500px ) {
.sidebar {
border-style:none;
margin-bottom:1em;
padding:1.25em;
}
}The padding is adjusted for the SRP Special Recent Posts widget, zo adjust it to your own needs. Example: http://www.exotischevakantie.info.
Forum: Plugins
In reply to: [Webcycle Linkbuilding] Verifieren gaat steeds mis, alles staat goedJe bent niet de enige. Bovendien plaatst dat script een do-follow link naar webcycle.nl. Gaat er dus gauw weer af…
Forum: Themes and Templates
In reply to: [Omega] SEO Plugins not working with themeI’ve got the same problem, on all pages of my site with the Church theme.
Forum: Themes and Templates
In reply to: [Radiate] WordPress SEO plugin not working in RadiateI don’t know how your test environment looks but Yoast SEO also doesn’t work with the Radiate theme on my site. So, I’ll have to look for an other theme.