bw10
Forum Replies Created
-
I am using the “View Admin As” plugin. I selected “Shop Manager” and the “Pixel Manager” link under Woocommerce is hidden. I also can not access the admin page if I go it to directly.
Mydomain /wp-admin/admin.php?page=wpm
When I search the source code, ‘shop_manager’ is only once for the is_allowed_to_show_pmw_notification function. When I search ‘current_user_can’ I only find ‘manage_options’ and ‘switch_themes’. Nothing pointing to anything involved with Shop Manager.
I have the free plugin by the way.
Forum: Plugins
In reply to: [All Bootstrap Blocks] Set Defaults for AREOI blocks in my theme’s theme.jsonThanks for this!
I’ve been spending a lot of time lately learning how to build blocks from scratch.
Curious, any plans on putting this onto GitHub? I’d love to propose/contribute some code. Sure others would too.
It looks like my issue was caused by a setting in your plugin.
Under “Defaults” I had chosen “Default Date/Time Duration” = “Post Page/Publish Time”.
When I switched it to “Custom” (and left the default ‘+1 week’) and repeated my steps previously, it worked.
I didn’t end up having to disable any plugins, it was just that option.
I don’t understand what the “Post Page/Publish Time” option is for then?
I’ll give that a shot today/tomorrow and let you know if I come up with anything.
If I set it programmatically, using ‘publishpressfuture_schedule_expiration’, it does not show in the post editor that the post is to expire right? (i.e. when I visit the page on the backend either on the editor or page list, it won’t show the page is set to expire with the date).
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Flexible Content: Modal SettingsThank you!
Forum: Plugins
In reply to: [hCaptcha for WP] Remove/Control “print_inline_styles”Thank you so much, that works!
Forum: Plugins
In reply to: [G-Forms hCaptcha] Event or Trigger to know when hCaptcha has loaded?Thanks!
I ended up adding this to the form itself as a hidden field:
<script> jQuery(document).on('gform_post_render', function(event, form_id, current_page){ if(form_id == #) { jQuery('.ginput_container_hcaptcha iframe').on('load', function(){ var gcaptcharesponse = jQuery(".ginput_container_hcaptcha textarea[id^='g-recaptcha-response']"); var hcaptcharesponse = jQuery(".ginput_container_hcaptcha textarea[id^='h-captcha-response']"); jQuery(gcaptcharesponse).attr({ 'aria-hidden': true, 'aria-label': "do not use", 'aria-readonly': true }); jQuery(hcaptcharesponse).attr({ 'aria-hidden': true, 'aria-label': "do not use", 'aria-readonly': true }); }); } }); </script>
Forum: Plugins
In reply to: [G-Forms hCaptcha] Event or Trigger to know when hCaptcha has loaded?Can you provide an example of how to use ensure_hcaptcha_js?
I tried this, and it didn’t work.
<script type="text/javascript"> jQuery(document).on('ensure_hcaptcha_js', function(){ console.log('run'); }); </script>
Forum: Plugins
In reply to: [All Bootstrap Blocks] Feat Req: Export Bootstrap Settings for another siteThank you very much Miles!