Search Results for 'child theme how to functions.php'

Results from the Forum
Sikandar
Participant
#0

So installed the child theme and I only have Styles.css and functions.php. The theme seems to be installed and running on the site but its functions and style.css are pretty much empty apart from some custom code I am using.

Did I do this right? Do I need to copy php files from the parent theme into the child?

dimitrisv
tagDiv Member

Same issue here..

I added this code in my child theme functions.php so that I can hide the registration button when the user has already logged in but to no avail.

add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’, 11);
function theme_enqueue_styles() {
wp_enqueue_style(‘td-theme’, get_template_directory_uri() . ‘/style.css’, ”, TD_THEME_VERSION, ‘all’ );
wp_enqueue_style(‘td-theme-child’, get_stylesheet_directory_uri() . ‘/style.css’, array(‘td-theme’), TD_THEME_VERSION . ‘c’, ‘all’ );

}

function hide_element_for_logged_in_users() {
if ( is_user_logged_in() ) {
// Enqueue inline CSS
wp_add_inline_style( ‘td-theme-child’, ‘.registration { display: none !important; }’ );
}
}

add_action( ‘wp_enqueue_scripts’, ‘hide_element_for_logged_in_users’ );

gdepountis
tagDiv Member

The problem solved after add it in child theme in functions.php:
// Add UTF-8 charset meta tag
function add_utf8_meta_tag() {
echo ‘<meta charset=”UTF-8″>’ . PHP_EOL;
}
add_action(‘wp_head’, ‘add_utf8_meta_tag’);

I leave it here for any other have the same problem.
No need to tell that I am very disapontiment regarding your support. This function not need to be something extra is something that your theme must have and even if you do not have the time and the resources to fix it you have to direct your clients in order to fix the problem.

bhcrow
tagDiv Member

I had similar problem with my website with this popular posts. I solved it in a way that I made custom shortcode for sorting based on total number of views (not in last 7 days or 48h). In shortcode you have the option to choose how old you want your posts to be. hat means that it wont show posts older than 7 days (or any other number of days defined in shortcode) even though if they are visited.

Here is my codes which works for me in my Newspaper child theme. Use it freely if it suits you and your website.

Code in functions.php file in child theme:

// Include the popular posts shortcode file
include_once get_stylesheet_directory() . '/sedamdana-popular-shortcode.php';

File in child theme whic I named “sedamdana-popular-shortcode.php”

(this forum is not allowing me to share code from my php file, so I uploaded it on link: https://file.io/PSWL4VdNb7xN)

The shortcode output is styled using CSS defined in the PHP code. You can further customize the styles by modifying the CSS within the bhcrow_posts_shortcode_styles function.

Once the PHP code is added, you can use the [bhcrow_posts] shortcode in your posts, pages, or widgets where you want to display the list of posts.
Example usage: [bhcrow_posts title=”Popular Posts” number=3 days=30 category=”technology” sort=”visits” show_date=false]

Customize the shortcode attributes as per your requirements. For example, you can change the number of posts displayed, the sorting criteria, or whether to show thumbnails or dates.

The shortcode [bhcrow_posts] can accept several attributes to customize its behavior. Here are the available attributes and their default values:
title (default: ‘Posts’): The title of the section.
number (default: 5): The number of posts to display.
days (default: 7): Number of days to consider for displaying posts.
category (default: none): The category of posts to display.
show_thumbnails (default: true): Whether to show post thumbnails.
show_date (default: true): Whether to show post dates.
show_visits (default: true): Whether to show visit counts.
show_category (default: true): Whether to show post categories.
show_title (default: true): Whether to show post titles.
sort (default: ‘visits’): Sorting criteria for posts (‘visits’ for popularity, ‘latest’ for latest posts).
title_limit (default: none): Character limit for post titles.
cache_duration (default: 60): Cache duration in minutes.

The final output is cached using set_transient to improve performance by avoiding repeated database queries.

After adding the shortcode to a post or page, view the page on your website to see the output. The posts should be displayed based on the attributes you’ve specified in the shortcode.

Remember to backup your files before making any changes, especially when editing theme files or using any PHP code.

I use it without any issues on my website Visoko.co.ba news portal

Here is the screenshot of it. I use it with minimum options on my homepage.

https://prnt.sc/BKxwmsDaAmvt

  • This reply was modified 2 years by bhcrow.
kevrose
tagDiv Member

Hi Bettina

Thanks for your reply, although unfortunately it doesn’t answer my questions. I’ll try and phrase them better!

1. With this test site I have added a background ad with the plugin. However, you can see that only the elements to the sides of the header are showing and then this disappear on scroll. What is the element in the theme that is covering the sides? I can then adapt the code for functions.php (as above) to stop this from happening.

2. I would like to adjust the width of the content, to fit the background ad design. How do I do this in CSS or within the child theme files?

I hope I’ve explained better…

Thanks.

Calin
tagDiv Staff

Hello,
If you want to filter the search, then you’ll need to filter the results displayed in live search and in search page. By default this will display all results or only the post type set (it can be set only one post type) – https://i.imgur.com/GSvxi9D.png what can be done is to use a custom code in a functions.php (it can be set in a child theme) – https://forum.tagdiv.com/the-child-theme-support-tutorial/
function wpshock_search_filter( $query ) {
if ( $query->is_search ) {
$query->set( 'post_type', array('post','page') );
}
return $query;
}
add_filter('pre_get_posts','wpshock_search_filter');

Now on search page results you need to edit with tagDiv Composer and set on the posts loop the post types you want to filter – https://i.imgur.com/iLuFint.png
Thank you!

renovaweb
Participant
#0

Hello !
I really like this theme, thanks !
But the mobile version doesn’t work (critical error)
Homepage seems fine

I tried with AMP, AMP + Mobile, Mobile
I tried with AMP plugin not activated too

Website: https://dev.magazine3rve.cc/
PHP 8 with php ini ressources boosted to max
WordPress 6.4.1 with Newspaper Child theme Version : 9.0c
NewspaperVersion : 12.6.1

PHP errors on inner pages or articles

Warning: require_once(/home/mag3rve/dev.magazine3rve.cc/wp-content/themes/Newspaper/legacy/common/wp_booster/td_css_res_compiler.php): Failed to open stream: No such file or directory in /home/mag3rve/dev.magazine3rve.cc/wp-includes/template.php on line 790

Fatal error: Uncaught Error: Failed opening required ‘/home/mag3rve/dev.magazine3rve.cc/wp-content/themes/Newspaper/legacy/common/wp_booster/td_css_res_compiler.php’ (include_path=’.:/opt/cpanel/ea-php80/root/usr/share/pear’) in /home/mag3rve/dev.magazine3rve.cc/wp-includes/template.php:790 Stack trace: #0 /home/mag3rve/dev.magazine3rve.cc/wp-content/plugins/td-composer/legacy/common/wp_booster/td_autoload_classes.php(42): load_template(‘/home/mag3rve/d…’, true) #1 [internal function]: td_autoload_classes->loading_classes(‘td_css_res_comp…’) #2 /home/mag3rve/dev.magazine3rve.cc/wp-content/plugins/td-composer/legacy/common/wp_booster/td_global.php(780): class_exists(‘td_css_res_comp…’, true) #3 /home/mag3rve/dev.magazine3rve.cc/wp-content/plugins/td-composer/legacy/common/wp_booster/td_wp_booster_functions.php(1184): td_global::reset_theme_settings() #4 /home/mag3rve/dev.magazine3rve.cc/wp-includes/class-wp-hook.php(324): hook_wp_head(”) #5 /home/mag3rve/dev.magazine3rve.cc/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #6 /home/mag3rve/dev.magazine3rve.cc/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #7 /home/mag3rve/dev.magazine3rve.cc/wp-includes/general-template.php(3052): do_action(‘wp_head’) #8 /home/mag3rve/dev.magazine3rve.cc/wp-content/plugins/td-standard-pack/Newspaper/header.php(11): wp_head() #9 /home/mag3rve/dev.magazine3rve.cc/wp-content/plugins/td-composer/td-composer.php(259): require_once(‘/home/mag3rve/d…’) #10 /home/mag3rve/dev.magazine3rve.cc/wp-includes/class-wp-hook.php(324): {closure}(”) #11 /home/mag3rve/dev.magazine3rve.cc/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(”, Array) #12 /home/mag3rve/dev.magazine3rve.cc/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #13 /home/mag3rve/dev.magazine3rve.cc/wp-content/themes/Newspaper/header.php(2): do_action(‘tdc_header’) #14 /home/mag3rve/dev.magazine3rve.cc/wp-includes/template.php(790): require_once(‘/home/mag3rve/d…’) #15 /home/mag3rve/dev.magazine3rve.cc/wp-includes/template.php(725): load_template(‘/home/mag3rve/d…’, true, Array) #16 /home/mag3rve/dev.magazine3rve.cc/wp-includes/general-template.php(48): locate_template(Array, true, true, Array) #17 /home/mag3rve/dev.magazine3rve.cc/wp-content/plugins/td-standard-pack/Newspaper/page.php(7): get_header() #18 /home/mag3rve/dev.magazine3rve.cc/wp-includes/template-loader.php(106): include(‘/home/mag3rve/d…’) #19 /home/mag3rve/dev.magazine3rve.cc/wp-blog-header.php(19): require_once(‘/home/mag3rve/d…’) #20 /home/mag3rve/dev.magazine3rve.cc/index.php(17): require(‘/home/mag3rve/d…’) #21 {main} thrown in /home/mag3rve/dev.magazine3rve.cc/wp-includes/template.php on line 790

Thank you very much !

mckeec1
tagDiv Member

Update: Installed version 12 into a staging copy of the site, it replaced version 8. Site is giving a blank home page with:

PHP Notice: Undefined index: post in /nas/content/live/[redacted]/wp-content/themes/Newspaper-child/functions.php on line 924, referer: https://[redacted]/

If I could get a copy of Version 8.7.2, that would potentially fix the security hole without requiring new work on this site. Thank you!

  • This reply was modified 2 years by mckeec1.
FreshySites
tagDiv Member

Hi Bettina,

Can you look a little deeper into this?

1. Yes I understand the child theme is not overwritten, I’m asking for guidance about why we would get a critical error from this line of code in it’s header.php – perhaps related to #2? It is related to general issue of the update breaking the site, child theme or not.

This is the code:

/*
* loads the header template set in Theme Panel -> Header area
* the template files are located in ../parts/header
*/
td_api_header_style::_helper_show_header();

This is the error:

PHP Fatal error: Uncaught Error: Class “td_util” not found in /srv/htdocs/wp-content/themes/Newspaper/includes/wp-booster/wp-admin/tagdiv-view-header.php:19 Stack trace: #0 /srv/htdocs/wp-content/themes/Newspaper/includes/wp-booster/wp-admin/tagdiv-view-theme-plugins.php(59): require_once() #1 /srv/htdocs/wp-content/themes/Newspaper/includes/wp-booster/tagdiv-wp-booster-functions.php(499): require_once(‘/srv/htdocs/wp-…’) #2 /wordpress/core/6.3.1/wp-includes/class-wp-hook.php(310): {closure}(”) #3 /wordpress/core/6.3.1/wp-includes/class-wp-hook.php(334): WP_Hook->apply_filters(”, Array) #4 /wordpress/core/6.3.1/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #5 /wordpress/core/6.3.1/wp-admin/admin.php(259): do_action(‘newspaper_page_…’) #6 {main} thrown in /srv/htdocs/wp-content/themes/Newspaper/includes/wp-booster/wp-admin/tagdiv-view-header.php on line 19

#2. We have all dependent plugins. Below is what the shortcodes look like that are appaering everywhere – they look related to the composer, which we have installed & activated, and the new version from the theme update. My theory is that because we are making such a jump in theme versions, we’re missing one of the intermediate updates that performed some sort of action that converted them in td composer during a previous update. Can you please ask your dev team?

[td_block_9 custom_title=”Breaking News” custom_url=”/category/breaking-news/” category_id=”24″ limit=”10″ el_class=”breaking-news-block” header_color=”#d90000″]

fabinhoalmeida
tagDiv Member

Dear Calin,

First of all, I would like to thank you for your continued kindness and attention to us Newspaper users.

Yes, when I used the standard post style I did it like this through the child theme. When we migrated to the cloud template, we tried to call the excerpt by creating shortcode in functions.php, linking this shortcode to a raw box element or text box element by the tagDiv Composer in the single template. But that didn’t work for us. If you have any tips to make this work through some adjustment, it would be a welcome solution and will help us a lot. In any case, I ask that Newspeper be able to add an excerpt element in the future. It will be a gift for us!

Thank you very much

agiannaros
tagDiv Member

Ok Bettina I will be on hold for a fix on this 🙂

Until the time comes when the fix is introduced with a next theme’s update, I would really appreciate a custom php function to place in the child theme’s functions.php file to sort this out. If the development team could make one I would really appreciate it.

Thank you for your co-operation.

Calin
tagDiv Staff

Hi Amit,
Yes, right now the admin and editor can edit the cloud templates.
What it can be used in this situation is a function that will display the cloud templates only if the logged user is an admin.
Here is the code – https://pastebin.com/P3aWUA7M and it can be set in a child theme in functions.php
I hope this will help you!

ArcanaPost
tagDiv Member

Hello @Bettina. While waiting for an update so that an option to choose how long bookmarks last, do you know where the cookie is being set?

I could not locate ‘tdb_favourites’ in the ‘functions.php‘. I do not mind using a child theme or making a temporary update to the function file.

Thank you, Eric

vakvas@gmail.com
tagDiv Member

Hello,

your guide https://generatepress.com/forums/topic/how-to-change-the-login-link-in-the-comments/

doesn´t wort at all. I create child theme and put code to functions.php, seems to template use another function or another way hard coded url.

Please, do you have some guide, tu change this link?

Thanks a lot
Vaclav

P.S. no need to solve translation, I just fount, that after activation opt-in plugin, some phrases was ad, to translation section 🙂

Calin
tagDiv Staff

Hi,
I think that it can be use a hook in functions.php for example – https://wordpress.org/support/topic/set-default-image-alignment/
You can set the code in a child theme in functions.phphttps://forum.tagdiv.com/the-child-theme-support-tutorial/
Thank you!

Anamaria
tagDiv Staff

Hello,

Did you use a child theme? Did you make some changes in the code or do added a custom code in functions.php? Also, please check the section from Theme Panel -> Analytics/ Js code -> https://i.imgur.com/VZ8NSLM.png

Thank you!

Calin
tagDiv Staff

Hi,
You can do this using an extra code in a child theme, the cod needs to be set in functions.phphttps://i.imgur.com/e808cIh.png all the necessary details can be obtained from this article – https://wpadminify.com/kb/how-to-remove-wordpress-rss-feed-urls-from-page-header/
Thank you!

Calin
tagDiv Staff

Hello,
You can use our theme element for Table of contents, the “single post table of contents” – https://i.imgur.com/2m15oQV.png
or in case you still want to use that plugin, please set this code in functions.php file in child theme.
Thank you!

latintrade
tagDiv Member

Hi,

Thanks for helping with this 🙂

So I have rolled the Molongui plugin back to a previous version but now the errors are reporting issues with TD composer and various other plugins.
Here is a sampling of the latest errors:

2023/03/13 20:10:33 [error] 34916#34916: *945829 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″, client: 191.96.71.188, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, host: “latintrade.com:57332”

2023/03/13 20:10:08 [error] 34916#34916: *945792 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″, client: 191.96.71.188, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, host: “latintrade.com:57332”

2023/03/13 20:09:42 [error] 34916#34916: *945737 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″, client: 191.96.71.188, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, host: “latintrade.com:57332”

2023/03/13 20:09:11 [error] 34916#34916: *945683 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″ while reading response header from upstream, client: 191.96.71.188, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 20:06:12 [error] 34916#34916: *945389 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “url” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/web/viewer-shortcode.php on line 76PHP message: PHP Warning: Undefined array key “url” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/web/viewer-shortcode.php on line 77PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/web/viewer-shortcode.php on line 80PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/web/viewer-shortcode.php on line 81PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/web/viewer-shortcode.php on line 82PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 704PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 705PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 706″ while reading response header from upstream, client: 52.167.144.78, server: latintrade.com, request: “GET /themencode-pdf-viewer-sc/?lang=es&tnc_pvfw=ZmlsZT1odHRwczovL2xhdGludHJhZGUuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIxLzAyL0xULU1lZGlhLUtpdC0yMDIxLUVORy5wZGYmc2V0dGluZ3M9MTExMTExMTExMTExMTExMTEzMiZsYW5nPWVuLVVT HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 19:56:17 [error] 34916#34916: *944533 FastCGI sent in stderr: “PHP message: PHP Fatal error: Uncaught TypeError: Cannot access offset of type string on string in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/pvfw-new-shortcodes.php:34
Stack trace:
#0 /www/latintradeclone_588/public/wp-includes/shortcodes.php(355): tnc_pvfw_embed_shortcode(Array, ”, ‘pvfw-embed’)
#1 [internal function]: do_shortcode_tag(Array)
#2 /www/latintradeclone_588/public/wp-includes/shortcodes.php(227): preg_replace_callback(‘/\\[(\\[?)(pvfw\\-…’, ‘do_shortcode_ta…’, ‘\n[pvfw-embed vi…’)
#3 /www/latintradeclone_588/public/wp-includes/class-wp-hook.php(308): do_shortcode(‘\n[pvfw-embed vi…’)
#4 /www/latintradeclone_588/public/wp-includes/plugin.php(205): WP_Hook->apply_filters(‘\n[pvfw-embed vi…’, Array)
#5 /www/latintradeclone_588/public/wp-content/plugins/td-cloud-library/state/single/tdb_state_single.php(514): apply_filters(‘the_content’, ‘<!– wp:csf-gut…’)
#6 /www/latintradeclone_588/public/wp-content/plugins/td-cloud-library/shor” while reading response header from upstream, client: 77.247.113.132, server: latintrade.com, request: “GET /2022/03/15/latin-trade-magazine-march-2022/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 19:00:53 [error] 34916#34916: *940065 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 66.249.64.191, server: latintrade.com, request: “GET /pdfviewer/english-world-bank-report/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2022/10/04/new-approaches-to-closing-the-fiscal-gap-growth-forecast-for-latin-america-and-the-caribbean-economic-review/&#8221;

2023/03/13 18:57:28 [error] 34916#34916: *939734 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″, client: 66.249.64.180, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, host: “latintrade.com:57332”

2023/03/13 18:45:32 [error] 34916#34916: *938741 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″ while reading response header from upstream, client: 66.249.64.180, server: latintrade.com, request: “GET /rankings-e-indices/?lang=es HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 18:40:36 [error] 34916#34916: *938318 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 66.249.64.180, server: latintrade.com, request: “GET /pdfviewer/wtca-prime-office-index-december-2022/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2022/11/29/wtca-prime-office-index-latam-december-2022/&#8221;

2023/03/13 18:26:14 [error] 34916#34916: *937045 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 52.167.144.152, server: latintrade.com, request: “GET /es/brasil-un-socio-natural-de-los-estados-unidos/?cat=88 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 18:19:55 [error] 34916#34916: *936324 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined variable $s_current_view in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/tnc_shortcodes.php on line 274” while reading response header from upstream, client: 159.69.14.129, server: latintrade.com, request: “GET /author/mjlanza/feed/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 18:16:05 [error] 34916#34916: *935996 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″ while reading response header from upstream, client: 70.39.246.37, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 17:55:31 [error] 34916#34916: *934369 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″, client: 2804:14c:31:834c:84c3:8899:2793:1814, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/rankings-and-indexes/&#8221;

2023/03/13 17:55:01 [error] 34916#34916: *934321 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″, client: 2804:14c:31:834c:84c3:8899:2793:1814, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, host: “latintrade.com:57332”, referrer: “https://www.google.com/&#8221;

2023/03/13 17:47:47 [error] 34916#34916: *933673 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″, client: 139.59.124.144, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, host: “latintrade.com:57332”

2023/03/13 17:21:02 [error] 34916#34916: *931530 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 3.223.4.145, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-march-2021/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2021/03/03/latin-trade-magazine-march-2021/&#8221;

2023/03/13 17:11:47 [error] 34916#34916: *930747 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″ while reading response header from upstream, client: 66.249.64.182, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 15:59:27 [error] 34916#34916: *924676 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″ while reading response header from upstream, client: 5.161.82.159, server: latintrade.com, request: “GET /rankings-e-indices/?lang=es HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 15:53:35 [error] 34916#34916: *924289 access forbidden by rule, client: 151.80.36.224, server: latintrade.com, request: “GET /.git/HEAD HTTP/1.1”, host: “latintrade.com:57332”
2023/03/13 15:36:18 [error] 34916#34916: *922910 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-february-2023/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 15:31:50 [error] 34916#34916: *922549 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key 2 in /www/latintradeclone_588/public/wp-content/plugins/woocommerce-memberships/src/class-wc-memberships-capabilities.php on line 92” while reading response header from upstream, client: 94.130.239.132, server: latintrade.com, request: “GET /tag/podcasts/feed/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”
2023/03/13 15:17:45 [error] 34916#34916: *921348 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 181.51.42.231, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-february-2023/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2023/03/03/lt-magazine-february-2023/&#8221;

2023/03/13 15:17:44 [error] 34916#34916: *921338 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “auto_viewer” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/helper-functions.php on line 399PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 3028PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/woocommerce-multilingual/inc/class-wcml-store-pages.php on line 325″ while reading response header from upstream, client: 181.51.42.231, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-february-2023/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2023/03/03/lt-magazine-february-2023/&#8221;

2023/03/13 15:16:24 [error] 34916#34916: *921239 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 2804:14c:2b:9431:592f:aba6:e9bb:3899, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-february-2023/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2023/03/03/lt-magazine-february-2023/&#8221;

2023/03/13 15:16:23 [error] 34916#34916: *921238 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “auto_viewer” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/helper-functions.php on line 399PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 3028PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/woocommerce-multilingual/inc/class-wcml-store-pages.php on line 325″, client: 2804:14c:2b:9431:592f:aba6:e9bb:3899, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-february-2023/ HTTP/1.1”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2023/03/03/lt-magazine-february-2023/&#8221;

2023/03/13 15:15:22 [error] 34916#34916: *921121 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 35.173.49.46, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-february-2023/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2023/03/03/lt-magazine-february-2023/&#8221;

2023/03/13 15:15:22 [error] 34916#34916: *921120 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “auto_viewer” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/helper-functions.php on line 399PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 3028PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/woocommerce-multilingual/inc/class-wcml-store-pages.php on line 325″, client: 35.173.49.46, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-february-2023/ HTTP/1.1”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2023/03/03/lt-magazine-february-2023/&#8221;

2023/03/13 15:15:19 [error] 34920#34920: *921063 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 2804:14c:2b:9431:592f:aba6:e9bb:3899, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-february-2023/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2023/03/03/lt-magazine-february-2023/&#8221;

2023/03/13 15:15:18 [error] 34916#34916: *921061 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “auto_viewer” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/helper-functions.php on line 399PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 3028PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/woocommerce-multilingual/inc/class-wcml-store-pages.php on line 325″ while reading response header from upstream, client: 2804:14c:2b:9431:592f:aba6:e9bb:3899, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-february-2023/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2023/03/03/lt-magazine-february-2023/&#8221;

2023/03/13 15:10:40 [error] 34916#34916: *920693 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “parent” on null in /www/latintradeclone_588/public/wp-content/plugins/wordpress-seo/src/builders/indexable-hierarchy-builder.php on line 328PHP message: PHP Warning: Attempt to read property “term_id” on null in /www/latintradeclone_588/public/wp-content/plugins/wordpress-seo/src/builders/indexable-hierarchy-builder.php on line 222″ while reading response header from upstream, client: 51.222.253.10, server: latintrade.com, request: “GET /tag/statistics-es/?lang=es HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”
2023/03/13 15:03:18 [error] 34916#34916: *920073 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″ while reading response header from upstream, client: 114.119.140.27, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 15:03:11 [error] 34916#34916: *920056 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 66.249.64.191, server: latintrade.com, request: “GET /pdfviewer/english-world-bank-report/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2022/10/04/new-approaches-to-closing-the-fiscal-gap-growth-forecast-for-latin-america-and-the-caribbean-economic-review/&#8221;
2023/03/13 15:00:45 [error] 34916#34916: *919792 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined variable $s_current_view in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/tnc_shortcodes.php on line 274” while reading response header from upstream, client: 107.20.93.156, server: latintrade.com, request: “GET /author/mjlanza/feed/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://www.google.com/&#8221;
2023/03/13 14:54:53 [error] 34916#34916: *919098 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2006/10/16/mcmillan-panama-canal-expansion-healthy-for-global-trade/?cat=123&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 14:46:10 [error] 34916#34916: *918371 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 66.249.64.180, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-january-2017/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2017/01/03/latin-trade-magazine-january-2017/&#8221;

2023/03/13 14:45:53 [error] 34916#34916: *918351 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 207.46.13.209, server: latintrade.com, request: “GET /es/ecuador-two-cases-same-system/?cat=118 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 14:44:17 [error] 34916#34916: *918210 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 66.249.64.186, server: latintrade.com, request: “GET /pdfviewer/wtca-prime-office-index-december-2022/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2022/11/29/wtca-prime-office-index-latam-december-2022/&#8221;

2023/03/13 14:26:23 [error] 34916#34916: *916429 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 17.22.237.83, server: latintrade.com, request: “GET /pdfviewer/english-world-bank-report/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2022/10/04/new-approaches-to-closing-the-fiscal-gap-growth-forecast-for-latin-america-and-the-caribbean-economic-review/&#8221;

2023/03/13 14:15:48 [error] 34916#34916: *915444 FastCGI sent in stderr: “PHP message: PHP Fatal error: Uncaught TypeError: Cannot access offset of type string on string in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/pvfw-new-shortcodes.php:34
Stack trace:
#0 /www/latintradeclone_588/public/wp-includes/shortcodes.php(355): tnc_pvfw_embed_shortcode(Array, ”, ‘pvfw-embed’)
#1 [internal function]: do_shortcode_tag(Array)
#2 /www/latintradeclone_588/public/wp-includes/shortcodes.php(227): preg_replace_callback(‘/\\[(\\[?)(pvfw\\-…’, ‘do_shortcode_ta…’, ‘\n[pvfw-embed vi…’)
#3 /www/latintradeclone_588/public/wp-includes/class-wp-hook.php(308): do_shortcode(‘\n[pvfw-embed vi…’)
#4 /www/latintradeclone_588/public/wp-includes/plugin.php(205): WP_Hook->apply_filters(‘\n[pvfw-embed vi…’, Array)
#5 /www/latintradeclone_588/public/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php(1857): apply_filters(‘the_content’, ‘<!– wp:csf-gut…’)
#6 /www/latintradeclone_588/public/wp-includes/rest-api/endpoints/class-wp-res” while reading response header from upstream, client: 64.124.8.38, server: latintrade.com, request: “GET /wp-json/wp/v2/posts/119480 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 14:08:48 [error] 34916#34916: *914592 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2013/10/24/as-argentines-head-to-the-polls-dont-expect-change/?cat=112&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:50:03 [error] 34916#34916: *912475 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″ while reading response header from upstream, client: 181.224.250.149, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:23:11 [error] 34916#34916: *909483 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2016/01/22/5-powerful-ideas-for-global-impact-from-social-entrepreneurs-part-4/?cat=124&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:23:07 [error] 34916#34916: *909480 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2016/01/20/five-powerful-ideas-for-global-impact-from-social-entrepreneurs/?cat=104&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”
2023/03/13 13:22:56 [error] 34916#34916: *909445 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2014/08/19/top-50-ports-a-poor-year-for-the-caribbean-basin-and-transshipment-activity/?cat=86&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:21:16 [error] 34916#34916: *909290 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2007/07/16/latin-american-tourism-2006receipts-by-country/?cat=125&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:20:14 [error] 34916#34916: *909154 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2015/12/03/car-sales-brazil-sputters-mexico-revs-up/?cat=110&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:19:01 [error] 34916#34916: *908987 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2009/12/29/latin-technology-outlook-recovery-growth/?cat=124&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:18:53 [error] 34916#34916: *909010 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2009/03/27/latin-america-disputes-qa/?cat=118&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:18:50 [error] 34916#34916: *908997 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2009/01/21/latin-mas-top25-financial-advisors-2008/?cat=112&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:18:47 [error] 34916#34916: *909026 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2008/10/15/alicorp-eyes-latin-expansion/?cat=116&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:18:42 [error] 34916#34916: *909010 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2008/03/24/spirit-carves-out-latin-niche/?cat=111&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:18:33 [error] 34916#34916: *908997 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2008/01/25/bullish-on-brazil/?cat=112&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 13:08:26 [error] 34916#34916: *908067 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 95.163.255.237, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-november-2021/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/pdfviewer/lt-magazine-november-2021/&#8221;

2023/03/13 13:08:24 [error] 34916#34916: *908061 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “auto_viewer” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/helper-functions.php on line 399PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 3028PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/woocommerce-multilingual/inc/class-wcml-store-pages.php on line 325″ while reading response header from upstream, client: 95.163.255.226, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-november-2021/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/3d-flip-book/lt-magazine-november-2021/&#8221;

2023/03/13 12:58:18 [error] 34916#34916: *907186 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined variable $s_current_view in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/tnc_shortcodes.php on line 274” while reading response header from upstream, client: 159.69.14.129, server: latintrade.com, request: “GET /author/mjlanza/feed/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:52:18 [error] 34920#34920: *906718 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “url” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/web/viewer-shortcode.php on line 76PHP message: PHP Warning: Undefined array key “url” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/web/viewer-shortcode.php on line 77PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/web/viewer-shortcode.php on line 80PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/web/viewer-shortcode.php on line 81PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/web/viewer-shortcode.php on line 82PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 704PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 705PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 706″ while reading response header from upstream, client: 66.249.64.191, server: latintrade.com, request: “GET /themencode-pdf-viewer-sc/?tnc_pvfw=ZmlsZT1odHRwczovL2xhdGludHJhZGUuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA2L1dUQ0EtUHJpbWUtT2ZmaWNlLUluZGV4LTIwMjItTEFUQU0tRVNQLnBkZiZzZXR0aW5ncz0wMDExMDAxMTEwMTAxMTExMDAmbGFuZz1lcy1jbA== HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2022/06/15/wtca-prime-office-index-latam-junio-de-2022/?lang=es&#8221;

2023/03/13 12:52:07 [error] 34916#34916: *906704 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined variable $s_current_view in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/tnc_shortcodes.php on line 274” while reading response header from upstream, client: 66.249.64.160, server: latintrade.com, request: “GET /2022/06/15/wtca-prime-office-index-latam-junio-de-2022/?lang=es HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:36:49 [error] 34916#34916: *905479 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2018/04/10/multinational-index-full-year-2017/?cat=22&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:36:34 [error] 34916#34916: *905461 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2016/01/11/argentina-and-cuba-labor-union-havens/?cat=86&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:36:16 [error] 34916#34916: *905427 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2014/08/29/top-businesswomen-2014/?cat=109&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:36:09 [error] 34916#34916: *905418 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2014/03/10/latin-america-instability-at-home-and-abroad/?cat=86&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:35:49 [error] 34916#34916: *905375 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2013/10/23/mexican-pensions-the-stars-of-top-100-pension-funds/?cat=91&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:35:25 [error] 34916#34916: *905310 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2012/02/10/louis-de-segonzac-jlt-re/?cat=159&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:35:04 [error] 34916#34916: *905271 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2010/12/07/how-petrobras-compares/?cat=115&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:34:29 [error] 34916#34916: *905224 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2008/12/30/passenger-growth-cargo-decline/?cat=111&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:34:24 [error] 34916#34916: *905211 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2008/03/18/venezuelashummer-revolution/?cat=110&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:34:18 [error] 34916#34916: *905199 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2007/08/30/uruguay-botnia-terminal-opens/?cat=123&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:34:12 [error] 34916#34916: *905103 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2007/04/02/ups-grows-in-latin-america/?cat=111&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 12:06:44 [error] 34916#34916: *903064 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″, client: 191.96.71.188, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, host: “latintrade.com:57332”

2023/03/13 12:06:23 [error] 34916#34916: *903039 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″ while reading response header from upstream, client: 191.96.71.188, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:57:13 [error] 34916#34916: *902386 directory index of “/www/latintradeclone_588/public/wp-content/uploads/wpmc-trash/2015/03/” is forbidden, client: 114.119.141.4, server: latintrade.com, request: “GET /wp-content/uploads/wpmc-trash/2015/03/?C=D%3BO%3DA HTTP/1.1”, host: “www.latintrade.com:57332”, referrer: “https://www.latintrade.com/wp-content/uploads/wpmc-trash/2015/03?C=S%3BO%3DA&#8221;
2023/03/13 11:45:51 [error] 34916#34916: *901670 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476″ while reading response header from upstream, client: 66.249.64.184, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-august-2022/?auto_viewer=true HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”, referrer: “https://latintrade.com/2022/08/02/latin-trade-magazine-august-2022/&#8221;

2023/03/13 11:37:38 [error] 34916#34916: *901062 directory index of “/www/latintradeclone_588/public/wp-content/uploads/2019/11/” is forbidden, client: 114.119.149.254, server: latintrade.com, request: “GET /wp-content/uploads/2019/11/?C=D%3BO%3DA HTTP/1.1”, host: “www.latintrade.com:57332”, referrer: “https://www.latintrade.com/wp-content/uploads/2019/11?C=M%3BO%3DA&#8221;
2023/03/13 11:15:56 [error] 34916#34916: *899345 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2016/08/22/u-s-watchdog-clears-chemchinas-43-billion-acquisition-of-syngenta/?cat=133&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:15:51 [error] 34916#34916: *899319 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2014/06/27/changes-in-the-role-of-the-cfo-the-view-from-mexico/?cat=116&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:15:02 [error] 34916#34916: *899240 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2018/06/03/chile-y-brasil-en-la-mira-de-yellowpepper-visa/?cat=88&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:14:48 [error] 34916#34916: *899237 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2017/07/23/latin-trades-top-100-billionaires-ranking-2017/?cat=86&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:14:22 [error] 34916#34916: *899172 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2014/12/08/moving-ahead-with-electric-grid-integration/?cat=88&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:14:19 [error] 34916#34916: *899172 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2014/08/25/a-new-environment-for-banks/?cat=112&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:14:17 [error] 34916#34916: *899178 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2014/04/21/amid-regional-declines-mexican-cfos-remain-optimistic/?cat=86&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:14:14 [error] 34916#34916: *899175 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2013/11/08/latin-americas-rising-stars-of-legal/?cat=86&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:14:11 [error] 34916#34916: *899172 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2013/10/14/google-develops-contest-for-latin-americas-developers/?cat=86&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:14:08 [error] 34920#34920: *899157 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2013/10/07/freeconferencecall-com-begins-service-in-latin-america/?cat=86&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:13:38 [error] 34916#34916: *899090 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2011/10/17/latin-american-literacy-best-worst/?cat=59&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:13:30 [error] 34916#34916: *899074 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2010/12/03/peru-retail-boom/?cat=121&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:13:23 [error] 34916#34916: *899068 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2010/11/22/mexico-gains-from-costlier-china/?cat=136&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:12:52 [error] 34920#34920: *899011 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2009/04/17/medical-tourism-good-prospects/?cat=125&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:12:46 [error] 34916#34916: *898994 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2008/08/10/venezuela-banking-outlook/?cat=112&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:12:38 [error] 34916#34916: *898978 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2008/04/15/pemex-chevron-nicaragua/?cat=115&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:12:32 [error] 34916#34916: *898963 directory index of “/www/latintradeclone_588/public/wp-content/uploads/2015/” is forbidden, client: 114.119.139.84, server: latintrade.com, request: “GET /wp-content/uploads/2015/?C=M%3BO%3DA HTTP/1.1”, host: “www.latintrade.com:57332”, referrer: “https://www.latintrade.com/wp-content/uploads/2015&#8221;

2023/03/13 11:12:30 [error] 34916#34916: *898958 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2007/02/05/oracle-strong-latin-growth/?cat=124&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:12:25 [error] 34916#34916: *898947 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2006/08/09/chinas-latin-american-perspective/?cat=136&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 11:10:22 [error] 34920#34920: *898743 FastCGI sent in stderr: “PHP message: PHP Fatal error: Uncaught TypeError: Cannot access offset of type string on string in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/pvfw-new-shortcodes.php:34
Stack trace:
#0 /www/latintradeclone_588/public/wp-includes/shortcodes.php(355): tnc_pvfw_embed_shortcode(Array, ”, ‘pvfw-embed’)
#1 [internal function]: do_shortcode_tag(Array)
#2 /www/latintradeclone_588/public/wp-includes/shortcodes.php(227): preg_replace_callback(‘/\\[(\\[?)(pvfw\\-…’, ‘do_shortcode_ta…’, ‘\n[pvfw-embed vi…’)
#3 /www/latintradeclone_588/public/wp-includes/class-wp-hook.php(308): do_shortcode(‘\n[pvfw-embed vi…’)
#4 /www/latintradeclone_588/public/wp-includes/plugin.php(205): WP_Hook->apply_filters(‘\n[pvfw-embed vi…’, Array)
#5 /www/latintradeclone_588/public/wp-includes/feed.php(194): apply_filters(‘the_content’, ‘<!– wp:csf-gut…’)
#6 /www/latintradeclone_588/public/wp-includes/feed-rss2.php(104): get_the_content_feed(‘rss2’)
#7 /www/latintradeclone_588/” while reading response header from upstream, client: 70.39.246.37, server: latintrade.com, request: “GET /category/magazine/feed/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 10:52:19 [error] 34916#34916: *897296 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113PHP message: PHP Warning: Undefined array key “height” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 112PHP message: PHP Warning: Undefined array key “width” in /www/latintradeclone_588/public/wp-content/plugins/td-composer/includes/tdc_util.php on line 113″ while reading response header from upstream, client: 172.121.209.187, server: latintrade.com, request: “GET /rankings-and-indexes/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “mail.latintrade.com:57332”

2023/03/13 10:51:24 [error] 34916#34916: *897253 directory index of “/www/latintradeclone_588/public/wp-admin/css/” is forbidden, client: 20.98.201.86, server: latintrade.com, request: “GET /wp-admin/css/ HTTP/1.1”, host: “latintrade.com:57332”, referrer: “binance.com”
2023/03/13 10:50:13 [error] 34916#34916: *897156 FastCGI sent in stderr: “PHP message: PHP Fatal error: Uncaught TypeError: Cannot access offset of type string on string in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/pvfw-new-shortcodes.php:34
Stack trace:
#0 /www/latintradeclone_588/public/wp-includes/shortcodes.php(355): tnc_pvfw_embed_shortcode(Array, ”, ‘pvfw-embed’)
#1 [internal function]: do_shortcode_tag(Array)
#2 /www/latintradeclone_588/public/wp-includes/shortcodes.php(227): preg_replace_callback(‘/\\[(\\[?)(pvfw\\-…’, ‘do_shortcode_ta…’, ‘\n[pvfw-embed vi…’)
#3 /www/latintradeclone_588/public/wp-includes/class-wp-hook.php(308): do_shortcode(‘\n[pvfw-embed vi…’)
#4 /www/latintradeclone_588/public/wp-includes/plugin.php(205): WP_Hook->apply_filters(‘\n[pvfw-embed vi…’, Array)
#5 /www/latintradeclone_588/public/wp-content/plugins/td-cloud-library/state/single/tdb_state_single.php(514): apply_filters(‘the_content’, ‘<!– wp:csf-gut…’)
#6 /www/latintradeclone_588/public/wp-content/plugins/td-cloud-library/shor” while reading response header from upstream, client: 104.165.105.198, server: latintrade.com, request: “GET /2022/03/15/latin-trade-magazine-march-2022/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 10:49:49 [error] 34916#34916: *897101 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “auto_viewer” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/helper-functions.php on line 399PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 3028PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/woocommerce-multilingual/inc/class-wcml-store-pages.php on line 325″ while reading response header from upstream, client: 104.165.105.198, server: latintrade.com, request: “GET /pdfviewer/lt-magazine-april-2019/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 10:49:38 [error] 34916#34916: *897069 FastCGI sent in stderr: “PHP message: PHP Fatal error: Uncaught Error: Call to undefined function get_field() in /www/latintradeclone_588/public/wp-content/themes/Newspaper-child/loop-single.php:37
Stack trace:
#0 /www/latintradeclone_588/public/wp-includes/template.php(785): require()
#1 /www/latintradeclone_588/public/wp-includes/template.php(718): load_template(‘/www/latintrade…’, false, Array)
#2 /www/latintradeclone_588/public/wp-includes/general-template.php(204): locate_template(Array, true, false, Array)
#3 /www/latintradeclone_588/public/wp-content/themes/Newspaper/single.php(20): get_template_part(‘loop-single’)
#4 /www/latintradeclone_588/public/wp-includes/template-loader.php(106): include(‘/www/latintrade…’)
#5 /www/latintradeclone_588/public/wp-blog-header.php(19): require_once(‘/www/latintrade…’)
#6 /www/latintradeclone_588/public/index.php(17): require(‘/www/latintrade…’)
#7 {main}
thrown in /www/latintradeclone_588/public/wp-content/themes/Newspaper-child/loop-single.php on line 37” while reading response header from upstream, client: 104.165.105.198, server: latintrade.com, request: “GET /timeline/latin-trade-week-2020/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 10:49:08 [error] 34916#34916: *897019 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined array key “auto_viewer” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/helper-functions.php on line 399PHP message: PHP Warning: Undefined array key “primary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 474PHP message: PHP Warning: Undefined array key “secondary-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 475PHP message: PHP Warning: Undefined array key “text-color” in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/scripts.php on line 476PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 3028PHP message: PHP Warning: foreach() argument must be of type array|object, null given in /www/latintradeclone_588/public/wp-content/plugins/woocommerce-multilingual/inc/class-wcml-store-pages.php on line 325″ while reading response header from upstream, client: 104.165.105.198, server: latintrade.com, request: “GET /pdfviewer/wtca-prime-office-index-december-2022/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 10:48:13 [error] 34916#34916: *896884 FastCGI sent in stderr: “PHP message: PHP Warning: Undefined variable $s_current_view in /www/latintradeclone_588/public/wp-content/plugins/pdf-viewer-for-wordpress/includes/tnc_shortcodes.php on line 274” while reading response header from upstream, client: 104.165.105.198, server: latintrade.com, request: “GET /2022/06/15/wtca-prime-office-index-latam-june-2022/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”
2023/03/13 10:25:23 [error] 34916#34916: *895035 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 37.57.218.243, server: latintrade.com, request: “GET /latin-america%E2%80%99s-technology-leaders/?cat=185 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 10:22:23 [error] 34916#34916: *894726 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2016/01/25/5-powerful-ideas-for-global-impact-from-social-entrepreneurs/?cat=129&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

2023/03/13 10:22:03 [error] 34916#34916: *894650 FastCGI sent in stderr: “PHP message: PHP Warning: Attempt to read property “taxonomy” on null in /www/latintradeclone_588/public/wp-content/plugins/sitepress-multilingual-cms/classes/request-handling/redirection/wpml-redirect-by-param.class.php on line 159″ while reading response header from upstream, client: 216.244.66.195, server: latintrade.com, request: “GET /2013/07/17/picanha-and-farofa-coming-to-a-location-near-you/?cat=116&v=1d20b5ff1ee9 HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php8.0-fpm-latintradeclone.sock:”, host: “latintrade.com:57332”

Dallas

Anamaria
tagDiv Staff

Hello,

UPDATE:
Please use this code to change the link for a password reset; please make sure that you have the latest version 12.3 add_filter( 'td_login_password_reset_link', function($password_reset_link) {
return str_replace( 'wp-login.php', 'login_page_name', $password_reset_link );
});

Set the code in functions.php or in the child theme.

Thank you!

JackHeartBlog
tagDiv Member

All is good Bettina. With your help I have gotten this to go the way I desire. Final question, how can I put the link into the functions.php of the child theme so I don’t lose the changes upon update?

pavel_t
tagDiv Member

SOLUTION (for someone with the same problem): I use Newspaper Cloud Template for eshop with WooCommerce plugin. Finally I found plugin Product Attachment for WooCommerce in free version. Now I could for product attach PDF files for download. It appears in Product Tab element in TD editor. I needed to change a little bit design so I created child theme for Newspaper and modified CSS and functions.php. Works perfect.

Calin
tagDiv Staff

Adding multiple authors to your articles
Content
In this tutorial we will show you how to implement multiple authors to your posts using the Co-Authors Plus plugin.
We will make the implementation in the child theme so it will be easier to manage on theme updates. You will need to install and activate the Co-Authors Plus plugin first.

The following method only works for the default post templates and does not affect the tagDiv Cloud Library templates.
Adding the multiple authors is a three step process.

  • Step 1 – Adding the required functions in your child theme functions.php file.

We created 2 custom functions for the author and for the author box which we can then call on the post styles and not have to use the entire functions each time.
Add these functions in your Child theme functions.php file: https://pastebin.com/ciYrSZvQ These will create the custom implementation to add the co-author and the author box for each co-author in particular.

  • Step 2 – Adding the single post templates to your child theme.

In your main child theme folder, you will need to create the following folder structure:
Newspaper-child/parts/single
Then, under the “single” folder add both the single-template and the loop-single files for each of the post styles you use on your articles.
Multiple authors - Newspaper single post templates
Now you will have to identify where the author is being called in each post style.
For styles 1, 5, 9 and 10 you will find the author code in the loop-single files while for styles 2, 3, 4, 6, 7, 8, 11, 12 and 13 the code is fount under the single_template files.
Edit the files corresponding to the style you want to apply the co-authors to and then call the functions added at step 1. Replace the default author and author box codes:
Multiple authors - function.php
Replace the highlighted code with the following codes:

<?php echo td_get_post_coauthors();?>

and

<?php echo td_get_post_coauthors_box();?>

Maintain the codes position in the .php file though for proper results. \

  • Step 3 – CSS styling

In order for the co-authors to position properly we also need a bit of CSS code to ensure proper styling so please add the following CSS code in the the theme panel under custom code-> custom CSS:
https://pastebin.com/dRaStewQ
Now you simply need to edit your post and add multiple authors using the plugin author field:

Anamaria
tagDiv Staff

Hello,

I think that you have a child theme and you need to go in there to change them.
In the theme files is here td-composer/legacy/common/wp_booster/td_wp_booster_functions.php

Thank you!

ezioboy
tagDiv Member

베티나 답변 감사합니다

1.
https://ibb.co/fvrwYdH

On my screen the mobile still had no issues.
problem was not resolved

This plugin is not visible in the admin screen.
You can see it when you log in.

예금과적금의 차이 – https://duweek.com/%ec%98%88%ea%b8%88%ea%b3%bc-%ec%a0%81%ea%b8%88%ec%9d%98-%ec%a0%95%ec%9d%98%ec%99%80-%ec%b0%a8%ec%9d%b4%ec%97%90-%eb%8c%80%ed%95%b4%ec%84%9c-%ec%84%a4%eb%aa%85/

2.
Where can I find the 100 won variable?
I don’t know what this means. I think the translation is wrong.

https://ibb.co/WK3ph9f

① Create a product and set a price here
https://ibb.co/M5FG6Gk

② Write an article in the post and set [Premium Content].
https://ibb.co/M5FG6Gk


https://ibb.co/t3qVB0f

Then you will see a screen like the one above
When the administrator clicks this content, the lock screen does not appear
When a general (non-payer) member is not logged in, the lock screen appears as shown below.

3.
Is this a newspaper checkout page?
What is the WooCommerce Support Team?

4.
https://ibb.co/XtQj82Z

5.(addition)

https://ibb.co/Rcsdv9J
① Click here to pay
You will be directed to the checkout page.
The form with the name at the top does not look like the one below.

I applied CSS With 100% for this, but it doesn’t work.
This does not apply to both PC and mobile.

https://ibb.co/QdrW0ZB
② You will be directed to the checkout page.
The form with the name at the top does not look like the one below.

I applied CSS With 100% for this, but it doesn’t work.
This does not apply to both PC and mobile.

https://ibb.co/ct613Yy

I put the form editing code in [Appearance > File Editor > Newspaper Child theme: functions.php].

Everything else was applied, but only the form of the name was not applied.
So I tried adjusting the CSS, but it doesn’t work.

  • This reply was modified 3 years by ezioboy.
Viewing 25 results - 51 through 75 (of 638 total)