bward
Forum Replies Created
-
I can confirm,
- wp-content/plugins/simple-cloudflare-turnstile/css/cfturnstile.css
- https://challenges.cloudflare.com/turnstile/v0/api.js?onload=onloadTurnstileCallback
Are loading on every page. I do use Elementor and have a subscription form popup if someone clicks a link. So that’s why this is occurring. I confirmed that, by turning off the Elementor popup.
If there a way I can manually dequeue? I only need this for the contact page. Thanks!
Forum: Plugins
In reply to: [WP Search with Algolia] With autocomplete, how to change the menu size?I did figure out the width.
However, I am wondering if it’s possible, when someone clicks a search button, can they be given a near full-screen popup that they type their search into and which also shows their search result. Certainly for mobile.
In my last post, I added a screenshot example.
Thanks for the links, I did look through that one before coming here. I just couldn’t figure out how I would do what I’m asking with that documentation.
Forum: Plugins
In reply to: [WP Search with Algolia] With autocomplete, how to change the menu size?You’re a gentleman and a scholar sir, that did work. So I can play with that.
Ideally, I would like to make the menu expand more full screen like the Jetpack search (example: https://ibb.co/vdF3w4h). Is that possible, or would we need a developer, and if so, can you recommend one?
Lastly, how can I dequeue all the .js and .css so it only loads on one page?
Appreciate your assistance, Michael!
Forum: Plugins
In reply to: [Comments - wpDiscuz] wpDiscuz adding br tag instead of p tagThat fixed the line break issue, but it broke emoji’s in comments, they don’t display with the code running.
I want to share more of the issue here.
This is an example of what your plugin is doing.
I type, “This is a test comment.” Hit enter and type “This is a test comment.” I then opened my browsers inspector tool and this is how the code appears.
<div class="ql-editor" data-gramm="false" contenteditable="true" data-placeholder="Join the discussion"> <p>This is a test comment.</p> <p>This is a test comment.</p> </div>
That’s correct and what should display. However, once I click Post Comment, this is the code that actually renders.
<div class="wpd-comment-text"> <p>This is a test comment <br> This is a test comment.</p> </div>
That is not correct and makes the comments look less professional.
When I do the same thing with your plugin off, using default WP comments, this is the code that renders when the comment is posted.
<div class="comment-content"> <p>default 2</p> <p>default 2</p> </div>
That is correct.
I cannot explain why your code looks correct before posting a comment, but then changes after. However, I can see what’s going on from a user perspective.
When posting a comment with WP-Discuz a user types a line, hits enter and it appears as if there is an empty space in between. Like this.
Test comment.
Test comment.
However, when you use default WP comments a user types a line hits enter once, and the comment looks like this.
Test comment.
Test comment.So the user knows to hit enter a SECOND time, so the comment then displays properly like this.
Test comment.
Test comment.
As a fix, I noticed theme CSS for the “p” tag are affecting this. So I took the code your plugin uses and set a margin of 0em.
#comments p, #respond p { margin-bottom: 0em; }
Now, as you type a comment and hit return once, your comment properly looks like this.
Test comment. Test comment.
Now the user will know to hit return once more, twice total, so there comment properly looks like this as they type.
Test comment. Test comment.
Once they post the comment, it will then properly display with a p tag for each new line. Perhaps this is a modification to add into core. Most people are never going to figure this out. This is my third attempt to understand the problem and I finally figured it out.
Unfortunately, I don’t know how to fix past comments to replace the <br> tag.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Plugin Injecting 800 Lines Of CSS BeforeThanks for getting back in touch. I count 770 exactly, here is the full code count including the line for the stylesheet.
All of this code is pushing down the actual content on our page which is bad for SEO and general page crawling. Isn’t there something we can do?
<link data-minify="1" rel='stylesheet' id='wpdiscuz-frontend-css-css' href='https://worldeventsandthebible.com/wp-content/cache/min/1/wp-content/plugins/wpdiscuz/themes/default/style.css?ver=1658323896' type='text/css' media='all'/> <style id='wpdiscuz-frontend-css-inline-css' type='text/css'> #wpdcom .wpd-blog-administrator .wpd-comment-label { color: #ffffff; background-color: #0085FF; border:none } #wpdcom .wpd-blog-administrator .wpd-comment-author, #wpdcom .wpd-blog-administrator .wpd-comment-author a { color:#0085FF } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-administrator .wpd-avatar img { border-color:#0085FF } #wpdcom.wpd-layout-2 .wpd-comment.wpd-reply .wpd-comment-wrap.wpd-blog-administrator { border-left:3px solid #0085FF } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-administrator .wpd-avatar img { border-bottom-color:#0085FF } #wpdcom.wpd-layout-3 .wpd-blog-administrator .wpd-comment-subheader { border-top:1px dashed #0085FF } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-administrator .wpd-comment-right { border-left:1px solid #0085FF } #wpdcom .wpd-blog-editor .wpd-comment-label { color: #ffffff; background-color: #d36000; border:none } #wpdcom .wpd-blog-editor .wpd-comment-author, #wpdcom .wpd-blog-editor .wpd-comment-author a { color:#d36000 } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-editor .wpd-avatar img { border-color:#d36000 } #wpdcom.wpd-layout-2 .wpd-comment.wpd-reply .wpd-comment-wrap.wpd-blog-editor { border-left:3px solid #d36000 } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-editor .wpd-avatar img { border-bottom-color:#d36000 } #wpdcom.wpd-layout-3 .wpd-blog-editor .wpd-comment-subheader { border-top:1px dashed #d36000 } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-editor .wpd-comment-right { border-left:1px solid #d36000 } #wpdcom .wpd-blog-author .wpd-comment-label { color: #ffffff; background-color: #0085FF; border:none } #wpdcom .wpd-blog-author .wpd-comment-author, #wpdcom .wpd-blog-author .wpd-comment-author a { color:#0085FF } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-author .wpd-avatar img { border-color:#0085FF } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-author .wpd-avatar img { border-bottom-color:#0085FF } #wpdcom.wpd-layout-3 .wpd-blog-author .wpd-comment-subheader { border-top:1px dashed #0085FF } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-author .wpd-comment-right { border-left:1px solid #0085FF } #wpdcom .wpd-blog-contributor .wpd-comment-label { color: #ffffff; background-color: #A240CD; border:none } #wpdcom .wpd-blog-contributor .wpd-comment-author, #wpdcom .wpd-blog-contributor .wpd-comment-author a { color:#A240CD } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-contributor .wpd-avatar img { border-color:#A240CD } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-contributor .wpd-avatar img { border-bottom-color:#A240CD } #wpdcom.wpd-layout-3 .wpd-blog-contributor .wpd-comment-subheader { border-top:1px dashed #A240CD } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-contributor .wpd-comment-right { border-left:1px solid #A240CD } #wpdcom .wpd-blog-subscriber .wpd-comment-label { color: #ffffff; background-color: #898989; border:none } #wpdcom .wpd-blog-subscriber .wpd-comment-author, #wpdcom .wpd-blog-subscriber .wpd-comment-author a { color:#898989 } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-subscriber .wpd-avatar img { border-bottom-color:#898989 } #wpdcom.wpd-layout-3 .wpd-blog-subscriber .wpd-comment-subheader { border-top:1px dashed #898989 } #wpdcom .wpd-blog-give_manager .wpd-comment-label { color: #ffffff; background-color: #31839e; border:none } #wpdcom .wpd-blog-give_manager .wpd-comment-author, #wpdcom .wpd-blog-give_manager .wpd-comment-author a { color:#31839e } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-give_manager .wpd-avatar img { border-color:#31839e } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-give_manager .wpd-avatar img { border-bottom-color:#31839e } #wpdcom.wpd-layout-3 .wpd-blog-give_manager .wpd-comment-subheader { border-top:1px dashed #31839e } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-give_manager .wpd-comment-right { border-left:1px solid #31839e } #wpdcom .wpd-blog-give_accountant .wpd-comment-label { color: #ffffff; background-color: #31839e; border:none } #wpdcom .wpd-blog-give_accountant .wpd-comment-author, #wpdcom .wpd-blog-give_accountant .wpd-comment-author a { color:#31839e } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-give_accountant .wpd-avatar img { border-color:#31839e } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-give_accountant .wpd-avatar img { border-bottom-color:#31839e } #wpdcom.wpd-layout-3 .wpd-blog-give_accountant .wpd-comment-subheader { border-top:1px dashed #31839e } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-give_accountant .wpd-comment-right { border-left:1px solid #31839e } #wpdcom .wpd-blog-give_worker .wpd-comment-label { color: #ffffff; background-color: #31839e; border:none } #wpdcom .wpd-blog-give_worker .wpd-comment-author, #wpdcom .wpd-blog-give_worker .wpd-comment-author a { color:#31839e } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-give_worker .wpd-avatar img { border-color:#31839e } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-give_worker .wpd-avatar img { border-bottom-color:#31839e } #wpdcom.wpd-layout-3 .wpd-blog-give_worker .wpd-comment-subheader { border-top:1px dashed #31839e } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-give_worker .wpd-comment-right { border-left:1px solid #31839e } #wpdcom .wpd-blog-give_donor .wpd-comment-label { color: #ffffff; background-color: #898989; border:none } #wpdcom .wpd-blog-give_donor .wpd-comment-author, #wpdcom .wpd-blog-give_donor .wpd-comment-author a { color:#898989 } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-give_donor .wpd-avatar img { border-color:#898989 } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-give_donor .wpd-avatar img { border-bottom-color:#898989 } #wpdcom.wpd-layout-3 .wpd-blog-give_donor .wpd-comment-subheader { border-top:1px dashed #898989 } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-give_donor .wpd-comment-right { border-left:1px solid #898989 } #wpdcom .wpd-blog-give_subscriber .wpd-comment-label { color: #ffffff; background-color: #898989; border:none } #wpdcom .wpd-blog-give_subscriber .wpd-comment-author, #wpdcom .wpd-blog-give_subscriber .wpd-comment-author a { color:#898989 } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-give_subscriber .wpd-avatar img { border-color:#898989 } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-give_subscriber .wpd-avatar img { border-bottom-color:#898989 } #wpdcom.wpd-layout-3 .wpd-blog-give_subscriber .wpd-comment-subheader { border-top:1px dashed #898989 } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-give_subscriber .wpd-comment-right { border-left:1px solid #898989 } #wpdcom .wpd-blog-wpseo_editor .wpd-comment-label { color: #ffffff; background-color: #31839e; border:none } #wpdcom .wpd-blog-wpseo_editor .wpd-comment-author, #wpdcom .wpd-blog-wpseo_editor .wpd-comment-author a { color:#31839e } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-wpseo_editor .wpd-avatar img { border-color:#31839e } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-wpseo_editor .wpd-avatar img { border-bottom-color:#31839e } #wpdcom.wpd-layout-3 .wpd-blog-wpseo_editor .wpd-comment-subheader { border-top:1px dashed #31839e } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-wpseo_editor .wpd-comment-right { border-left:1px solid #31839e } #wpdcom .wpd-blog-wpseo_manager .wpd-comment-label { color: #ffffff; background-color: #31839e; border:none } #wpdcom .wpd-blog-wpseo_manager .wpd-comment-author, #wpdcom .wpd-blog-wpseo_manager .wpd-comment-author a { color:#31839e } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-wpseo_manager .wpd-avatar img { border-color:#31839e } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-wpseo_manager .wpd-avatar img { border-bottom-color:#31839e } #wpdcom.wpd-layout-3 .wpd-blog-wpseo_manager .wpd-comment-subheader { border-top:1px dashed #31839e } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-wpseo_manager .wpd-comment-right { border-left:1px solid #31839e } #wpdcom .wpd-blog-translator .wpd-comment-label { color: #ffffff; background-color: #00B38F; border:none } #wpdcom .wpd-blog-translator .wpd-comment-author, #wpdcom .wpd-blog-translator .wpd-comment-author a { color:#00B38F } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-translator .wpd-avatar img { border-color:#00B38F } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-translator .wpd-avatar img { border-bottom-color:#00B38F } #wpdcom.wpd-layout-3 .wpd-blog-translator .wpd-comment-subheader { border-top:1px dashed #00B38F } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-translator .wpd-comment-right { border-left:1px solid #00B38F } #wpdcom .wpd-blog-post_author .wpd-comment-label { color: #ffffff; background-color: #0085FF; border:none } #wpdcom .wpd-blog-post_author .wpd-comment-author, #wpdcom .wpd-blog-post_author .wpd-comment-author a { color:#0085FF } #wpdcom .wpd-blog-post_author .wpd-avatar img { border-color:#0085FF } #wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-post_author .wpd-avatar img { border-color:#0085FF } #wpdcom.wpd-layout-2 .wpd-comment.wpd-reply .wpd-comment-wrap.wpd-blog-post_author { border-left:3px solid #0085FF } #wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-post_author .wpd-avatar img { border-bottom-color:#0085FF } #wpdcom.wpd-layout-3 .wpd-blog-post_author .wpd-comment-subheader { border-top:1px dashed #0085FF } #wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-post_author .wpd-comment-right { border-left:1px solid #0085FF } #wpdcom .wpd-blog-guest .wpd-comment-label { color: #ffffff; background-color: #898989; border:none } #wpdcom .wpd-blog-guest .wpd-comment-author, #wpdcom .wpd-blog-guest .wpd-comment-author a { color:#898989 } #wpdcom.wpd-layout-3 .wpd-blog-guest .wpd-comment-subheader { border-top:1px dashed #898989 } #comments, #respond, .comments-area, #wpdcom { } #wpdcom .ql-editor > * { color:#777777 } #wpdcom .ql-editor::before { } #wpdcom .ql-toolbar { border: 1px solid #DDDDDD; border-top:none } #wpdcom .ql-container { border: 1px solid #DDDDDD; border-bottom: none } #wpdcom .wpd-form-row .wpdiscuz-item input[type="text"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="email"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="url"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="color"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="date"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="datetime"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="datetime-local"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="month"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="number"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="time"], #wpdcom textarea, #wpdcom select { border: 1px solid #DDDDDD; color:#444444 } #wpdcom .wpd-form-row .wpdiscuz-item textarea { border:1px solid #DDDDDD } #wpdcom input::placeholder, #wpdcom textarea::placeholder, #wpdcom input::-moz-placeholder, #wpdcom textarea::-webkit-input-placeholder { } #wpdcom .wpd-comment-text { color:#444444 } #wpdcom .wpd-thread-head .wpd-thread-info { border-bottom:2px solid #0085FF } #wpdcom .wpd-thread-head .wpd-thread-info.wpd-reviews-tab svg { fill:#0085FF } #wpdcom .wpd-thread-head .wpdiscuz-user-settings { border-bottom:2px solid #0085FF } #wpdcom .wpd-thread-head .wpdiscuz-user-settings:hover { color:#0085FF } #wpdcom .wpd-comment .wpd-follow-link:hover { color:#0085FF } #wpdcom .wpd-comment-status .wpd-sticky { color:#0085FF } #wpdcom .wpd-thread-filter .wpdf-active { color: #0085FF; border-bottom-color:#0085FF } #wpdcom .wpd-comment-info-bar { border: 1px dashed #339eff; background:#e6f3ff } #wpdcom .wpd-comment-info-bar .wpd-current-view i { color:#0085FF } #wpdcom .wpd-filter-view-all:hover { background:#0085FF } #wpdcom .wpdiscuz-item .wpdiscuz-rating > label { color:#DDDDDD } #wpdcom .wpdiscuz-item .wpdiscuz-rating:not(:checked) > label:hover, .wpdiscuz-rating:not(:checked) > label:hover ~ label { } #wpdcom .wpdiscuz-item .wpdiscuz-rating > input ~ label:hover, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:not(:checked) ~ label:hover ~ label, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:not(:checked) ~ label:hover ~ label { color:#FFED85 } #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover, #wpdcom .wpdiscuz-item .wpdiscuz-rating > label:hover ~ input:checked ~ label, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked + label:hover ~ label, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover ~ label, .wpd-custom-field .wcf-active-star, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label { color:#FFD700 } #wpd-post-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-star { fill:#DDDDDD } #wpd-post-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-active { fill:#FFD700 } #wpd-post-rating .wpd-rating-wrap .wpd-rate-starts svg .wpd-star { fill:#DDDDDD } #wpd-post-rating .wpd-rating-wrap .wpd-rate-starts:hover svg .wpd-star { fill:#FFED85 } #wpd-post-rating.wpd-not-rated .wpd-rating-wrap .wpd-rate-starts svg:hover ~ svg .wpd-star { fill:#DDDDDD } .wpdiscuz-post-rating-wrap .wpd-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-star { fill:#DDDDDD } .wpdiscuz-post-rating-wrap .wpd-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-active { fill:#FFD700 } #wpdcom .wpd-comment .wpd-follow-active { color:#ff7a00 } #wpdcom .page-numbers { color: #555; border:#555 1px solid } #wpdcom span.current { background:#555 } #wpdcom.wpd-layout-1 .wpd-new-loaded-comment > .wpd-comment-wrap > .wpd-comment-right { background:#E5EEF7 } #wpdcom.wpd-layout-2 .wpd-new-loaded-comment.wpd-comment > .wpd-comment-wrap > .wpd-comment-right { background:#E5EEF7 } #wpdcom.wpd-layout-2 .wpd-new-loaded-comment.wpd-comment.wpd-reply > .wpd-comment-wrap > .wpd-comment-right { background:transparent } #wpdcom.wpd-layout-2 .wpd-new-loaded-comment.wpd-comment.wpd-reply > .wpd-comment-wrap { background:#E5EEF7 } #wpdcom.wpd-layout-3 .wpd-new-loaded-comment.wpd-comment > .wpd-comment-wrap > .wpd-comment-right { background:#E5EEF7 } #wpdcom .wpd-follow:hover i, #wpdcom .wpd-unfollow:hover i, #wpdcom .wpd-comment .wpd-follow-active:hover i { color:#0085FF } #wpdcom .wpdiscuz-readmore { cursor: pointer; color:#0085FF } .wpd-custom-field .wcf-pasiv-star, #wpcomm .wpdiscuz-item .wpdiscuz-rating > label { color:#DDDDDD } .wpd-wrapper .wpd-list-item.wpd-active { border-top:3px solid #0085FF } #wpdcom.wpd-layout-2 .wpd-comment.wpd-reply.wpd-unapproved-comment .wpd-comment-wrap { border-left:3px solid #E5EEF7 } #wpdcom.wpd-layout-3 .wpd-comment.wpd-reply.wpd-unapproved-comment .wpd-comment-right { border-left:1px solid #E5EEF7 } #wpdcom .wpd-prim-button { background-color: #333333; color:#FFFFFF } #wpdcom .wpd_label__check i.wpdicon-on { color: #333333; border:1px solid #999999 } #wpd-bubble-wrapper #wpd-bubble-all-comments-count { color:#003366 } #wpd-bubble-wrapper > div { background-color:#003366 } #wpd-bubble-wrapper > #wpd-bubble #wpd-bubble-add-message { background-color:#003366 } #wpd-bubble-wrapper > #wpd-bubble #wpd-bubble-add-message::before { border-left-color: #003366; border-right-color:#003366 } #wpd-bubble-wrapper.wpd-right-corner > #wpd-bubble #wpd-bubble-add-message::before { border-left-color: #003366; border-right-color:#003366 } .wpd-inline-icon-wrapper path.wpd-inline-icon-first { fill:#003388 } .wpd-inline-icon-count { background-color:#003388 } .wpd-inline-icon-count::before { border-right-color:#003388 } .wpd-inline-form-wrapper::before { border-bottom-color:#003388 } .wpd-inline-form-question { background-color:#003388 } .wpd-inline-form { background-color:#003388 } .wpd-last-inline-comments-wrapper { border-color:#003388 } .wpd-last-inline-comments-wrapper::before { border-bottom-color:#003388 } .wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments { background:#003388 } .wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments:hover, .wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments:active, .wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments:focus { background-color: #003388 } #wpdcom .ql-snow .ql-tooltip[data-mode="link"]::before { content: "Enter link:" } #wpdcom .ql-snow .ql-tooltip.ql-editing a.ql-action::after { content: "Save" } .comments-area { width:auto } #wpdcom .ql-editor::before { font-family:Lato } #wpdcom .wpd-comment-header .wpd-comment-author, #wpdcom .wpd-thread-head .wpd-thread-info { font-family: raleway; font-weight: 800; font-size:.9em } #wpdcom .wpd-comment-header { font-size:.8em } #wpdcom .wpd-comment.wpd-reply .wpd-comment-header .wpd-comment-author, #wpdcom .wpd-comment.wpd-reply .wpd-comment-header .wpd-comment-author a { font-size:.9em } #wpdcom .wpd-comment-text, #wpdcom .wpd-comment.wpd-reply .wpd-comment-text { font-size:90% } #wpdcom .wpd-comment-text p { margin-bottom:15px } #wpdcom .wpd-comment-footer .wpd-vote-up, #wpdcom .wpd-comment-footer .wpd-vote-down { width: 40px; height:15px } #wpdcom .wpd-comment-text blockquote { font-size: 1em; padding: 4%; margin-bottom: .7em; background-color:#f7f7f7 } #wpdcom .wpd-prim-button { font-size: 85%; width: 65%; padding: 2%; font-family: Raleway; font-weight: 800; box-shadow:0 0 10px 0 rgba(0, 0, 0, .5) } #wpdcom .wpd-prim-button:hover { opacity: 1; box-shadow:0 0 10px 0 rgba(0, 0, 0, .5) } #wpdcom button { width:55% } #wpdcom .wc-field-submit input[type=submit] { margin: auto; font-size: 60%; padding: 3%; width:50% } #wpdcom .wpd-comment-text a.rtBibleRef { color: #444; border-bottom: .07em solid lightgray; transition:.3s all ease } #wpdcom .wpd-comment-text a:hover.rtBibleRef { border-bottom: .1em solid darkgray; background:#e5eef7 } #wpdcom.wpd-layout-1 .wpd-new-loaded-comment > .wpd-comment-wrap > .wpd-comment-right { border-radius:5px }/* COMMENTED OUT removes background color, border bottom thats set for all a hrefs*/ #wpdcom * { background-color: transparent; border-bottom:0px } #wpdcom .wpd-comment .wpd-avatar img, #wpdcom .wpd-comment .wpd-avatar img.avatar { display:block } #wpdcom .wpd-comment .wpd-comment-header i.fas.fa-link { color: #325bad; font-size:1.2em } .wpd-comment-text br { content: ""; margin: 2em; display: block; font-size:24% } .lity-wrap #wpdUserContentInfo { background-color:#ffffff !important } .wpd-wrapper .wpd-user-email-delete-links { display:none } .wpd-bulk-desc { display:none } .wpd-wrapper #wpd-content-item-1 .wpd-item-right { display:none }/* *** Removes extra margin on top of comment form */ #comments { margin: 0px auto } </style>
Sybre,
Just an fyi, but I did email you through the link you left and provided the urls for pages and posts. Not sure why they didn’t land in your inbox…
It looks like you did some fantastic work here! I can confirm, the Printerfriendly plugin is causing the issue. I disabled and tried sharing a “post” url (a new link url as you mentioned Telegram and caching) and it worked!
I also see the added CSS, most of its from the wp-discuz plugin. I’ll see if I can work with both of those guys on these issues.
Thanks for looking into this and sorry I troubled you. At least you know it’s not on your end!
Folks, I cannot say enough good things about Mr. Waaijeer. He’s always so very helpful.
That link 404s… Great tip about the link, but I rather it not be on a public support forum. Call me crazy! hah
I’ll just shoot you a note through your site. Thx!
- This reply was modified 2 years, 8 months ago by bward.
Sure!
How can I shoot that over to you privately?
Forum: Plugins
In reply to: [Comments - wpDiscuz] wpDiscuz adding br tag instead of p tagThat did it.
Thanks so much for your assistance.
Sybre, that’s it, that’s it right there man!
I love how it only modifies my posts that do not have a custom SEO title. Cannot thank you enough. Have a blessed day sir!
Forum: Plugins
In reply to: [Comments - wpDiscuz] Enabling “View Comments” Button Without Comment FormNo problem, thanks for letting me know.
Have a great day and thanks for the great pluggin.
Closing this out, opened support request.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Reset Password ShortcodeThanks Rick, I went ahead and left feedback. We use Elementor, I don’t think there is a way to make the reset password page look like our site. A shortcode would be fantastic and really bring this function into the rest of the plugin.
Have a great day!
Forum: Developing with WordPress
In reply to: Custom Post Type Parent ArchiveHey bcworkz.
I actually did not come up with a solution, well, not a coding one. We use Elementor. So within it, there is a posts widget that enables you to display posts from a taxonomy for example on a post. Since I can do that, I can enable pagination with the same widget and accomplish what I set out to do.
I figured my use case might be small and I might not get a response. Hey, maybe this will help someone while boring you in the meantime! haha Take care!
I sincerely appreciate the reply, but that is very involved just to replace a word in a single phrase.
Hopefully, this changes in the future, and we can just edit a box within the plugin. I have never seen files required by a plugin to change a phrase before.