MegT
Forum Replies Created
-
That was EXTREMELY helpful information. Thank you very much, Chad!
Sorry! Just realized that my second question is actually intended for a different plugin, NOT Wordfence! Thanks for the help with the directory pages!
Thanks for the help. Disabling Directory Indexing did address the wp-content/uploads page being displayed, but the https://thehartwoodclub.org/category/minutes/ is still visible to logged out users, and shouldn’t be. Actually, any url that matches a post category on the site is accessible via a link that reads https://thehartwoodclub.org/category/***SampleCategoryName***/
How do I block that access?
Yes, many of the repeating events transmit just fine to my iCal. But two series (links below) do not.
https://braytonschoolpto.com/event/after-school-enrichment-4/?instance_id=4078
and
https://braytonschoolpto.com/event/after-school-enrichment-3/?instance_id=4083only show the first instances, and none of the repeats.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] month takes two clicks to changeSame here. https://braytonschoolpto.com/calendar/
kopaev,
Would you be willing to share how you resolved this? AI1EC is killing my CPU load on my site…
Thanks for the idea- commented it all out and agree it caused no problems, but media uploader still shows error for every attempted upload (but then when I go back in, shows uploaded file.)
Have you considered colorspace? If your images are in Adobe RGB and you are viewing in a non-color managed browser, colors will look screwey. For web display, use the sRGB colorspace instead.
Tom-
Where do I send the enormous batch of chocolate chip cookies you deserve??This worked- thank you so very much! This solves a multitude of problems for me!
Thanks for your continued interest, Tom! Made the changes as suggested above.
The calendar is at: https://braytonschoolpto.com/calendar/Tom,
First off, your calendar looks awesome- kudos.It scared the bejeeezus out of me, but I followed your steps above. Unfortunately, no joy as of yet. Here are some theories as to why- perhaps you’d care to weigh in??
1. My theme (atahualpa) doesn’t have a CSS folder- the CSS files appear to be in the main folder. I tried your fix as written, placing the “calendar_override.css” into the main theme folder instead, and then when that didn’t work, I tried modifying the code from your changes to header.php to read:
<?php wp_enqueue_style( 'calendar_override', get_bloginfo('template_directory').'/atahualpa377/calendar_override.css' ); ?>
where atahualpa377 is my main theme folder which contains various other CSS files like style.css, editor-style.css, etc…
Possibly I’ve got it in the wrong spot?2. I wasn’t sure exactly WHERE in header.php to place the code from step one. I see the <head> tag, with lots of various stuff below it. I wasn’t sure if the new code should go right below the head tag, or somewhere further down. I opted to place it below the <!– Header –> and above the <!– Main Body –> section. Should it be moved up or down perhaps?
Thanks, Jo!
From what I can tell from my early morning perusal of the related CSS, I have already made all of those changes (it is more of the same… change white-space: to normal from no wrap,) with no results ?? I don;t mean to be a pain and ungrateful, but I wish they would get a fix of this or add it as an optional setting. I’d gladly pay for the solution, and clearly I’m not alone in wanting it!
Bummer. The solution I posted above stopped working after an update a few weeks ago, which I just realized. Tom O’Brian’s solution is also not working for me; added it into my theme’s CSS inserts and it changed nothing (no cacheing plugins on my site.)
I have fooled around in the Vortex theme’s CSS file and changed the white-space: to normal where appropriate, with no impact to the site’s front end view. It seems to me from the time that I’ve spent on this today that the arrangement of the files since the most recent update is very different, and I’m not sure where else to attempt to make changes to either allow text to wrap in month view- calendar, or to insert a break between time and event title. Any updated ideas on this issue?
Forum: Themes and Templates
In reply to: Theme Updated Manually, still getting update notificationThank you both- The athualpa377 folder needed to keep that name or bad things happened, but changing the name of the other to atahualpa-old did the trick.
This is what worked for me, inserted into my theme’s CSS inserts box:
/*Calendar Month View Wraps Text to fit title in box*/ .ai1ec-month-view .ai1ec-event { border-radius: 0.3em; -o-border-radius: 0.3em; -moz-border-radius: 0.3em; -webkit-border-radius: 0.3em; margin: 1px 0 0; padding: 0 3px 1px; white-space: normal; max-height: 100%; } /*Make Pop-up View Conform to above calendar change by selecting wrapped text.*/ .ai1ec-month-view .ai1ec-event-popup { position: absolute; z-index: 5; display: none; white-space: normal; color: #000 !important; top: -4px; left: -2px; min-width: 100%; border-radius: 0 0.3em 0.3em 0; -o-border-radius: 0 0.3em 0.3em 0; -moz-border-radius: 0 0.3em 0.3em 0; -webkit-border-radius: 0 0.3em 0.3em 0; }
The changes are to the white space: portion- switched from “nowrap” to “normal.”