Hi,
Is not outdated, the solution works great, please read carefully the entire tread.
You have an old version? older then 3? Because we have changed the code a lot.
Something is wrong in your code.
Hi,
For revolution slider you need to create a slide firstly http://screencast.com/t/nzr3dIwjG then select the slider from Visual composer: http://screencast.com/t/aezOCxofUS
The solution above is for the loop, latest article: http://screencast.com/t/naTmufN1S
For block works only if you use the full layout in visual composer and use the Default template with sidebar that force the layout on 2 columns.
Hi,
Go to theme panel -> Excerpt and set from there on module 2 http://screencast.com/t/PxfodLMh
Hi,
To increase the title of pages and posts try from here: http://screencast.com/t/7cZTMEB3
Hi,
You can do that only with CSS
Add this CSS in Theme panel -> Custom CSS
.entry-title > a:hover {
color: #00BCB0;
}
Thanks!
Hi,
Can you give us your site URL to see the issue? Thanks!
Hi,
Do you want to have the full image when hover the mouse? That is custom and only if you achieve that with a plugin if exist.
Go to module_6 and uncomment this line if you want to show the author name: http://screencast.com/t/Zz3388CI
Hi,
Use this code: ' . get_permalink($this->post->ID) . '#disqus_thread like here: http://screencast.com/t/YH83km1uxZEY
Hi,
For Jetpack plugin activate this: http://screencast.com/t/v4J1SyNbl7lw then go to your widgets and you will have this for each Widget: http://screencast.com/t/f9NBInWd
Thanks!
Hi,
The solution is for paragraph or similar, I’m not sure that boxes are counted as paragraph.
What you can do if the solution not work for you is to manage the ads manually on each post, use this shortcode to add the AD anywhere in post:
[td_ad_box spot_id="custom_ad_1"] and use Custom AD 1 from Theme Panel
Thanks!
-
This reply was modified 12 years by
Marius.
Hi,
@atflaten the Unique article feature render the page from top to bottom and eliminate all duplicated posts. Does not matter post are in mega menu or in sidebar, or in footer.
You can use offset feature to achieve a similar results: https://www.youtube.com/watch?v=–jQZbzteU4
Thanks!
Hi,
Add this code echo td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'custom_ad_1')); like here: http://screencast.com/t/t1CDP5kDZ
And you can use the Custom AD 1 for that area.
Thanks!
Hi,
Great!, please let me know if works?
Thanks!
Hi,
You can sett an offset for each block i mean to start from x post number. https://www.youtube.com/watch?v=–jQZbzteU4
Thanks!
Hi,
Only via CSS, show us your case, to inspect it.
Thanks!
Hi,
Great! I’m glad that you have managed the issue.
Here is the mega menu doc: https://forum.tagdiv.com/how-to-use-the-megamenu/
Thanks for the message!
Hi,
Try this: Add this CSS in Theme panel -> Custom CSS
.wpb_button {
width: 100% !important;
}
Thanks!
Hi,
I’m not sure for what is used, delete it if is fine for you. I have a comment line in style.css: google plus oauth iframe used by ff & chrome for this is used.
For comment click replace with : #disqus_thread
http://screencast.com/t/oMaQzF20s
Thanks!
Hi,
Make the above change, code provided above and make sure you use the same email address on your Disqus account, i mean to have the same address on Disqus account with the Moderator account.(your WP account)
Hi,
I’ve tested and works great, see here: http://screencast.com/t/Ttut99mUk
and in frontpage: http://screencast.com/t/aohzwRTAcXWX
Hi,
Here is a solution: http://screencast.com/t/JhEy6E8su
Replace this with the code above: http://screencast.com/t/juOEmOlarAY
if (td_util::is_ad_spot_enabled('content_inline') and is_single() ) {
$content_buffer = ''; // we replace the content with this buffer at the ened
$content = apply_filters('the_content', $content);
$content = explode('<p>', $content);
$halfway_mark = ceil(count($content) / 2);
$first_half_content = implode(' ', array_slice($content, 0, $halfway_mark));
$second_half_content = implode(' ', array_slice($content, $halfway_mark));
$content_buffer .= $first_half_content;
switch ($tds_inline_ad_align) {
case 'left':
$content_buffer .= td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'content_inline', 'align' => 'left'));
break;
case 'right':
$content_buffer .= td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'content_inline', 'align' => 'right'));
break;
default:
$content_buffer .= td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'content_inline'));
break;
}
$content_buffer .= $second_half_content;
$content = $content_buffer;
}
Share 🙂
This is from this template that you can use it for any page. Just create a new page and use this template with BG http://screencast.com/t/vKGf4M2TbTm4
The settings for the background are here: http://screencast.com/t/vKGf4M2TbTm4
Here we have all templates if you want to see how works each one: https://forum.tagdiv.com/page-templates/
Thanks!
Of manual add condition by post ID and this will work without any plugins.
Hi,
Here is an implementation, take a look on the entire tread. https://forum.tagdiv.com/topic/function-to-hide-ads-and-function-to-show-author/#post-9187
Thanks!