WPIntell

Source evidence

Rich text

Participants Database · support · 2025-10-31T14:27:00+00:00

complaintsentiment
mediumseverity
0.93relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 31 rows with source links

16.1% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

26 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
avberkel unresolved
A few questions about the richtext fields when goto full screen , it will be really a full screen, no buttons anymore, covering the wordpress bar on the left side when logged in as editor or admin. Can I adjust that? How to enlarge the richtextfield in width? At the end of a line I use the return-button on the keyboard. It gives an extra whitespace between this line and the next one? CAn I adjust it? The Rich Text field in Participants Database uses the old “TinyMCE” editor with pretty limited configuration options. You can adjust the size of the fullscreen using some CSS. For example, to add 10em of space at the top (thus revealing the top part of the web page, which is under the fullscreen editor, you can use a CSS rule like this: div.mce-fullscreen { top: 10em; } You can try different things there, this rule controls the element that holds the fullscreen display that is superimposed over the web page, so you have other attributes that you can set like left, right, bottom, etc. Normally, this is set to top:0 and left:0 to completely cover the screen. The width of the rich text field (when not in fullscreen mode) is mostly controlled by the formatting of your web page. It will expand (to a point) to fill the horizontal space that is available to it. You can try to make it wider by changing the formatting of the page it is on, but there will be a limit to what you can do with that…and it can be quite complex to get this to do what you want. You can’t simply make the element wider, it will be restricted by the page layout, which is determined by your theme. The line spacing is controlled by the CSS stylesheet. When you type “return” it makes a new paragraph, and follows the spacing rules for a paragraph. You can adjust the CSS for this with something like: #tinymce p { margin: 0; } Which will remove the paragraph margins in the editor window. If you want a line break without making a new paragraph, use shift+return. This reply was modified 8 months, 1 week ago by rolandbarker . Reason: code display Thank you very much. I have another question. Using pdb_update_notify.php for sending out mails to the particpants is working well together with WP SMTP, except when there is a external link in the rich-text field. The recipient sees the link as plain text in most email programs visual-editor: Zie deze clip: https://youtu.be/Df3m99YF0Ns code-editor: Zie deze clip <a href=” https://youtu.be/Df3m99YF0Ns”>https://youtu.be/Df3m99YF0Ns Returns for the recipient as: Zie deze clip: https://youtu.be/Df3m99YF0Ns (no link) or as [\” https://youtu.be/Df3m99YF0Ns \”]https://youtu.be/Df3m99YF0Ns Do you have any idea how to solve this? Put a header inpdb_update_notify.php? If so, what header? Your reaction on this mail will be very appreciated The only thing you can do to make sure that a URL is displayed as a clickable link is to put it in an “a” HTML element, which is accomplished by using the 🔗 icon in the rich text editor. That is probably what you are doing, but I just want to make that clear. This does not guarantee the URL will be displayed as a clickable link by the email client, and there is no way to force it to do so. The header is already correct for that, so changing the header won’t help. If you use plugin debugging or an email logging plugin, you will be able to verify that the header and HTML in the sent email is correct.

Comments

3 shown
rolandbarker 2025-11-01T18:45:00+00:00

The Rich Text field in Participants Database uses the old “TinyMCE” editor with pretty limited configuration options. You can adjust the size of the fullscreen using some CSS. For example, to add 10em of space at the top (thus revealing the top part of the web page, which is under the fullscreen editor, you can use a CSS rule like this: div.mce-fullscreen { top: 10em; } You can try different things there, this rule controls the element that holds the fullscreen display that is superimposed over the web page, so you have other attributes that you can set like left, right, bottom, etc. Normally, this is set to top:0 and left:0 to completely cover the screen. The width of the rich text field (when not in fullscreen mode) is mostly controlled by the formatting of your web page. It will expand (to a point) to fill the horizontal space that is available to it. You can try to make it wider by changing the formatting of the page it is on, but there will be a limit to what you can do with that…and it can be quite complex to get this to do what you want. You can’t simply make the element wider, it will be restricted by the page layout, which is determined by your theme. The line spacing is controlled by the CSS stylesheet. When you type “return” it makes a new paragraph, and follows the spacing rules for a paragraph. You can adjust the CSS for this with something like: #tinymce p { margin: 0; } Which will remove the paragraph margins in the editor window. If you want a line break without making a new paragraph, use shift+return. This reply was modified 8 months, 1 week ago by rolandbarker . Reason: code display

avberkel 2025-11-10T11:04:00+00:00

Thank you very much. I have another question. Using pdb_update_notify.php for sending out mails to the particpants is working well together with WP SMTP, except when there is a external link in the rich-text field. The recipient sees the link as plain text in most email programs visual-editor: Zie deze clip: https://youtu.be/Df3m99YF0Ns code-editor: Zie deze clip <a href=” https://youtu.be/Df3m99YF0Ns”>https://youtu.be/Df3m99YF0Ns Returns for the recipient as: Zie deze clip: https://youtu.be/Df3m99YF0Ns (no link) or as [\” https://youtu.be/Df3m99YF0Ns \”]https://youtu.be/Df3m99YF0Ns Do you have any idea how to solve this? Put a header inpdb_update_notify.php? If so, what header? Your reaction on this mail will be very appreciated

rolandbarker 2025-11-10T18:54:00+00:00

The only thing you can do to make sure that a URL is displayed as a clickable link is to put it in an “a” HTML element, which is accomplished by using the 🔗 icon in the rich text editor. That is probably what you are doing, but I just want to make that clear. This does not guarantee the URL will be displayed as a clickable link by the email client, and there is no way to force it to do so. The header is already correct for that, so changing the header won’t help. If you use plugin debugging or an email logging plugin, you will be able to verify that the header and HTML in the sent email is correct.