Forum Replies Created
-
AuthorPosts
-
Paul
KeymasterHello Ken,
1) You can make your photos and video embeds have the same width by using Narrator Gallery Gutenberg block to insert images. If you do that, both your images and videos will be slightly wider than the text column. Also, please mind you can put just one image in a gallery if you wish to.
2) The Instagram feed is handled by the Smash Balloon plugin. You could change the settings of the output it provides in the footer.php file in the theme folder. You could do a text search for
imageres=thumb
and replace it withimageres=full
orimageres=medium
. This would force the plugin to fetch bigger images. And this would inevitably slow down your website a bit. Please mind that to not lose a change like that during a theme update, it’s best to apply it by creating a child theme.Also, are you having this issue when looking at the theme demo?
Regards,
PaulPaul
KeymasterHi Digital Cosmonaut,
I see what you mean. The dropdown menu is triggered with a click. So if the parent item would still be a link, there would be a contradiction. Once you click the parent item, it would not be clear what to do: take you to the parent link or open the dropdown menu. Because both these actions would be bound to that click. So that’s why once you add child items to a menu link, it becomes a container for them and stops being a link. This is the behavior that the creator of the ‘Bootstrap Nav Walker’ component (that the theme is using) has implemented.
I believe you can achieve what you are looking for by adding an ‘All’ item as a child:
Countries - All - France - Belgium - United States
Regards,
PaulMarch 23, 2021 at 1:38 pm in reply to: Demo site crashes when Javascript turned off – testing purpose #4362Paul
KeymasterHello Stan,
Thanks for the kind words about the design of the theme.
Frankly speaking, making the theme work without JS has never been an objective while working on it. In fact, I suspect that most of modern websites would be hardly usable without JS.
Anyway, you can actually make the preloader always be hidden (like it’s not there at all) with a single line of CSS. Please let me know if you’d like to test how that would look and feel.
Regards,
PaulPaul
KeymasterHello,
There have been similar errors caused by WordPress having switched from jQuery 1 to jQuery 3. I assume the error you encountered has been caused by that. As of now, the current version os the theme (1.4.5) has fixed the issues with jQuery compatibility and should run smoothly.
Regards,
PaulPaul
KeymasterHi Mike,
Sorry for the late reply.The top reasons for this would be:
Using images which have been uploaded when the theme was not active (you’d need to regenerate thumbs),
Not using images that are big enough (use images that are at least 1500px by the bigger size),
Interference from third-party plugins.Regards,
PaulPaul
KeymasterVikki,
Sorry for the late reply.This issue had been present for some time, and has long been fixed, i.e. it is not present in the current version of the theme (1.4.5). However, this could also been caused by meddling with the markup in WP editor.
Anyway, if you are still experiencing this, please send me an email with your WP Admin credentials to pavel [at] mauer.co and I will take a look at what could be causing this.
Regards,
PaulPaul
KeymasterNico,
I have been testing this for some time and I believe this is dealt with Jetpack. I have experienced issues with Jetpack 9.5 under WP 5.7 where the images would not load in Firefox. I believe the problem is dealt with Jetpack not dispatching the event on lazy images load. I have installed Jetpack 9.3 and the issue is gone. Having an up-to-date version of the theme also helps as WP 5.6 has swapped jQuery 1 for jQuery 3 and older version of the theme may have issues with jQuery 3.
The theme demo is currently running:
WP 5.7, Jetpack 9.3, Stills 1.4.5 with no issues as far as I can see.Regards,
PaulPaul
KeymasterYou are very welcome, Meli.
Paul
KeymasterHello MS,
Yes, you can change the default dropdown menu behavior so that the dropdowns are shown on hover instead of on click. To do that please copy this CSS code, go to Appearance > Customize > Additional CSS, paste the code and click the ‘Publish’ button.
/* Bootstrap 3 - Navbar dropdown on hover */ @media (min-width: 768px) { .sidebar-nav {padding: 9px 0;} .dropdown-menu .sub-menu { left: 100%; position: absolute; top: 0; visibility: hidden; margin-top: -1px; } .dropdown-menu li:hover .sub-menu {visibility: visible;} .dropdown:hover .dropdown-menu {display: block;} .nav-tabs .dropdown-menu, .nav-pills .dropdown-menu, .navbar .dropdown-menu {margin-top: 0;} .navbar .sub-menu:before { border-bottom: 7px solid transparent; border-left: none; border-right: 7px solid rgba(0, 0, 0, 0.2); border-top: 7px solid transparent; left: -7px; top: 10px; } .navbar .sub-menu:after { border-top: 6px solid transparent; border-left: none; border-right: 6px solid #fff; border-bottom: 6px solid transparent; left: 10px; top: 11px; left: -6px; } }
As for the 3-level deep menu, this theme only supports 2-levels deep.
Regards,
PaulPaul
KeymasterYou are very welcome!
If you enjoy the theme (or the support), I’d be grateful if you could rate it on ThemeForest. This literally takes a couple of seconds, but creates a big difference.
Regards,
PaulPaul
KeymasterHello MS,
The theme is translation-ready, so the static strings like “search”, ”follow”, etc. can be translated in a regular WordPress way. For instance, you could use the free Loco Translate plugin to do that.
This forum post has detailed instructions on how to use Loco Translate to translate static texts: link.
Regards,
PaulPaul
KeymasterHello Celia,
Narrator 1.3.5 update is now available on ThemeForest. It has the loading=’lazy’ attribute in Narrator Gallery Block images, which adds browser-native support for lazy loading of images. You may want to check it out and see how it works for your purposes.
Regards,
PaulPaul
KeymasterHi Marina Baptista,
It looks like you are using the “All files & documentation” zip instead of the installable zip.
Please unzip the file “Narrator WP Theme 1.3.5.zip” on your computer.
You will find a file called “mauer-narrator.zip” inside. That is the installable file.You can find a bit more info about this here.
Regards,
PaulPaul
KeymasterHello Celia,
If you delete the ‘Website’ field from the comment form, you can use the following CSS code to make the ‘Email’ field have a closed border on the right:
.section-main-content .comment-respond p.comment-form-email input { border-right: 1px solid #E2E2E2!important; } .section-main-content .comment-respond p.comment-form-email input:hover, .section-main-content .comment-respond p.comment-form-email input:focus { border-right: 1px solid #a2a2a2!important; }
You can add this code by going to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’. Just paste the following code there and click ‘Publish’.
Regards,
PaulPaul
KeymasterIf you do not want the preloader, it’s best to delete the following code from header.php:
<div class="mauer-narrator-preloader"> <div class="mauer-narrator-spinner"></div> </div>
Paul
KeymasterYou are welcome.
Paul
KeymasterOliver,
Judging by the website links you previously sent me in the email, I believe you have figured out how to use the theme. Anyway, I hope you are finding the User Guide useful. And don’t hesitate to let me know if you need anything else.
Regards,
PaulFebruary 21, 2021 at 9:10 pm in reply to: Change “more link” text and responsive dropdown menu #4280Paul
KeymasterPlease send your website address and WP Admin credentials to pavel [at] mauer.co and I’ll take a look and what could be the cause.
Paul
KeymasterHello Key,
You can use the following CSS code to achieve that. You can add this code by going to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’. Just paste the following code there and click ‘Publish’. Feel free to change 4.4rem to the size you like (e.g. 3.8rem):/* Remove the category name from category archives */ body.archive.category .mauer-storyteller-archive-title {display:none;} /* Remove categories from post archives (e.g. the blog home page) */ .post-card .entry-cats {display:none;} /* Control the font size of post title on post page */ .entry-full .entry-title { font-size: 4.4rem; /* default 4.4rem */ }
Regards,
PaulFebruary 11, 2021 at 3:44 pm in reply to: Change “more link” text and responsive dropdown menu #4273Paul
KeymasterThe dropdown menu is shown on click by design. However, you can change that and have it shown on hover with the following CSS. Please copy this code, go to Appearance > Customize > Additional CSS, paste the code and click the ‘Publish’ button.
/* Bootstrap 3 - Navbar dropdown on hover */ @media (min-width: 768px) { .sidebar-nav {padding: 9px 0;} .dropdown-menu .sub-menu { left: 100%; position: absolute; top: 0; visibility: hidden; margin-top: -1px; } .dropdown-menu li:hover .sub-menu {visibility: visible;} .dropdown:hover .dropdown-menu {display: block;} .nav-tabs .dropdown-menu, .nav-pills .dropdown-menu, .navbar .dropdown-menu {margin-top: 0;} .navbar .sub-menu:before { border-bottom: 7px solid transparent; border-left: none; border-right: 7px solid rgba(0, 0, 0, 0.2); border-top: 7px solid transparent; left: -7px; top: 10px; } .navbar .sub-menu:after { border-top: 6px solid transparent; border-left: none; border-right: 6px solid #fff; border-bottom: 6px solid transparent; left: 10px; top: 11px; left: -6px; } }
Regards,
PaulPaul
KeymasterHi Ben,
The theme is actually using imagesLoaded, please see proof: screenshot.
Can you please let me know if you are experiencing the same issue on the Samsung phones in the theme demo?
Regards,
PaulFebruary 11, 2021 at 3:30 pm in reply to: Change “more link” text and responsive dropdown menu #4269Paul
KeymasterHi JPZaera,
As for translating the static strings like “read”, “previous posts”, etc., this can be done the standard WP way (the theme provides a POT file). For instance, you could use the free Loco Translate plugin to do that. Please see the following post for details: http://mauer.co/topic/font-hk-grotesk-vs-polish-language/#post-3658
Regards,
Paul-
This reply was modified 1 month, 4 weeks ago by
Paul.
Paul
KeymasterHello,
All required plugins come bundled with the theme.
Please see the user guide at http://mauer.co/essentialist-user-guide/
It has detailed instructions on how to set up the theme, including how to install the required plugins.
Regards,
PaulPaul
KeymasterHi Lucas,
As stated in the User Guide, Bild actually has customizable colors. If you go to “Theme Options” > “Colors” and check the “Use custom colors” checkbox, you’ll be able to control the colors with the 9 color pickers.
Regards,
PaulPaul
KeymasterYou are very welcome, Juan!
December 12, 2020 at 2:45 pm in reply to: Unable to update theme and instagram photos not visible #4235Paul
KeymasterHello Kashif,
Here are step-by-step instructions on how to update the theme — link.
And to get Instagram running you’d need to follow “6. Instagram feed setup” section of this user guide.
If that does not help, please send me an email to pavel@mauer.co with the address of your website and your ThemeForest purchase code (here is how to know it) and I will provide you with more detailed instructions on how to update the theme and get Instagram running.
Regards,
PaulPaul
KeymasterHello Kashif,
Here are step-by-step instructions on how to update the theme — link.
And to get Instagram running you’d need to follow “6. Instagram feed setup” section of this user guide.
If that does not help, please send me an email to pavel@mauer.co with the address of your website and your ThemeForest purchase code (here is how to know it) and I will provide you with more detailed instructions on how to update the theme and get Instagram running.
Regards,
PaulPaul
KeymasterHello Tomasz,
You can do it by going to ‘Appearance’ > ‘Edit CSS’, adding the following line of code there
.entry-sticky {display:none;}
and clicking ‘Publish’.This will remove the sticky word and icon, but will keep the dash however. We’re rolling out a theme update next week that will also remove the dash.
Regards,
PaulPaul
KeymasterHi Robin,
Sorry for the late reply.As of this moment, I don’t seem to be able to reproduce the Masonry overflow on your website. Basically, it could be caused by a caching issue, by some other javaScript messing with Masonry (e.g. lazy loading scripts), or by the Masonry library itself, as frankly speaking, sometimes it does that. Please let me know if you are still experiencing this on your website, and then I’ll ask you for the login credentials so that I could take a look on the inside.
Regards,
PaulPaul
KeymasterHello Celia,
You can achieve that by introducing a new thumbnail size and then using it in the single post template.
Basically, you can add the following line into functions.php around line 171 (see screenshot).
add_image_size( "mauer_narrator_cover_thumb_2", 1000, 1000, FALSE );
Then you’d need to go to single.php and change “mauer_narrator_cover_thumb”
into “mauer_narrator_cover_thumb_2” here.And then regenerate the thumbnails.
It’s best to do such customizations in a child theme so that they don’t get overridden during theme updates, or you can re-introduce them after every theme update.
Regards,
PaulP.S.
Please mind that customizations are not included into the support according to ThemeForest rules and you’d be making this customization at your own risk.Paul
KeymasterHello Celia,
I believe you’ve figured this out as currently the lazy loading on https://www.travelcloseup.de/volunteering-with-elephants/ works like a charm.
Anyway, I wanted to let you know that HTML now natively supports lazy loading, and I will introduce it to these galleries in the next theme update. However, frankly speaking, what you currently have is even better.
Regards,
PaulPaul
KeymasterHello Lenn,
My bad — the import won’t work like that, but you can insert the code to the header via a free plugin like this one.
The code should be inserted into the header, but you should not strip out the
at the beginning and the end.
Regards,
PaulPaul
KeymasterHello Artur,
I’ve just sent you a quote to the email with which you are registered on this forum.
Regards,
PaulPaul
KeymasterMeli,
A quick update: Stills 1.4.3 is now available on ThemeForest. It fixes the issue.
The error itself was happening due to Jetpack having changed the code of the Lazy Images module. The new version of Stills adapts to this change and works correctly with the newer versions of Jetpack as well as with the older ones.
Regards,
PaulPaul
KeymasterHi Meli,
The quick fix is to comment out line 1660 in the functions.php file:
add_action('wp_head', 'mauer_stills_fix_lazy_images_for_logged_in_users');
Just add two slashes in front of the line (should look like that) and save the file. This will break the lazy images for logged in users (but not for outsiders).
In the meantime, I’m working on updating the theme to fix this conflict.
Regards,
PaulPaul
KeymasterThank you! Stay safe.
Paul
KeymasterHello,
2. This is most likely caused by one of the photos in the gallery having too small dimensions. Please make sure you use photos in these galleries that are at least 524x524px. Thee bigger the better. But not to strain your hosting I would not recommend going over 3750x3750px. WordPress and the theme will automatically create scaled versions of the images for you from the big ones you provide.
1. These were actually designed for horizontal shots, and are cropped on purpose for consistency between posts. To bring that customization to life you’d need to put in a fair amount of custom coding.
Regards,
Paul-
This reply was modified 6 months, 2 weeks ago by
Paul.
Paul
KeymasterHello Lenn,
You can bump up the font size in the navigation by using the following CSS:
.mauer-navbar {font-size: 1.25rem;}
Just replace 1.25 with the value of your liking.
You can add the above CSS code to your website by going to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’. There please just paste the code and click ‘Publish’.
As for using Google Fonts, although there is not an option for that out-of-the-box, you can still do it. I’m not including this option as all fonts are different in actual size, line height, etc. (e.g. Times and Helvetica are not physically the same size at 16px). So each time you change a font, the design actually needs tweaking.
Anyway, you can use the code that Google Fonts provides, which, for example, looks something like this for Open Sans (see where I’m getting this — screenshot):
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&display=swap');
(See I’ve removed out the
<style>
and</style>
at the beginning and at the end).You can insert that code in the same area I’ve mentioned (‘Appearance’ > ‘Customize’ > ‘Additional CSS’)
And finally, introduce some rules, e.g. fo body text:
body {font-family: 'Open Sans', sans-serif;}
The grey bar at the top has extra spacing because of the Bunyad Shortcodes plugin, which adds its own style to Bootstrap’s .row class. You can check that by disabling the plugin and seeing if the issue persists (might need to clear browser cache to see the result). Anyway, you can override the override by using:
.section-top-stripe .row {margin-bottom:0;}
You can add this code the same way as the other CSS (see above).
Regards,
Paul-
This reply was modified 6 months, 2 weeks ago by
Paul.
Paul
KeymasterHello,
Please see instructions on removing the category here: https://mauer.co/topic/how-to-remove-parent-category-in-gallery-categories-bar
As for sorting the works in the Masonry layout, the Bild theme obeys the general WordPress logics and sorts posts (portfolio projects, gallery posts, etc.) by date. So you can assign the dates to the projects so that they are sorted the way you’d like them to be. You can also use a third-party plugin for that. G.g. this one. Given the number of projects you have, I’d go the manual way with the dates.
Also, please mind that Masonry has its own logics of sorting that lets it fill the space in the most efficient way. So when using Masonry you will not have full control over the placement of the items due to the nature of Masonry.
Regards,
PaulSeptember 28, 2020 at 2:32 pm in reply to: How to remove "parent category" in gallery categories bar #4166Paul
KeymasterHello Signe,
I’ve just checked and can confirm that the above code still works for in the current version of the theme. Please see screenshot. Please check that the CSS has been added in a way that is update-proof. I would recommend adding this code by going to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’. Just as you see in the screenshot.
Also, I’ve just tested both the “Show gallery categories menu” and “Show portfolio categories menu” in the Theme Options, and they also work. Please try re-saving the Theme Options if you are experiencing these checkboxes not working.
As for hiding the parent category, basically you can hide any category from the categories menu by specifying its id in the following manner:
.cat-item-8 {display:none!important;}
Please replace the 8 with the id of the category you would like to hide. To find the ID of a given category, please go to its edit screen in the admin and see the ID in the URL. Here is an example: screenshot.
Kind Regards,
PaulPaul
KeymasterSorry, my bad. Please use this:
<div class="juan-custom-author-box">Post by: <a href="<?php echo get_author_posts_url(get_the_author_meta('ID')); ?>"><?php the_author(); ?></a></div>
This should display all the posts by a certain author. There is not a template for an author in this theme per se.
Regards,
PaulPaul
KeymasterHi Didie,
I have just tried to reproduce this.
I am using Narrator 1.3.4 (the one currently available on ThemeForest).
I am adding a YouTube video via the Gutenberg’s ‘Embed’ block like this — please see screenshot.
And the result I am getting on the front end is this — please see screenshot.
There was a glitch in the previous version of the theme that affected the embed captions. Please make sure you are using version 1.3.4, and if the issue still persists please clear your caches.
Regards,
PaulPaul
KeymasterHi Juan,
Sorry for the late reply.
You can use the following code to display the author in the archive pages (in single ones as well). This will work without any additional plugins — just native WordPress functionality:
<div class="juan-custom-author-box">Post by: <a href="<?php get_the_author_link(); ?>"><?php the_author(); ?></a></div>
The template files to add it to depend on the layout you use. Basically, they are:
content-big_latest.php
content-grid_2_cols.php
content-grid_3_cols.php
content-masonry.phpThen you can use some CSS to style this block with:
.juan-custom-author-box { }
___
I have tried this plugin you mentioned and from what I can see, it is not adding the names of the authors to the archive pages even in the standard WP theme (I have tried with Twentynineteen). Regardless of whether I use the argument kindly suggested by Ander or not. I have tried using add_action() and also executing the shortcode they offer via do_shortcode().
As this is not working with the standard WP theme, I believe the issue is on the plugin side.
Anyway, I hope the snippet I have suggested works out for you.
Regards,
PaulPaul
KeymasterHi Celia,
Do you mean this for the blog page where all posts are displayed or for a single post page?
Regards,
PaulPaul
KeymasterHi Celia,
WordPress creates the default thumbnails: 150×150, 300×300 1024×1024. Unless these have been changed in Settings>Media.
The Narrator theme creates the following thumbnails:
781×584, 510×382, 680×680 soft-cropped, 800×800, 1200×900, 1920×1920 soft-cropped.If you have other sizes, that means you have changed the above ones. For instance, with that plugin that you used for overriding the sizes.
Regards,
PaulPaul
KeymasterCelia,
A way to speed up your images is to start using Cloudflare. Their free plan includes CDN for static assets like images. So your pictures will start loading from a location closest to the user. This won’t be a dramatic difference, however, it will improve the performance.
If you start using Cloudflare, make sure to install their WP plugin as well — not to have to manually purge the cache every time you update your content.
Regards,
Paul-
This reply was modified 8 months, 1 week ago by
Paul.
Paul
KeymasterP.S.
Just in case, here is a reminder on how to update a theme: https://mauer.co/how-to-updateAugust 3, 2020 at 12:43 pm in reply to: Instagram Legacy API permission was disabled on June 29, 2020 #4127Paul
KeymasterP.S.
Just in case, here is a reminder on how to update a theme: https://mauer.co/how-to-updatePaul
KeymasterHello,
An updated version of Narrator with working Instagram feed has been out on ThemeForest for a while. Please go to your Downloads section on ThemeForest and download the latest version. It has integration with a third-party plugin that will display your feed just as in the demo.
Please see the following section in the User Guide for detailed instructions: Instagram Feed Setup.
A little context:
Facebook (who own Instagram) have changed Instagram API mid-summer 2020 and they made the old tokens that you may have acquired obsolete. Also, due to COVID-19, Facebook has paused developer verification which is needed to start accessing Instagram data after the API change. Until Facebook resumes developer verification, Mauer Themes has switched to a third-party plugin for displaying the Instagram feed.Regards,
PaulAugust 3, 2020 at 12:39 pm in reply to: Instagram Legacy API permission was disabled on June 29, 2020 #4124Paul
KeymasterHello,
An updated version of Essentialist with working Instagram feed has been out on ThemeForest for a while. Please go to your Downloads section on ThemeForest and download the latest version. It has integration with a third-party plugin that will display your feed just as in the demo.
Please see the following section in the User Guide for detailed instructions: Instagram Feed Setup.
A little context:
Facebook (who own Instagram) have changed Instagram API mid-summer 2020 and they made the old tokens that you may have acquired obsolete. Also, due to COVID-19, Facebook has paused developer verification which is needed to start accessing Instagram data after the API change. Until Facebook resumes developer verification, Mauer Themes has switched to a third-party plugin for displaying the Instagram feed.Regards,
Paul-
This reply was modified 8 months, 1 week ago by
Paul.
Paul
KeymasterHello Vikki,
You are right — Theme Options will be a separate top-level admin menu item. What you need to do to have it show up is install the required plugins, namely the ACF Pro. For that, please follow the first section of the User Guide.
Regards,
PaulPaul
KeymasterGlad to know you’ve figured this out, Loes!
Cheers
Paul
KeymasterYou are very welcome! Glad to know you like the theme.
If you’re enjoying the theme (or the support), I’d be really grateful if you could rate it on ThemeForest. This only takes a moment, however, creates a big difference.
Paul
KeymasterHi Loes,
Please mind that this theme does not claim to have WooCommerce support, so additional styling may be needed.
As for hiding that grey area, you can use the following CSS to do that:
.entry-full.type-product .entry-thumb {display:none;}
You can add the above CSS code to your website by going to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’. There please just paste the code and click ‘Publish’.
Regard,
PaulPaul
KeymasterAnd you did not actually mention you wanted to override the thumbnail sizes when you were asking about the image sizes.
Paul
KeymasterNo worries.
Paul
KeymasterYou are welcome, Celia.
Paul
KeymasterI see. If you continue serving big images, you won’t get good speed. And please mind that you will need to recreate the galleries each time after you change the thumbnail sizes.
Paul
KeymasterHello Michael,
Please excuse the late reply.
The menu ‘hamburger’ being shifted to the left on mobile has been fixed in the latest release of the theme that you can download from your ThemeForest account.
And as for the title being broken into two lines, actually this is by design. Otherwise the title would start overlapping the ‘hamburger’ menu. However, what you can do is play around with CSS to fix this. Your website is behind a password. But I assume the four words are “United Fan Culture Archive”.
You could use the following CSS to make the text smaller and thus keep it on one line. Please mind, that in some narrower resolutions the text will still be broken into two lines.
@media (max-width: 570px) { .site-logo.mauer-logo-mobile a h1 { font-size: 1.4rem; position: relative; bottom: 0.4rem; } }
You can add the above CSS code to your website by going to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’. There please just paste the code and click ‘Publish’.
Regard,
PaulPaul
KeymasterCelia, please see my reply in this thread: https://mauer.co/topic/loading-speed-image-size
In a word, you have overridden the thumbnail sizes with a third-party plugin and started showing full-size images where thumbnails should be used. That led to pages as heavy as 23 Megabytes. Please see the solution in the linked thread.
Paul
KeymasterCelia,
From what I can see right now your Masonry layout is working on mobile exactly as the Masonry layout in the theme demo. Please post a screenshot of the behaviour you are describing. Thanks.
Regards,
PaulPaul
KeymasterYou do not need to mess with the thumb sizes yourself. The theme does this for you. It creates a small image for the respective thumbnail and creates a big image for showing in the lightbox. But when you override this, you break things and start showing gigantic images all over the place. That is why a page like this one starts weighing 23 Megabytes. And surely 23 Megabytes is a lot of data to load! But if you do the theme do its thing and don’t override it, the page will be waaaaaay smaller. For instance, this page is 2 Megabytes. Just because it does not meddle with the theme’s default behaviour.
Autoptimize is a poor patch for this. The browser will still have to load those 23 Megabytes. I would not advise to use it.
Anyway, please do what I described in the previous comment. And after you do that you will need to recreate the galleries.
Paul
KeymasterCelia,
For whatever reason, you have installed a plugin called “Simple Image Sizes” and you have overridden the image sizes that are introduced by the theme and you have made them really big. 2800 by 2800.
Now your thumbnails are gigantic and they slow down the page.
That is why regenerating the thumbnails did not help. Because you had the sizes overridden.
Please remove the “Simple Image Sizes” and regenerate the thumbnails the way I described above.
Regards,
PaulPaul
KeymasterP.S.
Be sure to clear your caches to see the result.
Paul
KeymasterHi Celia,
That is how the browser takes care of the long words that do not fit. For instance, here is how this word looks in the default WordPress theme developed by WordPress themselves:
What I suggest you do is either rename the page so it does not have a 21-word long title (I don’t speak German, but maybe it can be something like ‘protection of data’ instead of ‘dataprotection’). Or you can add the following CSS to shrink the title in this particular page when the screen is narrow:
@media (max-width: 400px) { .entry-full.post-1921 h1.entry-title { font-size: 3.4rem; } }
You can add this CSS code the same way you added the EU Cookie Law Widget CSS I have provided.
Regards,
PaulPaul
KeymasterYou are very welcome, Didie!
Paul
KeymasterYou are welcome, Celia!
Paul
KeymasterGood to hear that, Didie!
Keep rocking!Paul
KeymasterSure, you can remove the featured image at the start of a particular post by using the following instead of the CSS I’ve posted above:
.single-post.postid-236 .entry-full .entry-thumb {display: none;}
Replace 236 with the ID of the post you’d like to target.
Paul
KeymasterCelia,
Please send your WP Admin credentials to pavel [at] mauer.co and I’ll take a look at what may be causing this.
Regards,
PaulPaul
KeymasterHello,
As Evgeni has kindly mentioned, Instagram has changed its API (the rules under which other developers can access their data). We are currently working on bringing the new API into the themes and hope to ship the updates compatible with the new API very soon. However, this will require a review from Facebook (who own Instagram), so I can not tell when exactly these updates will be shipped, because I don’t know how long it will take Facebook to review the app and confirm fair use of the API.
Please stay tuned for the theme updates. You should receive an email once an update is available on ThemeForest.
Regards,
PaulPaul
KeymasterP.S.
And as for uploading 2800 x 1867 images, yes this is totally fine. The demo uses images that are 3750 by the bigger size, and it works fast. Because those images are resized by WordPress into several sizes (“thumbnails”). The issue you have is not the size of the images you upload, it is that you don’t have the thumbnails generated — as you first uploaded images and then changed the theme. Again, this is not something Narrator-specific and is true for almost any theme. So please regenerate the thumbnails as described above.Paul
KeymasterCelia,
This theme creates special versions of the images you upload to show them in respective areas. In fact, almost all WordPress themes do this. This is done to reduce the size of the pages, which, in turn, improves the speed of the website. After you switch theme, you need to regenerate those images “thumbnails”, or otherwise your website will be serving full-size images where it is not necessary.
My guess is that you have uploaded these images before switching to the Narrator theme. This is not a theme specific issue, and regardless of the theme you use, after switching you need to regenerate thumbnails.
So please install and activate this plugin. Then go to “Tools” > “Regenerate Thumbnails”, click “Regenerate Thumbnails For All XX Attachments” and wait for the process to finish.
Then you might need to clear your browser cache to see the results.
Regards,
PaulPaul
KeymasterHello Celia,
You can just use this CSS to make the customisation. You can change the font of the pop-up in the bottom with the following CSS:
.widget_eu_cookie_law_widget { font-family: 'mauerRenner', 'Futura', 'Helvetica Neue', Helvetica, Arial, sans-serif!important; } #eu-cookie-law { font-size: 13px!important; }
You can add the above CSS code to your website by going to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’. There please just paste the code and click ‘Publish’.
The result will look like this: screenshot.
Regards,
PaulPaul
KeymasterThe update focused on improving the experience of the standard Gutenberg blocks. It also introduced some SEO improvements like using the h1 tags smarter based on your clue and moving the search popup code to the bottom of the page. The Narrator Gallery block’s backend styles were adapted to the latest releases of WP.
Paul
KeymasterHi Didie,
Each time you update the theme, the custom code changes you made to it will be lost.
There are ways to prevent this from happening. If you add CSS the way I proposed above (‘Appearance’ > ‘Customize’ > ‘Additional CSS’) it will stay intact during theme updates. But that ony concerns CSS.
However, the changes laid out above are not only CSS, but also HTML and PHP. So basically you need to include this line every time you update the theme:
if (is_category()) {echo ‘
‘ . category_description() . ‘‘;}
If you want to keep intact all the changes (not only CSS) during theme updates, you need to customize your theme by creating a child theme (as I mentioned in the original reply in this thread that provided the code customisations).
Regards,
PaulPaul
KeymasterP.S.
I’ve seen your email saying “The word Tag, Category and Related are H1 in the CSS”. Actually, something can not be declared an h1 in the CSS. It’s the HTML markup that matters.
Here is what is h1 in this theme:
1. Text logo on front page (not on archive pages).
2. Archive titles (like “Category: architecture” at the top of this page).
3. Post titles on single post pages.Nothing more is an h1 as of Narrator 1.3.2.
Paul
KeymasterHi Didie,
I have issued an update to Narrator in June. The latest version is 1.3.2. And it takes care of this comment of yours.
So if you take a look at the markup of the page now, it only has one h1, which is the title of the post. Please see screenshot.
Regards,
PaulPaul
KeymasterHi Joy,
With a widget, you can not have the Instagram images displayed across the page. They can only occupy the space of the widget and can not go outside.
You could use the Instagram functionality of the theme to have your posts displayed across the page (instead of using a third-party plugin). And my reply above was applicable to this solution. That would look like so:
However, Instagram has just changed its API on June the 1st, and the display of Instagram posts is not working in the theme anymore. I’m sorting this out now and will issue a theme update soon that will fix this.
So please check your email for notifications on the theme update, then download and updated version of the theme, follow the user guide and set up the Instagram reel at the bottom of the page.
Regards,
PaulJuly 2, 2020 at 4:26 pm in reply to: Instagram Legacy API permission was disabled on June 29, 2020 #4005Paul
KeymasterHi Evgeni,
Figuring this out right now. Will issue an update soon.
Regards,
PaulPaul
KeymasterHi,
If you are talking about Projects (not blog posts): they do not display featured images at the top of the projects themselves. So you can just start with any block (e.g. a video), not necessarily an image.
And if you are talking about the blog posts, you can hide the featured image with this line of CSS and as with projects, start with any block you like, be it video or anything else.
.single-post .entry-full .entry-thumb {display: none;}
As for the featured images in post grids (not in single views), you can only use images there.
Regards,
PaulPaul
KeymasterHi Marco,
This error is fixed in the version that is currently available on ThemeForest (1.4.2.), please update to it and let me know if the issue persists.
Also, as Gutenberg is run on React, sometimes restarting the computer helps. E.g. I sometimes have troubles with the native gallery block of WP, and it starts working normally after a restart.
Regards,
PaulPaul
KeymasterGlad to know you’ve figured this out. Thanks for using the theme.
Paul
KeymasterHello Samuel,
Glad to know you’ve figured this out.
Thanks for using the themeStay safe.
Regards,
PaulPaul
KeymasterHello Samuel,
Glad to know you’ve figured this out.
Regards,
PaulPaul
KeymasterHi Olga,
Just wanted to let you know that this has been fixed in Stills 1.4.2 which is currently the latest version on ThemeForest.
Regards,
PaulPaul
KeymasterHi,
You’ve probably figured this out by now, but sure, you can do that in a regular WordPress way — just add a custom link and use the address of your category as the URL (e.g. /proj-cat/fashion )
Regards,
PaulPaul
KeymasterHello,
You can disable the preloader with the following CSS:
.mauer-narrator-preloader { display:none!important; }
You can add the above CSS code to your website by going to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’. There please just paste the code and click ‘Publish’.
Can you please elaborate on the logic behind the conclusion that the preloader interferes with the indexing? Thanks.
Paul
KeymasterHi Olga,
I’ve applied the fix. You might need to clear your browser cache to see the result.
Sorry for the hiccup.Regards,
PaulPaul
KeymasterHi Olga,
Sorry for this bug. It’s caused by Jetpack having changed the event for firing the lazy loading. I will fix it in the next theme update.
In the meantime, if you send me your WP Admin credentials to pavel [at] mauer.co, I can apply a quick fix. Please ping me here after you send the email.
Regards,
PaulPaul
KeymasterYou are very welcome, Simon!
Paul
KeymasterHi Simon,
I’ve just applied the fix. Please take a look. You may need to clear your browser cache to see the result.
Regards,
PaulPaul
KeymasterB4s, Silvia,
Please excuse the late reply.
Yes, B4s is right: when updating the theme you also need to update the bundled plugins. This is said at the top of the support page (see the yellow messages), as well as in the How to Update page that is linked to from the theme archive.
As for Gutenberg, it is the default editor for WP versions starting from 5.0, so there are no special actions required to activate it. It is not a separate plugin, but rather a part of the WP core.
I see what you mean about images not appearing in the preview. I’ll fix it in the next theme update.
Regards,
PaulPaul
KeymasterHi Silvia,
The reply above is a bit outdated. You can now manually organize images and decide which ones will stand in one row next to each other, and which ones will stand one per row. For instance, this project has been assembled manually, and I was controlling each image width — by using or not using the #half tag.
In a word, when you want to make two images stand side by side, you just write a #half tag in their captions (the tag itself does not appear on the front-end). You can find a more elaborate explanation with examples in this page: Galleries Showcase.
As for the old projects, as WordPress 5 has been a major change in the whole engine, the only way is to recreate your project galleries.
The major functions of Jetpack used in this theme are lazy image loading and social sharing. I’ll be posting an update to the theme this month and will make sure to eliminate any possible reasons for Jetpack crashing in the theme.
Regards,
PaulPaul
KeymasterHello B4s,
Actually, you have been able to update to ACF Pro 5.7.13 because it’s bundled with Bild 1.2.
Regards,
PaulPaul
KeymasterHello Celia,
I believe you are seeing the comment form on your computer and not seeing it on your phone because you are logged in to the admin panel on your computer. This is how WordPress itself works and is not something that has been introduced by the theme.
If you want to hide this form, you need to disable comments on your website.
For new articles, this can be done by going to ‘Settings’ > ‘Discussion’ > unchecking ‘Allow people to post comments on new articles’.
For the existing articles, you need to start editing each article and uncheck the ‘Allow Comments’ checkbox in the ‘Discussion’ section in the right sidebar.
As for the ‘g’, can you please post a link to this article so I could take a look?
Regards,
PaulPaul
KeymasterHello Celia,
The names of the typefaces used in this theme are ‘Renner’ and ‘Spectral’.
Regards,
PaulPaul
KeymasterI have just sent you a quote to the email with which you are registered on this forum.
Please let me know if it works for you.Paul
KeymasterHi Simon,
Thanks for the credentials. However, can you please also let me know what the URL of your website is?
Regards,
Paul -
This reply was modified 1 month, 4 weeks ago by
-
AuthorPosts