Hey James,
I’d like to use the “Easy Notification Bar” plug-in with the Highwind theme, but unfortunately the bar does not show up, because your theme does not support the wp_body_open hook which was introduced in WordPress 5.2.0.
Would be cool, if you could edit header.php and look for:
<body <?php body_class(); ?>>
<?php highwind_body_top(); ?>
Then add the hook in between like this:
<body <?php body_class(); ?>>
<?php
if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
}
else {
do_action( 'wp_body_open' );
}
?>
<?php highwind_body_top(); ?>
Thank you very much.
Kind regards,
Bernd
I updated the theme and the gravatar disappeared. I re-edited the line in style.css to no avail.
Can you take me from step one on how to get this image to show up?
Thanks in advance.
]]>Hi,
I made a child theme and now I would like to change those “Older Posts” and “Newer Posts” to my own language (Finnish). I found the file from the parent theme (highwind/framework/highwind-template.php), but when I copied the path (highwind-child/framework/highwind-template.php) and changed the text there, it didnt show up. I also tried to copy whole framework-folder but no changes.
It did show up when I modified it in parent-theme. However, I dont want to modify the original theme so I would appreciate help ??
Thanks!
]]>Hey James, I must say a nice job with Highwind… You really blew my mind off. But I have a little challenge or suggestion, I would like that the homepage is excerpt and not full post.
I tried creating a child theme myself but couldn’t get it. You used a framework am not familiar with. Please can you help me with this.
Thanks
]]><aside class="post-meta">
already contains an LI for the author information. It generates something like this:
<li class="author"><a href="https://www.example.com/" title="Posts by Some Author" rel="author">Some Author</a></li>
can I swap that out entirely with a custom taxonomy? …via some filter I add to invoke my own code?
So just like I have a tags display in the aside
, I’d have another taxonomy displayed.
I can write the code (I’ll borrow from the tags taxonomy) to pull from the new taxonomy, but I don’t know where to ‘splice’ it in via (I’m guessing) an add_filter() call??
]]><aside class="post-meta">
contains an LI for the author information. I generates something like this:
<li class="author"><a href="https://www.example.com/" title="Posts by Some Author" rel="author">Some Author</a></li>
can I swap that out entirely with a custom taxonomy? …via some filter I add to invoke my own code?
So just like I have a tags display in the aside
, I’d have another taxonomy displayed.
I can write the code (I’ll borrow from the tags taxonomy) to pull from the new taxonomy, but I don’t know where to ‘splice’ it in via (I’m guessing) an add_filter() call??
]]>the
<aside class="post-meta"
contains an LI for comments information. Is there a way to completely remove that?
I know I can remove it’s display via CSS, but I’d like to just remove it entirely. Perhaps there’s something similar to how I removed the Gravatar image from the header, via
add_filter( 'highwind_header_gravatar', '__return_false' );
in my child theme?
]]>Hiya,
Is there a way to change the blog title and description in the header for each page? So, on the home page there will be one blog description and title, and on other pages it could be something else?
Thanks,
D
]]>Is there a way to make the columns in the theme a little more, well, responsive?
If I view the theme authors website on a mobile device, the “features” column stay three abreast even on the smaller screen device, which makes it awkward to read.
Is there a way (in the CSS) to get these columns to retain a minimum width and “shuffle” so instead of staying three columns, they reposition beneath each other?
Thank you.
]]>Hi folks…I can’t figure out why the mobile menu (when the screen is made smaller) content is missing. The menu is empty. What am I doing wrong? I’ve tried deactivating plugins, I’ve looked through support documentation, combed the css, and I just can’t figure it out. Help would be very appreciated!
This is where my draft site is located.
]]>Hello, I have an AdSense on frontpage when I use a Highwind theme. Its here https://milanpichlik.cz/ after a first article. How can I delete it?
Thx!
]]>I want to align all the contents in the header section i.e
site title
site description
gravtar icon/picture
all above mentioned are alrady aligned to center in full desktop view but on mobile they are aligned to left – i want them to be aligned to center just like desktop even on mobile.How do i do it ?
]]>i want to remove the small arrow on the botton right that keeps hovering FOREVER and on all pages – how do i do it ?
]]>i want to remove the bezel around the gravatar in the header section – is it possible ?
]]>Hello there …
i want to change the footer color to the colour code #23282d
and then change the font of the footer text to #ffffff
If it includes adding some code please also guide me where extactly to put that code – also recommend good custom CSS plugin if its required.
]]>Hello there …
I want to modify the Full Width Page template in such a way that it removes the header and footer and only leaves behind the blank page – but then i want to change the background of this blank page to green but the background of the rest of the pages that will not be using the new blank template should remain what is the default for Highwind.
Hi
I have just started to develop my website but was wondering how i change the size of the header at the top of the site? Currently i think it is a bit too long and it takes up a lot of the page when you first load the site; is there a way to make it shorter?
I’m quite new to this so any advice/guidance would be helpful. My website is: https://www.theharrisondomain.com
Many thanks,
thehars3
]]>Hello there,
I have looked for this info in the “Highwind theme” support already with no help there so I thought I’d ask here. This is what I want to do:
1. Add a horizontal row of social media icons to the right side of the header so they appear on top of the image.
2. Add a search bar right underneath the row of icons also to appear right on top of the image.
The business I am designing this website for wants it to look exactly like the header on this website: https://www.seibertron.com/ (Obviously with a search bar underneath the icons instead of the links.)
Here is the link to my website: https://www.toyfevertoys.com
I also realize that I may have to make the header space bigger to fit everything in so any help I could get would be greatly appreciated! Thanks in advance!
]]>Hello,
I am using Highwind, and have two questions:
1. How do I make the menu/header the same width size as the main post/sidebar of the page?
2. How can I change the menu background color? It’s some weird blueish gray and I couldn’t find that in the CSS code to to be able to change it.
My website is https://www.toyfevertoys.com
Thanks!
When I install and activate the MailChimp for WordPress (https://www.ads-software.com/plugins/mailchimp-for-wp/) plugin and activate checkbox to comments on the Highwind theme all links on the entire page are deactivated. They still appear as links but do not act as a link. The cursor changes to the hand as if the entire page is a link but does not go anywhere if clicked.
I changed themes and this only occurs on the Highwind theme. Has anyone else run into this? Any ideas on how to fix this?
]]>I am using the <!–more–> html in my posts to reduce the post when shown in a list and the link text shown is the standard “Continue Reading…” I want to change this to “MORE STORIES FROM THIS DAY…“
Is there a way to do this on all existing blogs in the Highwind code instead of entering it manually on each post? I have seen ways on other themes but not on Highwind.
Thanks for your help
]]>How can we make sure that it is always the latest item, that gets shown FIRST, under a category ? Ex: mysite.com/category1/ well it always shows the same items even tho new items are added. You need to go to mysite.com/category/page3.php to get the latest.
Also:
How can we make sure that the page SHOP gets updated when new items are added in various categories. (i’m using SHOP as main page by the way)
I like your Theme very much – although I decided to change a few things for certain reason. But I really have difficulties in locating the right screws:
– When I reduce font size the overall width of the site is also affected. Where/how can I reduce font size independent from other elements?
– I youse “posts” not as posts, but as a portfolio of my projects – each “post” represents one projekt. I managed to hide post tags with CSS:
.post-meta li.tags {
position: absolute !important;
clip: rect(1px 1px 1px 1px); /* IE7 */
clip: rect(1px, 1px, 1px, 1px);
}
In an analog way I also banned Categories, author, and comments – but I failed at post date (top left), last-post-/ next-post-button and “comments are disabled”. Can you tell me how to hide them, too?
Thanks a lot, James, and a happy new Year to you and everybody reading this!
]]>On the main header under the Avatar, how do I change the font color for the page under the title name?
]]>How do I change the footer?
]]>Text links within my pages and posts are not allowing the viewer to access the material when on mobile devices.
I am using the Highwind Theme.
Site is: https://www.drpeever.com
]]>I can’t figure out how to add my logo or an image of me in the round grey header image. I thought maybe if I could go in and edit my profile and change my gravatar from mystery man to a pic of me that would carry over and fix it but I can’t figure out where to do that.
]]>Hi,
I just happened to change my links into pretty permalinks.
everything went well, edited the htaccess file and I can easily navigate on my browser (firefox and tested IE as well) throughout my site
a friend of mine however, tested it on his browser (chrome and IE) and the menu on my site did not show up.
he can manually copy+paste links of my site in the address bar but the menu doesn’t appear.
does anybody know what did go wrong?
my site: curiales.nl
]]>On my site, in IE and Firefox, all of my images auto size to full-width. It seems to work fine in Chrome though. See:
https://haloce3.com/mattdratt/takedown-extermination/
And no idea why this page seems to work fine on IE and FF
https://haloce3.com/mattdratt/firefight-portent-ii/
I’ll admit, I know hardly anything about coding so help is appreciated.
]]>Hey,
I have been trying to remove or at least hide the ”allowed tags” message under the comment section. I have Highwind installed on my blog and I have read about several methods on how to possibly remove or hide this message, but they all applied to different themes.
Does anybody know how to delete this message safely?
Thank you
Link to blog: https://www.curiales.nl (just started yesterday)
]]>