robmaurizi
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Walker_Nav_Menu start_el method?Yikes, I figured as much. I’m trying to rewrite links without HREFs (or w/ #) as spans. Doing it w/ JS isn’t an option.
Not sure if the client is even really using any of the fancy functionality that MMM offers so we may just abandon it, but I didn’t want to have to re-do the CSS & JS for basic dropdown menus, so the walker would have been quicker.
If you do have a way, I’d be open to hearing it though.
Forum: Plugins
In reply to: [Getty Images] Version 4.0 – Now with support for GutenbergI agree, this implementation is rather clunky. The only way for a subscriber to insert a featured image in Gutenberg is to first add a block, select the image to be the featured image, and then delete the block?
Also, it seems that under the classic editor, there’s no Insert or Submit button in the media library popup for Getty Images.
I’m on 4.0.1 of the plugin.
Actually, it looks like this may be related to https://github.com/Automattic/Co-Authors-Plus/issues/573 as if I try those front-end archive pages in a private window, they all work properly and don’t throw the error.
Forum: Plugins
In reply to: [Media Cleaner: Clean your WordPress!] Got error in combination with ACF Pro@amekusa- I just emailed you the ACF php defs.
Thanks!
-RobForum: Plugins
In reply to: [Media Cleaner: Clean your WordPress!] Got error in combination with ACF Pro@tigroumeow I’m having the same issue. Just installed the plugin on my local to give it a whirl and it threw the Illegal Offset warning a whole bunch and then finally crapped out w/ the fatal error:
[21-Jun-2018 19:34:03 UTC] PHP Warning: Illegal string offset 'type' in /Applications/MAMP/htdocs/addisoncom/wp-content/plugins/media-cleaner/scan.php on line 129 [21-Jun-2018 19:34:03 UTC] PHP Fatal error: Uncaught Error: Cannot use object of type WP_Post as array in /Applications/MAMP/htdocs/addisoncom/wp-content/plugins/media-cleaner/scan.php:129 Stack trace: #0 /Applications/MAMP/htdocs/addisoncom/wp-includes/class-wp-hook.php(286): MeowApps_WPMC_Scan->scan_postmeta_acf('551') #1 /Applications/MAMP/htdocs/addisoncom/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array) #2 /Applications/MAMP/htdocs/addisoncom/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #3 /Applications/MAMP/htdocs/addisoncom/wp-content/plugins/media-cleaner/core.php(300): do_action('wpmc_scan_postm...', '551') #4 /Applications/MAMP/htdocs/addisoncom/wp-includes/class-wp-hook.php(286): Meow_WPMC_Core->wp_ajax_wpmc_prepare_do('') #5 /Applications/MAMP/htdocs/addisoncom/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters('', Array) #6 /Applications/MAMP/htdocs/addisoncom/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #7 /Applications/MAMP/htdocs/addisoncom/wp-admin/admin-ajax.php(99): do_action('wp_aja in /Applications/MAMP/htdocs/addisoncom/wp-content/plugins/media-cleaner/scan.php on line 129
WP version 4.9.6
ACF Pro version 5.6.10Forum: Plugins
In reply to: [PayPal Framework] IPN 403 ErrorsFor anyone looking for resolution to 403’s in the PayPal IPN, this SO answer resolved it for me: https://stackoverflow.com/questions/26013941/why-do-i-keep-getting-a-403-forbidden-with-paypal
May be good to include this in the code. Not sure what might trigger the issue since seemingly no one else here has been complaining about it.
Forum: Plugins
In reply to: [Contact Form 7] submit.wpcf7 fires twiceGreat, good to know it’s reproducible and hopefully fixable! Looking forward to the update!
Thanks!
-RobForum: Plugins
In reply to: [Date and Time Picker Field] incorrect time is being displayed.You need to pass the PHP date() method an optional timestamp, otherwise it defaults to right now:
<p><?php echo date('l \t\h\e jS M Y', $date) ?></p> <p><?php echo date('hia', $date) ?></p>
Note, the above assumes that you $date var is in fact a timestamp. If it’s a string, you’ll need to use
$timestamp = strtotime($date);
and pass $timestamp into the date() function.Forum: Fixing WordPress
In reply to: Domain auto-redirecting to post linkI’m having the same issue, although it’s with an old /blog/ directory that used to house my WP blog. Hitting that URL sends me to a particular post.
Turning permalinks off fixes the issue, but I’ve tried deleting my .htaccess file and resetting permalinks, and no such love.
If anyone has any suggestions, I’d love to hear them.
Running WP 3.1
-Rob
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Request Failed when uploading to CloudfrontAlso having the same issue with the stable release.
Dev version seems to be working.
Do you have an ETA on when the dev changes will be merged into the stable release?