Hello Catalin,
But I don’t understand because all fields are translated on my theme panel, (all is good) but not this Widget…
I will try after work because I have the same trouble
Hello,
Thank you for your help !
Its ok. Your colleague answered someone, I have the solution
:https://forum.tagdiv.com/topic/update-8-6/
Yes sorry. With my bad English I have some trouble for explain my trouble.
As you can see I try to translate the button “share” in my langage French for : “Partager”. I can modify it with the development mode, but I am a beginner so I don’t found the code for change “share” in “Partager” for everywhere and every time. As you know if I close my page, this modification is not saved because this is not the code. When I go in Theme Panel -> translation, I can’t found this new button “Share” for translate it.
I hope you understand now. I would like translate this. “Share” to “Partager”.
Because great theme and great support.
Congratulations.
Take the row and drag it right bottom of the page
It’s seem like a conflict with td multi purpose. Personnaly I have desactivated this plugin and WPBakery and all work fine. Because for example, if I use td multi, my theme mobile doesn’t work.
Hi.
I think my bad English is a trouble for explain my trouble.
You tell me : you will not be able to show shortcodes, but the trouble its : I change nothing and now my slider and some codes are on my theme mobile, and I don’t understand why; for exemple, even if I hide my slider I can see the slider without any pictures… td block shortcode is not hide anyway… I really do not understand that was not the case before.
Thanks
-
This reply was modified 8 years by
Stangerson.
hi.
Yep right, but I do not understand why that was work fine with visual composer and not good with TD Composer, so my only solutions are : stop using TD composer and go again with VC ? or desactivate this theme mobile ? (but i like it !)
Thanks for your time
Oops, I forget all time …. http://www.legnousauvage.com
Thanks for your time
Hi;
I have changed WP-config, but I Have one trouble with .hthacces or php.ini, I found some .hthacces, one on the root of WordPress and one on WP content, but I don’t found any classes :php_value max_input_vars
php_value max_execution_time
php_value post_max_size
php_value upload_max_filesize
And I can’t found any php.ini on my folders 🙁
I have an screenshot for told you what is my parameters. I hope that can help you because I can’t do it alone 🙁

-
This reply was modified 8 years by
Stangerson.
-
This reply was modified 8 years by
Stangerson.
I have the same trouble… I can use all of TagDiv Composer but I can’t use Title WITH TEXT…
Thanks
Thanks for this answer !
Ok. I update my Visual Composer but I have still my trouble.
I send to you and email.
Thanks.
Hello Simion.
I repost because I have tried all what you say. I replace the entire code on my big grid 5 PHP file and I have clear my caches… but I have the same problem.
Thanks in advance.
Hello @Bodgan B
I paste your code in my file (shortcode… td big gride 5) but nothing change 🙁 Error message is always here.
Can you help me ?
Thank you in advance.
-
This reply was modified 9 years by
Stangerson.
I don’t found the code
<?php
/**
*
* Class td_block_big_grid_1
*/
class td_block_big_grid_1 extends td_block {const POST_LIMIT = 5;
function render($atts, $content = null){
// for big grids, extract the td_grid_style
extract(shortcode_atts(
array(
‘td_grid_style’ => ‘td-grid-style-1’
), $atts));$atts[‘limit’] = self::POST_LIMIT;
parent::render($atts); // sets the live atts, $this->atts, $this->block_uid, $this->td_query (it runs the query)
$buffy = ”;
$buffy .= ‘<div class=”‘ . $this->get_block_classes(array($td_grid_style, ‘td-hover-1’)) . ‘” ‘ . $this->get_block_html_atts() . ‘>’;
//get the block css
$buffy .= $this->get_block_css();$buffy .= ‘<div id=’ . $this->block_uid . ‘ class=”td_block_inner”>’;
$buffy .= $this->inner($this->td_query->posts); //inner content of the block
$buffy .= ‘<div class=”clearfix”></div>’;
$buffy .= ‘</div>’;
$buffy .= ‘</div> <!– ./block –>’;
return $buffy;
}function inner($posts) {
$buffy = ”;
if (!empty($posts)) {
$buffy .= ‘<div class=”td-big-grid-wrapper”>’;
$post_count = 0;
// when 2 posts make post scroll full
$td_scroll_posts = ”;
if (count($posts) == 2) {
$td_scroll_posts = ‘ td-scroll-full’;
}foreach ($posts as $post) {
if ($post_count == 0) {
$td_module_mx5 = new td_module_mx5($post);
$buffy .= $td_module_mx5->render($post_count);$buffy .= ‘<div class=”td-big-grid-scroll’ . $td_scroll_posts . ‘”>’;
$post_count++;
continue;
}$td_module_mx6 = new td_module_mx6($post);
$buffy .= $td_module_mx6->render($post_count);$post_count++;
}if ($post_count < self::POST_LIMIT) {
for ($i = $post_count; $i < self::POST_LIMIT; $i++) {
$td_module_mx_empty = new td_module_mx_empty();
$buffy .= $td_module_mx_empty->render($i);
}
}
$buffy .= ‘</div>’; // close td-big-grid-scroll
$buffy .= ‘</div>’; // close td-big-grid-wrapper
}return $buffy;
}
}
The same for my BIG GRiDE 5
<?php
/**
*
* Class td_block_big_grid_5
*/
class td_block_big_grid_5 extends td_block {const POST_LIMIT = 3;
function render($atts, $content = null){
// for big grids, extract the td_grid_style
extract(shortcode_atts(
array(
‘td_grid_style’ => ‘td-grid-style-1’
), $atts));$atts[‘limit’] = self::POST_LIMIT;
parent::render($atts); // sets the live atts, $this->atts, $this->block_uid, $this->td_query (it runs the query)
$buffy = ”;
$buffy .= ‘<div class=”‘ . $this->get_block_classes(array($td_grid_style, ‘td-hover-1’)) . ‘” ‘ . $this->get_block_html_atts() . ‘>’;
//get the block css
$buffy .= $this->get_block_css();$buffy .= ‘<div id=’ . $this->block_uid . ‘ class=”td_block_inner”>’;
$buffy .= $this->inner($this->td_query->posts); //inner content of the block
$buffy .= ‘<div class=”clearfix”></div>’;
$buffy .= ‘</div>’;
$buffy .= ‘</div> <!– ./block –>’;
return $buffy;
}function inner($posts) {
$buffy = ”;
if (!empty($posts)) {
$buffy .= ‘<div class=”td-big-grid-wrapper”>’;
$post_count = 0;
foreach ($posts as $post) {
$td_module_mx12 = new td_module_mx12($post);
$buffy .= $td_module_mx12->render($post_count);$post_count++;
}if ($post_count < self::POST_LIMIT) {
for ($i = $post_count; $i < self::POST_LIMIT; $i++) {
$td_module_mx_empty = new td_module_mx_empty();
$buffy .= $td_module_mx_empty->render($i);
}
}$buffy .= ‘</div>’;
}return $buffy;
}
}
I don’t found what I have to remove…
-
This reply was modified 9 years by
Stangerson.
Hi.
I do not understand, when I disable the extensions or that I remove the custom css, it does not solve anything….. and I only update WordPress AND Newspaper…
And you think it is an external conflict that makes the wallpaper is still displayed despite the trick that worked before and no more now?
Thank you
Hello.
I deactivated all plugins but i have the same problem 🙁
And for the BG the same.
Thank you
Thanks a lot 🙂
Hello guys,
I updated my website 7.4 to 7.5 with Envoto plugin and it’s working ! I hope you will restore your website easily and soon !
Hello,
You are awesome ! Thank you 🙂
My website : http://www.legnousauvage.com