Title: lenker's Replies | WordPress.org

---

# lenker

  [  ](https://wordpress.org/support/users/lenker/)

 *   [Profile](https://wordpress.org/support/users/lenker/)
 *   [Topics Started](https://wordpress.org/support/users/lenker/topics/)
 *   [Replies Created](https://wordpress.org/support/users/lenker/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/lenker/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/lenker/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/lenker/engagements/)
 *   [Favorites](https://wordpress.org/support/users/lenker/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/lenker/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/lenker/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Yoast SEO Plugin Window Not Showing Under Posts](https://wordpress.org/support/topic/yoast-seo-plugin-window-not-showing-under-posts/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [4 years ago](https://wordpress.org/support/topic/yoast-seo-plugin-window-not-showing-under-posts/#post-15838784)
 * I had the same problem. I am not 100% sure, but here it was fixed after deleting
   the browser cache.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search in Place] Firefox issue](https://wordpress.org/support/topic/firefox-issue-32/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/firefox-issue-32/#post-11373870)
 * Thank you. Clearing the chace had no effect, but it works in incognito mode. 
   As I understand, the cache is not correctly cleared in my installation. I will
   reinstall the browser, this should solve the issue.
 * Best regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search in Place] Firefox issue](https://wordpress.org/support/topic/firefox-issue-32/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/firefox-issue-32/#post-11369248)
 * Hello,
 * [link to screenshot](http://lifestyleundreisen.at/bilder2/screenshot_searchinplace.jpg)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search in Place] Firefox issue](https://wordpress.org/support/topic/firefox-issue-32/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/firefox-issue-32/#post-11367019)
 * I have the same issue with all versions > 1.0.32 of the plugin.
    It only happens
   in certain combinations of OS/Browser e.g. Windows 7 and Chrome 73 (latest stable),
   with Chrome 75 (beta) no problems.
 * Better to stay with version 1.0.32 for the moment.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Logic] An error has occurred. Please reload the page and try again](https://wordpress.org/support/topic/an-error-has-occurred-please-reload-the-page-and-try-again-3/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/an-error-has-occurred-please-reload-the-page-and-try-again-3/#post-9079862)
 * I had the same Problem beginning with 5.7.0.
 * With version 5.7.3 the problem was solved, with 5.7.4 it is back again.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Oxygen] Problems with graphics in oxygen theme](https://wordpress.org/support/topic/problems-with-graphics-in-oxygen-theme/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/problems-with-graphics-in-oxygen-theme/#post-8925326)
 * div.wrap { background: white; padding: 0 20px }
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Oxygen] Remove Gray Bar (Browse: Home) and Comments, Author, Tags from posts](https://wordpress.org/support/topic/remove-gray-bar-browse-home-and-comments-author-tags-from-posts/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/remove-gray-bar-browse-home-and-comments-author-tags-from-posts/#post-8518262)
 * I supose with “gray bar” you mean the breadcrumbs.
 * You added: `.byline { visibility: hidden; }` to user defined CSS
 * visibility:hidden hides the element but leaves the space, display:none removes
   the element (better)
 * Put this in user defined CSS:
    `.breadcrumb-trail, .byline { display: none }`
   should also remove the “gray bar”
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Oxygen] Call Larger Sized Featured Image in Post](https://wordpress.org/support/topic/call-larger-sized-featured-image-in-post/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/call-larger-sized-featured-image-in-post/#post-8371165)
 * Hello,
 * you have to change the size of the single-thumbnail.
 * # If you do not use a child theme
 * 1. Change line 214 in functions.php to:
    `add_image_size( 'single-thumbnail',
   750, 415, true );`
 * 2. Change width and height in line 44 in post.php
 * (after a theme update this must be done again)
 * # if you use a child theme
 * 1. Put this code in the functions.php of your child theme:
 *     ```
       add_action( 'after_setup_theme', 'new_theme_setup', 11 );
   
       function new_theme_setup() {
       	remove_action( 'init', 'oxygen_image_sizes' );
       	add_action( 'init', 'new_image_sizes' );
       	}
   
       function new_image_sizes() {
       	add_image_size( 'archive-thumbnail', 470, 140, true ); 
           add_image_size( 'single-thumbnail', 750, 415, true );
           add_image_size( 'featured-thumbnail', 750, 380, true );
           add_image_size( 'slider-nav-thumbnail', 110, 70, true );
       	}
       ```
   
 *  (‘new_’ can be changed to any string)
 * 2. Change width and height in line 44 in post.php of your child theme
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[EWWW Image Optimizer] Freezes in "In Progress" when uploading image, latest version](https://wordpress.org/support/topic/freezes-in-in-progress-when-uploading-image-latest-version/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [10 years ago](https://wordpress.org/support/topic/freezes-in-in-progress-when-uploading-image-latest-version/#post-7560082)
 * I´ve exactly the same behaviour, shows permanent “In Progress” also with Parallel
   disabled 8also with very small images).
 * A Bulk Optimize on this images works after that.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[EWWW Image Optimizer] Image optimization always show in progress and cannot be optimized](https://wordpress.org/support/topic/image-optimization-always-show-in-progress-and-cannot-be-optimized/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [10 years ago](https://wordpress.org/support/topic/image-optimization-always-show-in-progress-and-cannot-be-optimized/#post-7554593)
 * I have exactly the same behaviour.
    I must use Bulk (but only works with “Parallel
   Optimization” disabled. No difference when disabling all plugins and changing
   to twenty sixteen theme.
 * When reinstalling 2.8.5 not problems anymore.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Oxygen] What's different/new in Oxygen 6.0](https://wordpress.org/support/topic/whats-differentnew-in-oxygen-60/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [10 years ago](https://wordpress.org/support/topic/whats-differentnew-in-oxygen-60/#post-7533964)
 * [https://themes.trac.wordpress.org/changeset?old_path=%2Foxygen%2F0.5.9&old=&new_path=%2Foxygen%2F0.6.0&new=&sfp_email=&sfph_mail=](https://themes.trac.wordpress.org/changeset?old_path=%2Foxygen%2F0.5.9&old=&new_path=%2Foxygen%2F0.6.0&new=&sfp_email=&sfph_mail=)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Oxygen] Image Captions in Gallery Lightbox](https://wordpress.org/support/topic/image-captions-in-gallery-lightbox/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [10 years ago](https://wordpress.org/support/topic/image-captions-in-gallery-lightbox/#post-7498577)
 * You can disable the fancybox from the theme and and install the plubin “Easy 
   FancyBox”.
    It is the same with more options
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Oxygen] Different versions of the oxygen theme… Are for beauty or safety? Back 0.5.7](https://wordpress.org/support/topic/different-versions-of-the-oxygen-theme-are-for-beauty-or-safety-back-057/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/different-versions-of-the-oxygen-theme-are-for-beauty-or-safety-back-057/#post-7492729)
 * You can remove “Browse” in:
    wp-content/themes/oxygen/library/extensions/breadcrumb-
   trail.php line 91 “true” to “false”
 * In the next lines you can change other options eg. “no breadcrumbs on front page”
   or ‘post’ => ‘category’ instead of ‘post_tag’
 * I have translated the Word “Browse” in a .po file, but I have to look how.
    In
   the meantine a dirty fix:
 * in line 178 change:
    ‘browse’ => __( ‘Browse:’, ‘oxygen’ ), to ‘browse’ => ‘translation:‘,
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Oxygen] Oxygen Update has made page and post titles too small](https://wordpress.org/support/topic/oxygen-update-has-made-page-and-post-titles-too-small/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/oxygen-update-has-made-page-and-post-titles-too-small/#post-7462598)
 * Hi Griden,
 * when I look at the changes in archive.php, page.php, post.php, search.php and
   singular.php I cannot understand why this should only affect a small number of
   users – this affects all users (including your demo page at [http://demo.alienwp.com/oxygen/](http://demo.alienwp.com/oxygen/))
 * In 0.5.4 the code produces the post-/page-title as “h1 tag” with the classes 
   post-title and entry-title (font-size 2em).
 * In 0.5.8 the code produces the post-/page-title as “a tag” without classes (font-
   size inherited from body).
 * Two different things
 * [https://themes.trac.wordpress.org/changeset?old_path=%2Foxygen%2F0.5.4&old=&new_path=%2Foxygen%2F0.5.8](https://themes.trac.wordpress.org/changeset?old_path=%2Foxygen%2F0.5.4&old=&new_path=%2Foxygen%2F0.5.8)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Hyphenator] Hyphenator breaks 4.x-Galeries](https://wordpress.org/support/topic/hyphenator-breaks-4x-galeries/)
 *  [lenker](https://wordpress.org/support/users/lenker/)
 * (@lenker)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/hyphenator-breaks-4x-galeries/#post-5787083)
 * Here you can get new Version 5.0 of Hyphenator.js:
    [https://github.com/mnater/hyphenator](https://github.com/mnater/hyphenator)
 * I never had problems with the Gallery before, but I dit not use the version included
   with the plugin.

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/lenker/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/lenker/replies/page/2/?output_format=md)