lenker
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Yoast SEO Plugin Window Not Showing Under PostsI had the same problem. I am not 100% sure, but here it was fixed after deleting the browser cache.
Forum: Plugins
In reply to: [Search in Place] Firefox issueThank 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
In reply to: [Search in Place] Firefox issueHello,
Forum: Plugins
In reply to: [Search in Place] Firefox issueI 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
In reply to: [Widget Logic] An error has occurred. Please reload the page and try againI 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
In reply to: [Oxygen] Problems with graphics in oxygen themediv.wrap { background: white; padding: 0 20px }
I supose with “gray bar” you mean the breadcrumbs.
You added:
.byline { visibility: hidden; }
to user defined CSSvisibility: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
In reply to: [Oxygen] Call Larger Sized Featured Image in PostHello,
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
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.
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
In reply to: [Oxygen] What's different/new in Oxygen 6.0Forum: Themes and Templates
In reply to: [Oxygen] Image Captions in Gallery LightboxYou can disable the fancybox from the theme and and install the plubin “Easy FancyBox”.
It is the same with more optionsYou 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
In reply to: [Oxygen] Oxygen Update has made page and post titles too smallHi 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 https://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
Forum: Plugins
In reply to: [Hyphenator] Hyphenator breaks 4.x-GaleriesHere you can get new Version 5.0 of Hyphenator.js:
https://github.com/mnater/hyphenatorI never had problems with the Gallery before, but I dit not use the version included with the plugin.