Morten Rand-Hendriksen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Simone] Remove menu button name from top of pageAre you talking about the popup that hovers next to the mouse cursor? If so, go to your Menu customizer and clear the Title Attribute fields. This will be removed in a future version of the theme.
Forum: Themes and Templates
In reply to: [Simone] Having Problems with my Simone Child ThemeTake a look at how the menu is handled in the rtl.css (https://github.com/mor10/simone/blob/master/rtl.css). You have to move three items: The main menu, the social menu, and the search function.
Forum: Themes and Templates
In reply to: [Simone] Image in menu navigationThat is a major undertaking that falls well outside the scope of what the theme is meant to do. You would have to change the Menu walker class and make some significant changes to the menu styles.
To get you started, read up on the Walker classes in WordPress: https://codex.wordpress.org/Class_Reference/Walker#General_Menu_Example
I’m closing this issue as it falls outside the scope of theme support.
This is not a bug but standard behavior for all sites. The footer is not “sticky” but is displayed at the bottom of whatever content is on the page. If the page only has a short amount of content, the footer will climb higher up on the page.
There are ways of “sticking” the footer to the bottom, but they cause issues, especially on mobile devices, and take up a lot of space on pages with more content.
In the Customizer setting you can choose to display excerpts or the full content for index pages. The default is excerpt which will take out things like YouTube videos on all posts except the first one. Switch it to the other setting and all the videos will display.
Forum: Themes and Templates
In reply to: [Simone] Question on summary and 2 sidebar1. You can set a custom excerpt length by using a child theme and defining the new length in a filter in the functions.php file: https://codex.wordpress.org/Plugin_API/Filter_Reference/excerpt_length
2. Adding a second sidebar requires a major rework of the theme. It is not something I would recommend doing.
This is due to the custom Responsive Images function in the theme. That will be removed in the next version because of the upcoming Responsive Images feature which will be included in WordPress core.
Stay tuned for the theme update and the issue should be resolved.
Forum: Themes and Templates
In reply to: [Simone] Header heightSee answer in https://wordpress.org/support/topic/header-height-5?replies=5
Closing this to avoid multiple threads with the same issue.
Forum: Themes and Templates
In reply to: [Simone] Header HeightAfter making the change in the (child) theme files, you have to go to the Customizer and reupload / reapply the image to allow the theme to generate a new crop. The reason you’re not seeing the new size is likely because WordPress still only has the old size available.
Forum: Themes and Templates
In reply to: [Simone] A static image above first post@tatinystavat: Your use case is rather unusual which is why there is no out-of-the-box solution. What you’ve done on your site is correct: Add the content through the header.php file (preferably in a child theme). As for the language question, it looks like you’re using a language plugin to switch between languages, in which case the plugin will have functions to test for language conditions you can use to toggle the graphic on and off. Something like this:
if ( language is Finnish ) { show image } else { nothing }
Forum: Themes and Templates
In reply to: [Harmonic] Issue with portfolio Nav button@kathryn: The problem is caused by an incorrect application of Masonry. Masonry is applied to the
#archive-containerdiv and effects all the items with the.jetpack-portfolioclass which is correct, but because the#archive-containerdiv also contains the.paging-navigationnav which is not targeted by Masonry it is displayed as if the Masonry elements are not there.To fix it (something that should be done asap) the markup on the page needs to be changed to include a wrapper (div or section) that contains the article items so Masonry can handle these separately from the nav. Minor changes need to be made to archive-jetpack-portfolio.php, templates/portfolio-page.php, and js/harmonic-masonry.js
I can submit a patch for this if you like, just tell me where to send it to.
Forum: Themes and Templates
In reply to: [Simone] Remove text headerNo need for custom CSS. In the Customizer, uncheck show site title and tagline and just add a header image. The theme can be configured to show just title+tagline, title + header background image, or just header image
Forum: Themes and Templates
In reply to: [Simone] Simone and WP SEO problemThe theme doesn’t force titles anywhere. The problem is likely caused by something else.
Forum: Themes and Templates
In reply to: [Simone] Centering issue on one-page designThere is a simple solution here: Make sure no-sidebar.css is called for this page instead of content-sidebar.css. This would be done in functions.php. The issue is that the layout stylesheet that is called in assumes a sidebar.
Forum: Themes and Templates
In reply to: [Simone] Display the posts of one category in a PageI’m not sure what you are trying to do here. You have a regular loop at the start (while to endwhile) and then the custom loop which is the code you pasted in. The way this file is put together will not work for various reasons.
If your intent is to make a custom template for a specific category (that’s what new WP_Query does) you can just create a new file based on archive.php that is called category-187.php and that file automatically takes over when that category is displayed. Take a look at the WordPress template hierarchy to get a clear picture of what templates are called in under what circumstances: