webbeetle
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] How can I de-register the creation of theme thumbnails?Okay, for all who are interested I finally found code online, which works! You will need a child theme to add this to the functions.php!
Let me explain what the code does: I don’t use (and will never use) the extra large ‘hero images’ on top of posts. So I removed these 2 sizes.
//deregister specific thumbnail sizes function add_image_insert_override($sizes){ unset( $sizes['thumb-xlarge']); unset( $sizes['thumb-xxlarge']); return $sizes; } add_filter('intermediate_image_sizes_advanced', 'add_image_insert_override' );^ add this code to your functions.php in your child theme!
If you want to remove other images sizes the theme creates you need to adjust the code accordingly. Here is a list of all sizes Hueman creates for every image:
( ‘thumb-small’, 80, 80, true );//used for Hueman Dynamic Tabs widget
( ‘thumb-standard’, 320, 320, true );//used for standard post list / and for related posts
( ‘thumb-medium’, 520, 245, true );//used for classic post grid / and for related posts
( ‘thumb-large’, 720, 340, true );// used in singular to display the featured image ( when cropped option checked ) / used in image and audio post formats
( ‘thumb-xlarge’, 980, 450, true );// used in featured content on blog page
( ‘thumb-xxlarge’, 1320, 500, true );// used in featured content on blog pageForum: Themes and Templates
In reply to: [Kontrast] BUG: Problem with JetPack gallery ERRORS & some more…Sorry, but no reply for several days, so currently I’m working on something different. I can’t sit around, twiddling my thumbs, waiting for a support reply which in all likelihood might never come.
So the KONTRAST Theme is currently disabled – since I’m getting nowhere with it. The above link https://dare2go.com/play2/andalucia-white-villages-roadtrip/ will open in a different theme and NOT show the errors any longer!
Forum: Themes and Templates
In reply to: [Hueman] Mess with thumbnails due to changed code!I had provided a link to a screen capture https://snipboard.io/2KcEhp.jpg
where it was visible how the theme display stumbled. I can’t replicate it now.Anyhow: I’d rather prefer if you would acknowledge my (or our) main concern about the constant add-ons and changes (file size, conflicts, etc.). Hueman is certainly not as lean and fast as it used to be!
Forum: Themes and Templates
In reply to: [Kontrast] BUG: Problem with JetPack gallery ERRORS & some more…add-on: I added the line (as suggested in your other reply)
.social-links i.fa-rss { font-family: "Font Awesome 5 Free"; font-weight: 900; }So far it doesn’t seem to make a difference with the RSS icon. Although, I have WP-Rocket turned off the staging site is probably still cached by CLoudflare. So maybe too early to tell.
Forum: Reviews
In reply to: [Compliance by Hu-manity.co] Corona plugin?!…simply switch it off in the settings. Thatβs it.
Well, first you have to find the culprit! I certainly did NOT have any notification whatsoever in my dashboard – it took ages to find the bloody reason for this invasion of my website! I thought for a while that my site had been hacked (you don’t do that to your trusting users! Specially ones at my age, where heart attack is a likely option.).
Mine was certainly auto-enabled!
Maybe there was a notification about it after updating, but I quite often do updates in bulk, so this might have slipped through. I have removed this nuisance completely!I was impatient (time difference) and added the code linked above to functions.php – and it works!
THANKS!
Forum: Themes and Templates
In reply to: [GeneratePress] Could I remove the icon font? (and use my own)Alright… I’m a little confused because the theme’s /fonts directory still contains several variations of the fontawesome-webfont.
But if it’s not being used then I might really extend my custom font from http://fontello.com/ Currently I have a small file with 9 icons from them, another 6 for social media sites and rss wouldn’t add much to the file size.
I have used fontello on static pages since (God alone knows?) maybe 2008…Cheers!
Am I right that this code would go into function.php of the child theme?If that’s confirmed I’m all set and this can be ticked as “Resolved” π
Forum: Themes and Templates
In reply to: [GeneratePress] Gallery on start page not full width on mobileI would guess that this might be rather related to your gallery plugin, which probably adds too much padding to the gallery.
Do you know CSS? Then you could change it.
Forum: Themes and Templates
In reply to: [Hueman] How can I de-register the creation of theme thumbnails?– – any replies or another dead support thread? – –
(when will I give up hoping for a reply?)
My sincere apologies, Steve!
You’re right! It wasn’t your plugin (but Cookie Notice from dFactory).
sorry – I didn’t read all.
BUT I DON’T SEE THIS AS RESOLVED!- This reply was modified 6 years, 1 month ago by webbeetle.
- This reply was modified 6 years, 1 month ago by Steven Stern (sterndata).
Yes, the plugin will remain deactivated until this is solved. But why can’t you follow the link above to the screen capture collage?
To me it’s odd that the problem is there when the TOC plugin is ‘activated’, gone as soon as it is ‘deactivated’. So how else would you explain this?
Forum: Themes and Templates
In reply to: [Hueman] related posts featured image dimensionI’m actually rather surprised that you state the thumbnails should be square. If you look at the theme demo https://demo-hueman.presscustomizr.com/independent-artists-make-their-own-way-without-big-record-labels/ you should see that they actually are more 16:9 than even 4:3. The back-end thumbnail on desktop is a featured image of 520×245 pixels. Just right click an image to open, the dimensions are part of the image name
To avoid oddly cropped thumbnails of featured images I create these in my image software and upload via FTP. I usually have text on them, which otherwise might not fit. The dimensions are
720×340 and 520×245 (and a smaller one, which is 300×142 – not part of the theme setting)
then there is a small one, 160×160 pixels, which is for the widget area in the sidebar.