I also couldn’t access the cloud library and got the error message “Empty response received from server.” I used the time machine and installed 10.3.2 again and it works again. Please let me know when i can update it to the latest version without this issue.
Hi Vlad,
is there already a solution to this problem? I suddenly can’t edit my footer anymore.
I am getting a yellow notice: The Current Content Hasn’t Been Created By TagDiv Composer
and this error message:
Error at rows: 4(models) : 1(dom). The model does not match the content Current state has involved an issue. You could try an UNDO operation (CTRL+Z / CTRL+SHIFT+Z)
I noticed there is ‘vc_’ code as well.
When i create a new blank footer it already comes with this code:
[tdc_zone type=”tdc_footer”][vc_row][vc_column][/vc_column][/vc_row][/tdc_zone]
I did a clean install and WP Bakery’s Composer was never installed.
I hope i don’t have to rebuild my footer again…
Thanks for your help!
Hi Calin,
i never heard about a staging website. Great idea! Can’t hurt to have a copy of the site and test things before. Thanks a lot!
Hi Catalin,
thank you for pointing me to the other topic. I didn’t find it before.
Unfortunately it didn’t solve the problem.
Please check out my site and mouse-over the nav-bars in the header menu http://equapio.com/
It works on the homepage but not on any other page.
Check http://equapio.com/gesundheit/ for instance and mouse-over on the nav-bars again.
What am i missing?
I am not sure if this is a customization issue cause the page in the main menu just doesn’t display properly.
Hope you can help again.
Thanks!
Great Bogdan! Thanks a lot! Awesome support!
Thanks Bogdan! It seems to work altough i don’t see an ad yet…probably takes a bit.
What’s the code like if i need to display 2 ads? Lets say after the 2nd and 4th exerpt?
Do i need to repeat the if part?
if (is_tag() && ($adcounter == 2)) {
echo do_shortcode(‘[td_block_ad_box spot_id="custom_ad_1"]‘);
}
if (is_tag() && ($adcounter == 4)) {
echo do_shortcode(‘[td_block_ad_box spot_id="custom_ad_2"]‘);
}
Appreciate one last tip here.
Thank you!
Hi Bogdan,
thanks for your help. I figured that changing the condition should do it. Unfortunately it didn’t work on my end.
On the tag page it returns [td_ad_box spot_id=”custom_ad_6″] after the specified post exerpt.
Here is the code in the loop.php:
if (have_posts()) {
while ( have_posts() ) : the_post();
$adcounter++;
echo $td_template_layout->layout_open_element();
if (class_exists($td_module_class)) {
$td_mod = new $td_module_class($post);
echo $td_mod->render();
} else {
td_util::error(__FILE__, ‘Missing module: ‘ . $td_module_class);
}
echo $td_template_layout->layout_close_element();
$td_template_layout->layout_next();
if (is_tag() && ($adcounter == 2)) {
echo do_shortcode(‘[td_ad_box spot_id=”custom_ad_6″]’);
}
endwhile; //end loop
echo $td_template_layout->close_all_tags();
I just added custom ad 6 & 7 but tried it with custom ad 5 too. Also tried it with the Ad inserter plugin which didn’t work either. Their support told me to try it with a php function.
Can you find what’s wrong? Why doesn’t it work? Is there another way?
Really appreciate your help on this.
Hi there,
i tried to put ads in the loop of only tag pages as described above with the ad counter. I need to show an ad after post 2 and 4. It only returns this on the tag page after the 2nd post exerpt: [td_block_ad_box spot_id="custom_ad_5"].
Could you please advice how i can achieve that? Or where exactly i have to put the shortcode or a php function to get it working?
Thanks in advance!