Search Results for 'cloud library'

    No search results were found in Documentation!

Results from the Forum
Calin
tagDiv Staff

Hi,
Unfortunately, we have only a guide – https://forum.tagdiv.com/modules-builder-newspaper-theme/. Those modules can be created using tagDiv Composer and tagDiv Cloud Libraryhttps://i.imgur.com/6bzfukz.png. Select a module if there is one you like, and after that, just edit/adjust it according to your needs.

alejalme
tagDiv Member

Yesterday I changed the files, and it started working again. As I explained in the email.

Today the same error appeared again:

[15-Sep-2025 13:17:07 UTC] PHP Warning: require_once(legacy/common/common.php): failed to open stream: No such file or directory in /home/lacuarta/public_html/wp-content/plugins/td-composer/td-composer.php on line 146
[15-Sep-2025 13:17:07 UTC] PHP Fatal error: require_once(): Failed opening required ‘legacy/common/common.php’ (include_path=’.:/opt/alt/php74/usr/share/pear’) in /home/lacuarta/public_html/wp-content/plugins/td-composer/td-composer.php on line 146

So I did the same thing again: I disabled the td-composer and td-cloud-library plugins, went into WordPress, and uploaded them again manually.

It started working again, but what intrigues me is that after a while the same error comes back.

Calin
tagDiv Staff

Hi TeraBoy, the theme plugins can be installed at any time from Newspaper > plugins – https://i.imgur.com/UQincNf.png
For the tagDiv Cloud Library, if you want, you can try this link – https://cdn.tagdiv.com/wp-content/uploads/2025/07/td-cloud-library.zip for the version with the fix.
Thank you!

TeraBoy
tagDiv Member

Hello!

I have same error and uploading the new td-composer.zip was fixed, but the td-cloud-libraryfix.zip file says “not plugins found” inside the compressed file so I dont know what to do now about that plugin (I removed it from the panel, before tried to re-install, so is not present on the website now)

Calin
tagDiv Staff

Hello,

Please make a test and replace the plugins tagDiv Composer and tagDiv Cloud Library with the versions from here:
https://cdn.tagdiv.com/wp-content/uploads/2025/05/td-composer.zip
https://cdn.tagdiv.com/wp-content/uploads/2025/06/td-cloud-libraryfix.zip

Thank you!

sibyxaviery2k
Participant
#0

I am using TagDiv cloud library(Single magazinePro template), but I am encountering a layout problem specifically on the single post pages. The post page is structured with two sections: the main content area and a sidebar. While the composer editor shows the layout correctly with both sections side by side, the live website displays the sidebar overlapping the content, and the main content stretches to full width.

Here are the screenshots for reference:

Overlapped sidebar issue: https://prnt.sc/PTyjQ-jsfqYm

Composer view (correct layout): https://prnt.sc/kGkECw7af7Rc

Live view (problem visible): https://prnt.sc/uOor9afvQQj2

I have cleared caches, checked for plugin conflicts, and confirmed that this issue only occurs on the single post pages, not on other pages.

Could you please guide me on how to fix this issue? I would appreciate any advice on CSS adjustments, composer settings, or known conflicts that might cause this problem.

Thankyou

rahlplx
tagDiv Member

I tried what you suggested in the attached image, but it didn’t work. I also attempted to edit it as described in the documentation, but I couldn’t find the Cloud Library button. I then tried editing with TagDiv Composer and clicked the Cloud Library button, but the category templates do not appear. Please see the attached images for a more detailed view of the issue.

Please check-
https://prnt.sc/QzuC9JACWY1i
https://prnt.sc/G1KUbkKrXJpT
https://prnt.sc/ZoWua7LHbYwc

Calin
tagDiv Staff

Hello,

Unfortunately, there isn’t a built-in option in the theme to set up a redirect for the login modal. This can only be achieved by modifying the theme files.

There are two files responsible for the modal login form, depending on the template you are using:

For the cloud template:
wp-content/plugins/td-cloud-library/parts/tdb-login-modal.php

For the standard template:
wp-content/plugins/td-composer/legacy/Newspaper/parts/header/td-login-modal.php

You’ll need to modify the relevant file to implement the redirect.

Thank you!

Calin
tagDiv Staff

Hello,

There are a few situations when the cloud templates can not be imported, so it is essential to make sure that the theme requirements are set as we mentioned in this guide – https://forum.tagdiv.com/requirements-for-newspaper/
If the settings are set and the situation persists, please let me know the pre-built website you want to install and you are facing this situation.

Also, an alternative is to import the template for that demo, which can be done from the Cloud templatehttps://i.imgur.com/rXvPvP9.png

Thank you!

Calin
tagDiv Staff

Hello,

Please make a test and replace the plugins tagDiv Composer and tagDiv Cloud Library with the versions from here:
https://cdn.tagdiv.com/wp-content/uploads/2025/05/td-composer.zip
https://cdn.tagdiv.com/wp-content/uploads/2025/06/td-cloud-libraryfix.zip

Thank you!

europeantimes
tagDiv Member

Hello TagDiv Support,

I’m reaching out regarding two critical PHP 8.4 compatibility issues in the td-cloud-library plugin bundled with the Newspaper theme. These are causing repeated deprecation warnings and notices on my site (europeantimes.news), even though the site functions partially.

After thorough debugging, I’ve identified the following issues:

### 1. **Deprecated Constructor in Mobile_Detect.php**

**File:**
/wp-content/plugins/td-cloud-library/includes/Mobile_Detect.php (line 684)

**Issue:**
The constructor uses implicitly nullable parameters, which is deprecated in PHP 8.4:

`php
function __construct($userAgent = null, $httpHeaders = null)
`

This triggers the following error:
`
PHP Deprecated: Mobile_Detect::__construct(): Implicitly marking parameter $headers as nullable is deprecated, the explicit nullable type must be used instead
`

**Recommended Fix:**
Update the constructor to use explicit nullable types:

`php
function __construct(?string $userAgent = null, ?array $httpHeaders = null)
`

### 2. **Text Domain Loaded Too Early**

**Issue:**
The td-cloud-library plugin loads its translations **before the init action**, which triggers a WordPress 6.7+ deprecation notice:

`
PHP Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the ‘td-cloud-library’ domain was triggered too early.
`

**Cause:**
load_plugin_textdomain() is called directly when the plugin loads, not within the init hook.

**Recommended Fix:**
Move the translation loading to the init action:

`php
add_action(‘init’, function() {
load_plugin_textdomain(‘td-cloud-library’, false, dirname(plugin_basename(__FILE__)) . ‘/languages’);
});
`

### Environment
– WordPress: 6.8.2
– PHP: 8.4.6
– Theme: Newspaper (latest version)
– Plugin: td-cloud-library (bundled)
– Redis: Active (Redis Object Cache Pro)

### Request
Could you please:
1. Confirm if these issues are known and if a fix is already available?
2. Provide an updated version of td-cloud-library with full PHP 8.4 support?
3. Advise on any known conflicts with Redis or high-traffic automated sites?

These notices are not just noise — they impact performance and indicate deeper compatibility issues.

Thank you for your time and support. I look forward to your response.

Best regards,

europeantimes
Participant
#0

Dear TagDiv Support,

I am contacting you regarding critical compatibility issues between the Newspaper theme and PHP 8.4, which are affecting the performance and stability of my site (europeantimes.news).

After thorough debugging, I have identified two major issues in the td-cloud-library plugin, which is bundled with your theme.

❌ 1. Deprecated Constructor in Mobile_Detect.php
File:
/wp-content/plugins/td-cloud-library/includes/Mobile_Detect.php

Issue:
The constructor uses implicitly nullable parameters, which is deprecated in PHP 8.4:

php

1
function __construct($userAgent = null, $httpHeaders = null)
Error:

1
PHP Deprecated: Mobile_Detect::__construct(): Implicitly marking parameter $headers as nullable is deprecated
Solution:
Update the constructor to use explicit nullable types:

php

1
function __construct(?string $userAgent = null, ?array $httpHeaders = null)
❌ 2. Text Domain Loaded Too Early
Issue:
The td-cloud-library plugin loads its translations before the init hook, which triggers a WordPress deprecation notice:

1
PHP Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the ‘td-cloud-library’ domain was triggered too early.
Cause:
load_plugin_textdomain() is called directly when the plugin loads, not on the init action.

Solution:
Move the text domain loading to the init hook:

php

1
2
3
add_action(‘init’, function() {
load_plugin_textdomain(‘td-cloud-library’, false, dirname(plugin_basename(__FILE__)) . ‘/languages’);
});
✅ Impact
These issues generate hundreds of PHP notices and deprecation warnings
They contribute to performance degradation
They indicate the plugin is not fully compatible with PHP 8.4
🔧 Request
Please:

Provide an updated version of td-cloud-library with PHP 8.4 support
Or confirm if a fix is already available in a newer release
Advise if there are any known conflicts with Redis, WP-CLI, or high-traffic automated sites
I am using:

WordPress 6.8.2
PHP 8.4.6
Redis Object Cache
Newspaper Theme (latest version)
Thank you for your support. I look forward to your response.

Best regards,

srendell
tagDiv Member

Thanks for responding.

If i do this will there any problem ? because I have created many templates in cloud templates.

there are many custom templates created by me in cloud templates.

will this process of td cloud library plugin removal and reinstall affect my current pages?

srendell
tagDiv Member

So here I need to remove cloud library plugin and install new cloud library plugin given by you.

Am I right? Please confirm.

If i do this will there any problem ? because I have created many templates in cloud templates.

there are many custom templates created by me in cloud templates.

will this process of td cloud library plugin removal and reinstall affect my current pages?

Calin
tagDiv Staff

Hi,

For the problem _load_textdomain_just_in_time from td-cloud-library, please download and reinstall the plugin from here -> https://cdn.tagdiv.com/wp-content/uploads/2025/07/td-cloud-library.zip

The warning seems to be related to the Youtube ids that no longer exits, so you can check on your pages for the youtube ids: 9YPsSaYlkyc and 4h2FqahPC2M and remove them.

srendell
Participant
#0

https://forcemedia.digital/

Above is my website and I am using newspaper theme package.

After upgrading td composer plugin I am facing some issues.

I am using advance ad plugin so when I am adding any ads and click on save I am getting following error.

“There has been a critical error on this website. Please check your site admin email inbox for instructions. If you continue to have problems, please try the support forums.”

So I have enabled debug then I found td composer issue.check below notice and warning.

Deprecated: File class-phpmailer.php is deprecated since version 5.5.0! Use wp-includes/PHPMailer/PHPMailer.php instead. The PHPMailer class has been moved to wp-includes/PHPMailer subdirectory and now uses the PHPMailer\PHPMailer namespace. in /home/mcmupw94bhs4/public_html/forcemedia.digital/wp-includes/functions.php on line 6121
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the advanced-ads-selling domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mcmupw94bhs4/public_html/forcemedia.digital/wp-includes/functions.php on line 6121 Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the tribe-events-calendar-pro domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mcmupw94bhs4/public_html/forcemedia.digital/wp-includes/functions.php on line 6121 Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the td-cloud-library domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mcmupw94bhs4/public_html/forcemedia.digital/wp-includes/functions.php on line 6121

Warning: Undefined array key “9YPsSaYlkyc” in /home/mcmupw94bhs4/public_html/forcemedia.digital/wp-content/plugins/td-composer/legacy/common/wp_booster/td_video_playlist_render.php on line 303 Warning: Undefined array key “4h2FqahPC2M” in /home/mcmupw94bhs4/public_html/forcemedia.digital/wp-content/plugins/td-composer/legacy/common/wp_booster/td_video_playlist_render.php on line 303

Pleas help me on this.

Calin
tagDiv Staff

Hi Thomas,

I’ve passed a note to our developers to review the code in the file:
td-cloud-library/includes/tdb_functions.php. I hope they’ll be able to take a look at it soon.

In the meantime, I recommend running a quick test: if you’re currently using PHP version 8 or higher, try switching to PHP 7.4 to see if the issue persists. It’s possible that the problem is related to new PHP restrictions that may be affecting the code.
Thank you!

Calin
tagDiv Staff

Hi,
Please try the version of the plugin from here https://cdn.tagdiv.com/wp-content/uploads/2025/07/td-cloud-library.zip the problem with _load_textdomain_just_in_time will be fixed.
Thank you!

GreeceMoments
Participant
#0

Dear tagDiv Support Team,

I am experiencing a persistent PHP warning in my WordPress installation related to the tagDiv Cloud Library plugin. The exact error message is:

text
PHP Warning: Undefined array key “tdb_templates” in /wp-content/plugins/td-cloud-library/includes/tdb_functions.php on line 661
This warning appears repeatedly in my server error logs, particularly when customers have products in their WooCommerce cart and proceed to the checkout page. It seems the plugin is trying to access the “tdb_templates” array key which is either not defined or not properly loaded under these conditions.

I have already tried the following troubleshooting steps without success:

Reinstalling the tagDiv Cloud Library plugin

Clearing all caches (server, plugin, browser)

Ensuring that the tagDiv Shop plugin is installed and active

Testing multiple tagDiv Cloud Library templates for WooCommerce products

The warning persists and may indicate a problem with how the plugin handles template data when rendering the cart or checkout pages.

Could you please advise on how to resolve this warning? Is there a recommended way to repair, re-import, or reset the “tdb_templates” to ensure they are correctly registered?

Any guidance or a fix for this issue would be greatly appreciated, as it clutters our error logs and may impact site stability.

Thank you very much for your support.

Best regards,
Thomas – http://www.greece-moments.com

GreeceMoments
tagDiv Member

I have the same warning. Please tagDiv Support Team can you help me?

I am experiencing a persistent PHP warning in my WordPress installation related to the tagDiv Cloud Library plugin. The exact error message is:

PHP Warning: Undefined array key “tdb_templates” in /wp-content/plugins/td-cloud-library/includes/tdb_functions.php on line 661

This warning appears repeatedly in my server error logs, particularly when customers have products in their WooCommerce cart and proceed to the checkout page. It seems the plugin is trying to access the “tdb_templates” array key which is either not defined or not properly loaded under these conditions.

I have already tried the following troubleshooting steps without success:

Reinstalling the tagDiv Cloud Library plugin

Clearing all caches (server, plugin, browser)

Ensuring that the tagDiv Shop plugin is installed and active

Testing multiple tagDiv Cloud Library templates for WooCommerce products

The warning persists and may indicate a problem with how the plugin handles template data when rendering the cart or checkout pages.

Could you please advise on how to resolve this warning? Is there a recommended way to repair, re-import, or reset the “tdb_templates” to ensure they are correctly registered?

Any guidance or a fix for this issue would be greatly appreciated, as it clutters our error logs and may impact site stability.

Thank you very much for your support.

Best regards,
Thomas

knthdgd
Participant
PHP Notice - topic
#0

Hi Tagdiv.

I use Newsletter.

In debug.log I get this PHP Notice 8-12 times every minute.

How to fix it?

[29-Aug-2025 20:26:41 UTC] PHP Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the td-cloud-library domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/admin/web/feedball.dk/public_html/wp-includes/functions.php on line 6121

andreschg
Participant
#0

Quiero editar una pagina y al querer agregar una plantilla aparece la leyenda Invalid “reply from server endpoint.”

alguien me pu8ede ayudar?

infotec2
Participant
#0

Hi,
tagDiv Cloud Library Plugin is Active, but Cloud Library menu item does not appear in the header when editing one page.

Calin
tagDiv Staff

Hello,
It will need to set a plugin to see what exactly from tagDiv Cloud Library is consuming the resources. For this, you can use the Query Monitor plugin. This cna be related to a block or menu that makes many requests to the database.

Viewing 25 results - 276 through 300 (of 8,727 total)