sevenspark
Forum Replies Created
-
Forum: Plugins
In reply to: [ShiftNav - Responsive Mobile Menu] Deprecated PHPHi @malae ,
Thanks for letting me know. You can fix this by making a simple change in that functions.php file on line 714. Just change the function signature from:
function shiftnav_html_atts(array $attr, callable $callback = null)to:
function shiftnav_html_atts(array $attr, ?callable $callback = null)(add a
?beforecallable)and that should resolve the deprecation notice. I’ll also include this with the next update.
Thanks!
Chris
Forum: Plugins
In reply to: [ShiftNav - Responsive Mobile Menu] The word “menu” next to the hamburger?You’re welcome, Justin! Glad it helped 🙂
Forum: Plugins
In reply to: [ShiftNav - Responsive Mobile Menu] The word “menu” next to the hamburger?Hi Justin,
There isn’t a setting for this in the lite version, but in the Pro version there’s an option called “Toggle Content Left Edge” that would allow you to add text in that position.
I suppose an alternative would be to use an
::afterpseudo-selector with thecontentproperty in some custom CSS to add that text if you prefer. Something like this:#shiftnav-toggle-main-button::after {
content: "Menu";
margin-left: 8px;
}Note that the text itself won’t be screen-reader accessible, but the toggle button has its own aria label for that purpose.
Hope that helps!
Chris
Forum: Plugins
In reply to: [ShiftNav - Responsive Mobile Menu] Version 1.8.1 Download Not Available@tderouindesign awesome, thanks for letting me know!
Forum: Plugins
In reply to: [ShiftNav - Responsive Mobile Menu] Version 1.8.1 Download Not AvailableThanks for letting me know, guys!
That zip is built by ww.wp.xz.cn from the svn repo, so it sounds like something went wrong on the wp servers when the last release was pushed.
I just pushed a small readme update to svn to force it to re-build, and now the zip download seems to be working for me when I test. It’s possible you’d need to clear the cache for it to resolve since the zip name/URL will be the same.
Hopefully that does the trick for you!
Forum: Plugins
In reply to: [Menu Swapper] Abandoned Plugin?Hi there,
Thanks for letting me know and sorry for the late reply. The plugin is not abandoned, it’s just very simple and therefore rarely requires updates. I’ve bumped the tested version and hopefully as a result WordFence will remove the flag soon.
Thanks!
Forum: Plugins
In reply to: [ShiftNav - Responsive Mobile Menu] Plugin Still Supported?Hi @girdy74 !
The plugin is still maintained 🙂 I’d estimate the next update will be out in the next few weeks.
Thanks!
You’re welcome! Yes, if you run the Form Scanner it should auto-find that field and allow you to just select it and add it to the Allow List. Or of course you can add it to the Allow List directly 🙂
Well, I wrote out a detailed reply, which was then auto-held for moderation by the WP forum system. Not sure when it’ll be reviewed/approved, so in the meantime I’d recommend reading through the guide we’ve linked to in the changelog and admin panel (post-update).
Hopefully this one doesn’t get held up as well.
Hi @daymobrew,
Please see the doc linked in the changelog and admin panel for full details: https://sevenspark.com/docs/contact-form-7-dynamic-text-extension/allow-data-access
The Background & Security Considerations section covers this, but in short, the CF7_get_custom_field shortcode allows access to any metadata for any post on the site. That could include sensitive data that not all users should have access to, and shouldn’t be displayed publicly. Potentially, a user with Contributor+ credentials could maliciously or unintentionally reveal that data as anyone with edit capabilities can add the shortcode post content as well as contact forms.
In order to prevent this potential security vulnerability, metadata access is now disallowed by default, but access can be configured in the settings by the admin.
For sites where some users with edit capabilities may be untrusted, the admin would need to allow-list just the keys that are safe for any user to access.
For sites where all users with edit capabilities are trusted, the admin can open up full access if they prefer.
You won’t need to edit your forms, unless you’re currently exposing sensitive data that needs to be removed. You’ll only need to use the allow list if you are using one of the shortcodes in question.
Again please see the link above for complete details on the potential vulnerability, how the plugin has changed, and how to test for and resolve any issues after updating using the new tools provided. (It should be very quick and easy using the form scanner).
Hope that helps!
Chris
Forum: Plugins
In reply to: [Bellows Accordion Menu] Plugin removed from WordPressThere was a security vulnerability (which required an authorized user with Contributor+ credentials to exploit) that exposed a potential XSS attack. A fix was implemented as soon as it was reported and the WP Plugin Team reinstated it on the 3rd just a few hours after you opened this actually 🙂
Thanks!
Forum: Plugins
In reply to: [Bellows Accordion Menu] Accordion effect on the entire menu optionThere’s an option to make the entire item a toggle in the Pro version – please see Disable Link / Full Item Toggle
Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Dynamic-text in ContactForm 7Hi Rolf,
Is “UACF7_POSTINFO” a custom shortcode that you’ve written? If so, what is your code? Are you sure you’re returning the proper value? (Shortcodes must return, not print/echo, their value).
Without knowing any more, my best guess given what you’ve described is that you have a custom shortcode that is mistakenly echoing rather than returning its value.
Forum: Plugins
In reply to: [Bellows Accordion Menu] Change the width of the collapse into adaptiveHi Derat,
There isn’t a setting for this, but if you want you could override it with your own CSS:
@media screen and (min-width: 920px){ .bellows-menu-toggle { display: none; } .bellows.bellows-mobile-collapse { display: block; } }Make sure to add it in your Bellows CSS Tweaks setting.
Hope that helps! 🙂
Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] User Order select listHi @guglielmirent ,
The plugin only works with text fields, so it won’t be relevant for a selectbox
Presumably the order number is a variable available during your page generation process. If you can grab that order number via a shortcode (either with an existing on in your setup, or by writing a Custom Shortcode), then you can add it into the form via the DTX. You could potentially write some code to try to parse it out of the URL, but it’d likely be more robust to pull that value from the actual source than from the URL.
Hope that helps!