JeffreyPia
Forum Replies Created
-
Forum: Plugins
In reply to: [ShareThis Share Buttons] Icons not appearingHi Andres,
No, we were able to resolve the issue by switching over to AddToAny.Thanks for the quick response!
JeffForum: Plugins
In reply to: [Block Lab] Repeater Fields in Block Lab ProI would think so. How else would you do something like a slider? The way I would do it via ACF is create an Image Box block module, then a Slider module, add a Repeater field, and clone in the Image Box module. Is there a better way to do this?
Forum: Plugins
In reply to: [WooCommerce] Attributes product filter widget: Placeholder “quotes”How can we manually override the Placeholder text? I’d also like to do this for the Product Categories widget, just for consistency.
- This reply was modified 5 years, 9 months ago by JeffreyPia.
@kibus90 – Did you look in the minified version of the file? I searched for “d.secret||” and replaced the conditional with “if(d && !(d.secret||d.message||d.value))” and then the error disappeared.
Forum: Plugins
In reply to: [reCAPTCHA in WP comments form] Cannot read property ‘secret’ of nullBug is minified within wp-embed.js
https://stackoverflow.com/questions/51893727/uncaught-typeerror-cannot-read-property-secret-of-null-wp-embed-min-jsForum: Plugins
In reply to: [Contact Form 7] Still Uncaught TypeError with ReCaptcha + CF7Bug is minified within wp-embed.js
https://stackoverflow.com/questions/51893727/uncaught-typeerror-cannot-read-property-secret-of-null-wp-embed-min-jsBug is minified within wp-embed.js
https://stackoverflow.com/questions/51893727/uncaught-typeerror-cannot-read-property-secret-of-null-wp-embed-min-jsForum: Plugins
In reply to: [Import External Images] Has anyone gotten this to work with Squarespace?I also tried these 2 images, and initially they worked, but they are not returning the same error for me:
https://static1.squarespace.com/static/5485e4dfe4b0dfffd255aa3d/54873574e4b03dc720b4cb48/5487358de4b03dc720b4d1db/1418147475135/Omega-3-and-omega-6-fatty-acids.png
https://static1.squarespace.com/static/5485e4dfe4b0dfffd255aa3d/54873574e4b03dc720b4cb48/5487358ee4b03dc720b4d208/1418147482162/omega-3-fatty-acids.jpgForum: Plugins
In reply to: [Import External Images] Has anyone gotten this to work with Squarespace?I’ve noticed in the external_image_sideload function, download_url is returning a WP Error object for most (though not all) squarespace images. For example:
$tmp = download_url( 'https://static1.squarespace.com/static/5485e4dfe4b0dfffd255aa3d/54873574e4b03dc720b4cb48/56f18b40d51cd45c19216891/1458670516015/asparagus.jpg' );
returns http_404 error “Forbidden”Forum: Plugins
In reply to: [Force Login] Whitelist new user activation linkAh, that’s a lot more elegant. Thanks Kevin!
Forum: Plugins
In reply to: [Magic Fields 2] file upload "no editor could be chosen"This just saved me. Thanks!!!
Forum: Plugins
In reply to: [Force Login] Whitelist new user activation linkManaged to get this to work:
$urlActivationPage = site_url('/?page=gf_activation'); if( substr( site_url( $_SERVER['REQUEST_URI'] ), 0, strlen( $urlActivationPage ) ) === $urlActivationPage ) { $whitelist[] = site_url( $_SERVER['REQUEST_URI'] ); }
Let me know if there’s a better method
Forum: Plugins
In reply to: [Bulk Delete] Plugin says posts were deleted, but weren'tBy Taxonomies.
Forum: Fixing WordPress
In reply to: 404 error when adding new page or post…Big thanks to bh_WP_fan and RVoodoo. I just ran into this issue today when restoring my wp db from backup. The Settings > Permalinks > Save Changes fix did the trick!