Comments for ThemeinProgress https://www.themeinprogress.com/ Free and Premium WordPress Themes Download Mon, 23 Feb 2026 16:43:16 +0000 hourly 1 Comment on Please activate Internal Linking Related Contents Pro by alexvtn https://www.themeinprogress.com/tickets/please-activate-internal-linking-related-contents-pro/#comment-4186 Mon, 23 Feb 2026 16:43:15 +0000 https://www.themeinprogress.com/tickets/please-activate-internal-linking-related-contents-pro/#comment-4186 Hello

Could you please check with your hosting provider whether there are any errors related to the use of the cURL function, which is used to verify the license key status?

The activation plugin is required to resolve this type of issue.

Thank you

Alex

]]>
Comment on Plugin breaks my site code by alexvtn https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4170 Fri, 05 Dec 2025 17:15:53 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4170 If you don’t also need audio communication during the connection, you can send your request to [email protected]

]]>
Comment on Plugin breaks my site code by scondab@gmail.com https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4169 Fri, 05 Dec 2025 14:37:15 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4169 Can provide you with anydesk access

 

]]>
Comment on Plugin breaks my site code by alexvtn https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4168 Fri, 05 Dec 2025 14:15:24 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4168 Unfortunately, i’m not able to reproduce this issue locally. Could you create a staging copy of the site so I can investigate it more effectively?

Thank you

Alex

]]>
Comment on Plugin breaks my site code by scondab@gmail.com https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4167 Fri, 05 Dec 2025 13:58:37 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4167 Hi,

 

Unfortunately, it did not work

 

Regards,

 

Olubunmi

]]>
Comment on Plugin breaks my site code by alexvtn https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4166 Fri, 05 Dec 2025 13:40:19 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4166 I’m sending you a customized version of the plugin that should fix the WeTransfer error. Could you install it and let me know?

Thank you.

Alex

]]>
Comment on Plugin breaks my site code by scondab@gmail.com https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4165 Fri, 05 Dec 2025 13:18:33 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4165 Hello,

See the message from hosting and they are advising to disable it:

Upon checking, here is the error log found on the domain root folder:

 

[05-Dec-2025 12:30:20 UTC] PHP Warning: Undefined property: DOMText::$tagName in /home/revioptr/thereviewguide.co.uk/wp-content/plugins/internal-linking-related-contents-pro/core/includes/class-related-contents.php on line 217

 

Per the log, it seems like the ‘internal-linking-related-contents-pro’ plugin is causing the issue, can you please disable it to check the issue?

 

 

You can disable it by following this guide: https://www.namecheap.com/support/knowledgebase/article.aspx/9555/2187/how-to-disable-wordpress-plugins/

 

 

]]>
Comment on Plugin breaks my site code by alexvtn https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4164 Fri, 05 Dec 2025 11:21:23 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4164 Hello

The first CSS code you sent is added by WordPress directly into the page source.

However, when I analyze the source code of the link you shared, that CSS is not there.

Please, if you’re using a CDN, you also need to clear the CDN cache. You should also check whether your hosting provider includes an integrated CDN.

Please let me know

Alex

]]>
Comment on Plugin breaks my site code by scondab@gmail.com https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4163 Fri, 05 Dec 2025 10:54:35 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4163 Hi,

 

I tried both methods. It did not work

Regards,

Olubunmi

]]>
Comment on TIP Related Posts Pro by alexvtn https://www.themeinprogress.com/tickets/tip-related-posts-pro/#comment-4162 Fri, 05 Dec 2025 10:01:09 +0000 https://www.themeinprogress.com/tickets/tip-related-posts-pro/#comment-4162 Hello,

I’ve activated a copy of this plugin. You should have received an email about it.

Please let me know.

Alex

 

]]>
Comment on where do i enter the license key? by alexvtn https://www.themeinprogress.com/tickets/where-do-i-enter-the-license-key/#comment-4161 Fri, 05 Dec 2025 09:53:30 +0000 https://www.themeinprogress.com/tickets/where-do-i-enter-the-license-key/#comment-4161 Hello

Have you installed the premium version?

Please follow the online documentation
https://demo.themeinprogress.eu/internal-linking-related-contents-pro/how-to-download-and-install-the-plugin/

Thank you

Alex

]]>
Comment on Plugin breaks my site code by alexvtn https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4160 Fri, 05 Dec 2025 09:50:50 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4160 Hello,

this isn’t a bug of Inline Related Contents Pro

the table plugin is outputting HTML entities like ✓ / ✗ inside CSS (content:), and CSS does not decode HTML entities, so they get printed literally.

Fix #1 (recommended): add a CSS override (works immediately)

Add this to Appearance → Customize → Additional CSS (or your child theme / custom CSS file):

.pros-cons-container .pros-box li::before { content: “\2713 ” !important; } /* ✓ */
.pros-cons-container .cons-box li::before { content: “\2717 ” !important; } /* ✗ */

(Using \2713 / \2717 is the most robust way. You can also use the literal characters ✓ / ✗.)

Fix #2 (optional): exclude the inline CSS block from LiteSpeed optimization

Since the plugin outputs those rules inline (<style>…</style>), you can also prevent LiteSpeed from minifying/combining that inline CSS:

LiteSpeed Cache → Page Optimization → CSS Settings → CSS Excludes

Add a unique string that appears in that inline CSS block (one per line), for example:

pros-cons-container
cons-box li:before
&#10007;

Then Purge All caches (LiteSpeed Cache → Toolbox → Purge → Purge All, and CDN cache too if used).

Please let me know

Alex

]]>
Comment on Plugin breaks my site code by scondab@gmail.com https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4159 Fri, 05 Dec 2025 09:22:38 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4159 The error has returned 
I have purged the cache severally with no visible result

 

Regards,

Olubunmi

]]>
Comment on Plugin breaks my site code by scondab@gmail.com https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4158 Wed, 03 Dec 2025 16:05:06 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4158 Hi Alex,

 

Clearing the cache seem to work

Thank you 

 

Regards,

Olubunmi

]]>
Comment on Plugin breaks my site code by alexvtn https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4157 Wed, 03 Dec 2025 15:32:21 +0000 https://www.themeinprogress.com/tickets/plugin-breaks-my-site-code/#comment-4157 Hello

On this page i can correctly see the section from your screenshot. Have you tried clearing the litespeed cache plugin cache and checking the site in incognito mode?

Sometimes it may be necessary to regenerate the cache after installing a plugin. I personally had a similar issue on a different site (where the plugin you purchased hadn’t been installed).

Please let me know

Alex

]]>