loudnotes
Forum Replies Created
-
Forum: Plugins
In reply to: [Q and A FAQ and Knowledge Base for WordPress] Finding the id of each FAQThanks!
Forum: Plugins
In reply to: [Google App Engine for WordPress] Featured Image Being CroppedThanks again for a great tool, am happily up and running WP on GAE!
Ended up no longer serving images over HTTPS, but in any case this particular issue arose with the slider in the Customizr theme.
You would need to create a new slider in Customizr to reproduce: https://www.themesandco.com/customizr/
Forum: Themes and Templates
In reply to: [Customizr] Crop slider image from top instead of bottom?Thanks for the reply – good idea. I seem to be having some luck by using an 1170×500 image with a full-width slider and commenting out the customizr height/width instruction altogether, but the reason it works is specific to my hosting provider which has its own image cropping defaults.
Forum: Plugins
In reply to: [Google App Engine for WordPress] Images load using HTTP instead of HTTPSThanks Stuart – works!
Forum: Plugins
In reply to: [Google App Engine for WordPress] Featured Image Being CroppedThanks to Stuart’s reply in another thread, I was able to figure out a workaround for this. Refer to the code for uploads.php here: https://github.com/GoogleCloudPlatform/appengine-wordpress-plugin/blob/master/modules/uploads.php#L340
Note that if the image does not have a height and width specified, the GAE plugin will not try to resize or crop it. Therefore, if you modify your theme so that it just loads the image as is (“real size”) without specifying dimensions, you should be able to avoid this problem.
Forum: Themes and Templates
In reply to: [Customizr] Crop slider image from top instead of bottom?Hi ElectricFeet – I’ve just encountered the exact same problem you are describing here (an image of a skyline that, cropped from the bottom, is all sky and no line…), but from the looks of your (beautiful!) website I gather your eventual solution was to make the slider fixed width rather than full width. I can live with that, but I’m wondering if you or Nikeo came up with any alternative PHP or CSS way to crop from the top?
Forum: Plugins
In reply to: [Q and A FAQ and Knowledge Base for WordPress] Finding the id of each FAQMildly embarrassed to say I haven’t been able to figure this out either, but it feels like maybe I’m missing something obvious. Or it could be a bug.
For every individual ID I try specifying I get the most recent FAQ entry I created.
Forum: Plugins
In reply to: [Google App Engine for WordPress] Images load using HTTP instead of HTTPSRelatedly, is there a way to serve static files (such as a PDF) over HTTPS rather than HTTP?
Forum: Plugins
In reply to: [Google App Engine for WordPress] Featured Image Being CroppedSimilar problem here – I’m using a theme that sets a slider to be full-screen by setting width to ‘99999 pixels’. The GAE plugin then creates an img with
src="https://lh5.gghpt.com/...=s99999-c"
which results in a 404 error. Not quite sure how the GAE plugin is programmed, but anything over s9999-c (e.g. s10000-c, but not s9998-c) for that last parameter results in a 404 error. Setting it to 9999 doesn’t really help either as GAE creates a 9,999 pixel-wide image.Nice hack, thanks! At first I wasn’t sure that would work, but sure enough, making a sticky post creates an
<article id="post-1">
tag and all the header stuff can be easily hidden with the following CSS:.post-1 .entry-header { display: none; }
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Contact form 7 checkbox checked by default?Just what I was looking for, thanks! Slight tweak to the HTML needed but now I see what to do.
<input type="checkbox" name="mc4wp-do-subscribe" value="1" checked>
Forum: Plugins
In reply to: [Contact Form 7] google app engine and Contact Form 7I was able to resolve this by using SMTP (WP-MAIL-SMTP plugin) and turning off the App Engine Email service.
Forum: Themes and Templates
In reply to: [Customizr] functions.php – am I doing it right?Neat trick, thanks! I knew there had to be a better way.
For future reference though, if I’m replacing more than just a letter, what is the role of ‘customizr’ in assigning formatting? How would I call tc_404_title or tc_archive_icon or other functions from within functions.php?
Forum: Themes and Templates
In reply to: [Customizr] Changing social iconsHi nikeo,
Love the theme! Forgive me for bringing back an old topic, but I had a similar question:
On my site I changed the title text of a social icon from ‘Follow me on LinkedIn’ to ‘Follow [my company] on LinkedIn’ by directly editing the text in class-fire-init.php.
Is there a way to do this in functions.php of my child theme instead, so that it won’t be overwritten?
Thanks!
Forum: Themes and Templates
In reply to: [Customizr] Genericons/entypo not displayingThanks