ZC Web
Forum Replies Created
-
Forum: Plugins
In reply to: [Columns Alignment Fix for Elementor] Does this still work?I am also wondering does this still work?
Forum: Plugins
In reply to: [Redux Framework] Bug after latest plugin update: 4.1.24I also have this error. My client updated an option. Screwed up the color on the nav. I looked at it says Getting an error ‘Sanitized value and saved as #FFFFFF instead of #002269.’ #3783. Everything is updated to 4.1.24. Saw someone downgraded to 4.1.22 and they have a problem too? so what do I downgrade to and when will this issue be resolved?
And if this helps you further diagnose. I was logged in to the admin and still got locked out. It’s like my site gets completely shut down by the plugin for everybody? So I have to send the unlock email then it works again. Or sometimes I wait for it to come back up.
As we speak…
The monitor { the website } is currently DOWN (HTTP 503 – Service Unavailable).
Event timestamp: 2020-03-05 13:36:58 UTC+0
Uptime Robot will alert you when it is back up.
It isn’t tied to my IP. I was at a new clients home and was going to show a website on their computer and it was blocked. It seems the public regardless of IP are locked out from the website. Also I have Uptime monitor on the site and I get frequent emails saying the site is down… then after 30 minutes or so it goes up. I am including my exported settings here if you want to look at them.
1510ee403579a134a7751fb2010a8df9ab07f8e56445bbea926f6a31ba134ec3df573a0849cca2e9746859c681684d013fe465755498e317bb231be3916c587c
Also during a recent scan I saw this:
Unable to accurately detect IPs
Type: IP DetectionNot sure if that has anything to do with it. If this is another issue we can attack that later. I’d like to solve this issue with taking down my site.
If everyone has a different IP address why would it take down the website for random people who have never visited and are not blacklisted. This has also been observed on my phone.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Clone not working on flexible contentHow do I change the setting? I went under ‘Settings’ and other places I didn’t see a place to turn on or off. Do I do this when creating the flexible content. I am loading ACF via php. It would be ideal for this setting to be enabled by default or through a line of code or even better as a setting in the admin. What steps do I follow to get this done?
Forum: Plugins
In reply to: [Redux Framework] Breakpoints with ReduxRight now I can render CSS which is placed in the option-style.css file. I was wondering if when CSS is rendered it can go to a certain breakpoint like say with a screen and max-width 500px. Here is a header height code I have right now:
array( 'id' => 'header-height', 'type' => 'dimensions', 'units' => 'px', 'width' => false, 'title' => __('Header Height', 'zora-options'), 'subtitle' => __('Main Nav', 'zora-options'), 'compiler' => array( 'height' => '.header, .logo, .main-nav, .mobile-wrap, .logo-container' ) ),
That would be for desktop or everything unless I have separate mobile height via a separate dimensions field. How would it be applied to a breakpoint of max 500px in my example. Is this possible. To render CSS into a breakpoint?
I let him know about the issue. Since I need the Events Manger Pro plugin I did my own thing and didn’t output any php if the site was of certain IDs and user was logged in. Hopefully he can resolve this issue cause I like your plugin.
I found a conflict between the plugin and Events Manger Pro. The regular Events Manager works with yours just not the Pro too. The Pro is an addon to Events Manager and offers features like paying for events. I can have each plugin activated ( Restrict and Pro ) separately without a problem but not together. When together activated, I get a white screen in browser with no outputted HTML. Do you know of this issue and can you help me out. Would love to get both of these working. I know EM Pro is very popular.
Actually Marcus said do this and it will work
echo $EM_Event->output('#_BOOKINGFORM');
make sure that global $EM_Event is beforeNow I just need to do a conditonal. If bookings are enabled. I did a print_r of the $EM_Event object and did not see a boolean for if the event has or doesn’t have a booking form. something like
if (has_booking) {
… show booking form
} else {
show nothing
}Thanks! That worked.