thale.mn
Forum Replies Created
-
I am also using the free version and not all of the images are showing:
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Left submenu popup moves offscreenOh, my apologies for missing the point of this thread.
I hope my suggestion is helpful, though.
Dropping links? No, I don’t think so. I’m a real person living in a real life and just trying to be helpful with what appears to be a difficult issue for some.
Again, my apologies for wasting your time. I’ll go away now.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Left submenu popup moves offscreenWorked perfectly for me, Dan.
Did you view the website?
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Left submenu popup moves offscreen/* float menu to right and center dropdown links */ @media screen and (min-width: 56.875em) { .site-header-main { flex-wrap: wrap !important; } .menu-main-menu-container li a { text-align: center; } }
This tweak restores the responsive menu.
The site is live now:
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Left submenu popup moves offscreen.site-header-main { flex-wrap: nowrap !important; } .menu-main-menu-container li a { text-align: center; }
Worked well for me with 5 top level items.
(the site goes live tomorrow)
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] 3.0.8 update now one day offNick,
Thanks for the documentation – I’ve set both Google and WP calendars as per your instructions. I’m in Central TZ, so I’ve used Chicago.
I’ve created a test event on the Google calendar that appears to be correct on my WP sites.
https://www.visiblechild.org – uses the current NON Beta version (3.0.8)
https://www.fhf-dev.org – uses the Beta release (3.0.9 beta 1)So I’m not sure if it was my timezone settings, or what it was, but right now BOTH sites are showing the correct day and time. My previous problem was that the calendar was showing the next day for today.
I’ll check back later today to see if it’s still accurate.
Thanks!
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Displaying incorrect timeNick,
Google Calendar timezone is set to Central Time (GMT-6)
WordPress timezone is set to Chicago (local time listed is accurate)
It’s a single calendarThere aren’t any items on the calendar at this time.
Thanks!
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] 3.0.8 update now one day offNick,
I’ve updated the plugin to the beta version (3.0.9) on my dev site for testing.
I simply deleted the 3.0.8 files and uploaded the beta 3.0.9 files to update the plugin.
Tested OK on my dev site. However, when I viewed my live site that is still running 3.0.8, the test calendar event I posted is showing correctly now. I think this is because it’s early in the day and UTC is still ‘today’ I’ll check back later today when UTC is tomorrow, then I’ll know for sure.
Thanks again for your contribution.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] 3.0.8 update now one day offI can confirm that my calendar is off – looks like it’s not fixed in 3.0.8.
Do you have links to previous releases?
Thank you for your efforts with this plugin.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Displaying incorrect timeI can confirm the same problem on my site.
Site timezone is set to Chicago (UTC -6)
Google Calendar is correct.
But posted events on the calendar appear to be showing at UTC (which would be 6 hours ahead of the site, so it’s tomorrow on the site, now.https://www.visiblechild.org/calendar
There are no events at this time, but today’s date is highlighted in red (and it’s highlighted for tomorrow).
Forum: Plugins
In reply to: [WP Splash Page] Still not ResponsiveI added this to my css:
#wpsp-container {
width: auto !important;
max-width: none;
}Gave the container more flexibility for moving things around for different screen sizes. I would not recommend using a table for layouts.
Hope it helps.
Tom
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] ajax search doesn t workI am having the same problem using AJAX.
I assume that if I use #content-archive as the ID for the div it should work.
Also, AJAX would mean that the user does not need to click on the Search button, right? As the selections are made, they are automatically displayed, right?
Here’s my URL: https://www.dev.recipessquared.com
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Where do i insert shortcodeHey,
I have a degree in technology, have been working in WP for years and I can’t figure out this plugin – just saying.
: )
Forum: Plugins
In reply to: [WordPress Posts Timeline] Line break in timelineSorry, I meant for the link to go here:
Forum: Plugins
In reply to: Show Portfolio Items by Category or TagI figured this out!
<?php if (has_excerpt()): ?> <div class="fusion-title title"> <h4 class="title-heading-left">Home Sweet Home</h4> <div class="title-sep-container"><div class="title-sep sep-double"></div></div></div> <div class="hsh-menu"><li><a href="/home-sweet-home-gallery/#">Visual Art</a></li><li>Poetry</li><li>Essays</li><li>About the Exhibition</li></div> <div class="again"><a href="/home-sweet-home-again-gallery">To Home Sweet Home Again</a></div> <?php else : ?> <div class="fusion-title title"> <h4 class="title-heading-left">Home Sweet Home Again</h4> <div class="title-sep-container"><div class="title-sep sep-double"></div></div></div> <div class="hsh-menu"><li><a href="/home-sweet-home-again-gallery/#">Visual Art</a></li><li>Poetry</li><li>Essays</li><li>About the Exhibition</li></div> <div class="again"><a href="/home-sweet-home-gallery">To Home Sweet Home</a></div> <?php endif; ?>
So if I put anything in the excerpt field, my if/else conditions kick in and I can have different menus show for different portfolio content.
Use my original link to see how it works.