Lauren
Forum Replies Created
-
Forum: Plugins
In reply to: [Comments - wpDiscuz] Fix for duplicate comment form?Sorry, I should have been more clear with my question: Is there a fix to replace, not duplicate, the comment form? I’d prefer not to use CSS to hide a bug.
Will a future release fix this?
Additionally, I’ve emailed your development team about a paid project. Can you check with them about whether they’ve received that, assuming you’re still taking on custom projects?
Forum: Plugins
In reply to: [Comments - wpDiscuz] Fix for duplicate comment form?Sure, you can see it here: https://wol.ocsite.dev/turnip-cake-lo-bak-go/#respond
The pop-up login is “dev” and “1nceCoupled”.
@mej how does the removal work? Does it happen on post save, for example?
Michelle,
I apologize for not contacting your team directly. I took sick and am just now able to work again. However, I see that you’ve since released two updates and one of those has resolved my issue! Thank you.
Lauren
Forum: Plugins
In reply to: [LuckyWP Table of Contents] Error in Appearance > Widgets…Can confirm.
( ! ) Notice: wp_enqueue_script() was called <strong>incorrectly</strong>. "wp-editor" script should not be enqueued together with the new widgets editor (wp-edit-widgets or wp-customize-widgets).
Forum: Plugins
In reply to: [reGenerate Thumbnails Advanced] Request: shift-select image sizesThanks!
Thanks!
Forum: Plugins
In reply to: [Lazy Load for Comments] Any known issues with pagination?Hey, Joel! Any clue why this is happening? Is it, or an alternate solution, something we could motivate you to look in to? ??
Forum: Plugins
In reply to: [Nice Likes] Refresh like count of all posts without page loadConfirmed the plugin was out of date on the staging site and works as expected now – how embarrassing. ??
Forum: Plugins
In reply to: [Regenerate Thumbnails] Images replaced in posts all wrongI’m unsure on import status, but simply re-saving the post appears to fix the images.
This might be a better way to get image IDs? https://wpscholar.com/blog/get-attachment-id-from-wp-image-url/. I haven’t really taken the time to think through that, but wanted to come with some suggestions vs. just problems. ??
Forum: Plugins
In reply to: [Top 10 - WordPress Popular posts by WebberZone] Support for srcset?Hey @ajay I did a quick test for my own purposes and thought I’d share:
Current implementation, which writes the img code: https://ibb.co/eVLysw
$output .= '<img src="' . $postimage . '" alt="' . $post_title . '" title="' . $post_title . '" ' . $thumb_html . ' class="' . $class . '" />';
Localized test with use of
wp_get_attachment_image
, which automatically outputs srcset assuming appropriately sized thumbnails exist: https://ibb.co/j9tweb$attachment = tptn_get_attachment_id_from_url( $postimage ); $attr_args = array( 'title' => $post_title, 'class' => $class, ); $output .= wp_get_attachment_image( $attachment, 'thumbnail-standard-retina', false, $attr_args );
Forum: Plugins
In reply to: [Blogger Importer Extended] Characters stripped from slugI just tried importing with the same permalink structure and the problem persisted, unfortunately.
Forum: Plugins
In reply to: [Blogger Importer Extended] Characters stripped from slugAny update on a resolution for this?
Forum: Plugins
In reply to: [Top 10 - WordPress Popular posts by WebberZone] Support for srcset?Just the default WordPress implementation. I believe this is automatically added when using WordPress image functions, rather than manually outputting the
tag.
I didn’t read all the code, but theoretically replacing line 221 in media.php with wp_get_attachment_image() would work.