alhe0012
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Oria] Oria theme is not showing the posts correctlyThis is because of the wordpress update 4.6.
See the following request 1 day ago:https://www.ads-software.com/support/topic/problems-after-update-to-46
This should help you out.
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] Plugin only works with firefoxHey thanks for your quick answer, but I could solve the issue by myself.
Of course it was my own fault. ??
You can see the result in the blog as mentioned above. To see the sticky menu you have to open the link in a resolution of a mobile version (smaller than 1000px I think).Forum: Themes and Templates
In reply to: [Oria] Fix the menuDear Andreas,
thank you for this support.
I tried it and it worked gorgeous, but unfortunately only with the browser firefox. Do you know how to solve this problem for the rest of the common browsers?Forum: Themes and Templates
In reply to: [Oria] Location icon appears above featured imageYou are welcome ??
Forum: Themes and Templates
In reply to: [Oria] Creating a child themeYou don’t even need a function.php.
Just copy the following code in the style.css of your child theme folder and change the parts including ‘your name’./* Theme Name: Your Name Theme URI: https://yourname.de Description: Oria Child Theme Author: Your Name Author URI: https://yourname.de Template: oria Version: 1.0 */ @import url('../oria/style.css');
Let me know if it works.
Forum: Themes and Templates
In reply to: [Oria] Location icon appears above featured imageI could solve the problem.
Open the content.php (you can find this document in the folder ‘template-parts’) and search for this code:<div class="entry-thumb"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail('oria-small-thumb'); ?></a> </div>
Now change it to:
<div class="entry-thumb"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('oria-small-thumb'); ?></a> </div>
Save the document and see how it looks like ??
Forum: Themes and Templates
In reply to: [Oria] Fix the menuUnfortunately I do only know that you have to change the positions of the header and the menu. In addition you have to use jquery to run it. But I don’t know how exactly to get it work. Sorry…
Forum: Themes and Templates
In reply to: [Oria] How to remove Page Title from pagesOpen your content-page.php (you can find it in the folder ‘template-parts’)and remove the following code:
<header class="entry-header"> <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> </header><!-- .entry-header -->
Forum: Themes and Templates
In reply to: [Oria] Fix the menuWhich menu do you mean? The social media menu or the main menu? And what exactly do you want to solve?
Forum: Themes and Templates
In reply to: [Oria] How to display featured image on front page?Did you put a check mark in the Design → Customize → Blog Options → Featured Images?
Forum: Themes and Templates
In reply to: [Oria] images on carousel do not appearMaybe this answer is helpful:
Topic-picutre-in-carouselForum: Themes and Templates
In reply to: [Oria] Location icon appears above featured imageI have the same problem and would really appreciate a solution.
Forum: Themes and Templates
In reply to: [Oria] Bilder in CaroussellHi maybe I can help.
iMacfux asked how to place pictures in the carousel.
That’s quite easy:
Just define a post thumbnail (Beitragsbild in German) in each of your posts.Have fun ??
Forum: Themes and Templates
In reply to: [Oria] Turn off header zoomI know how to solve the problem, but unfortunately this solution is related to poor conditions.
Open your style.css and search for the following:
## Structure --------------------------------------------------------------*/ .site-header { background-position: center top; background-attachment: fixed; background-size: cover; background-repeat: no-repeat; position: relative;
The background-size is the one you want to change. This site explains you the possible values for the property:
w3schoolsI choosed “contain” instead of “cover” and it worked great for the moment. BUT the header won’t be displayed correctly in the mobile version. Maybe you can find another way and this first step helps you out.