The theme developers do not recommend any plugin. You will have to test them on your own, but they should work with the theme.
Did you delete the previous version before installing the new one? Did you clear your browser cache too? This solution is working for most people.
Delete the td composer plugin and install the updated version that came with the theme version 8.7.
Delete the td composer plugin and install the updated version that came with version 8.7. That will solve your problem. But make sure you update the theme first via FTP before updating the plugin.
Right now it is an element of the tagdiv composer. So you will have to create a custom homepage using the tagdiv composer.
It seems from update 8.6, any social icons that do not fit inside the width of the device screen are hidden automatically behind that plus sign. Unless you mean all the social icons are hidden inside the plus sign, then that is a problem.
That’s good to hear.
(I don’t work here) I would recommend you send your login credentials and paste this link in your email to contact@tagdiv.com so they can assist you further. I am just a community member with basic knowledge in these things.
Delete the tagdiv composer plugin and install the one that came with the theme version 8.7.
This is a very complex theme and the tagdiv team tries hard to cater to most of the consumer needs. You can raise that issue with them via email to add to their custom suggestions for modification, though it may take longer for you to see them adapt it to the theme.
You’re most welcome.
You’re welcome.
Try and disable the tagdiv multipurpose plugin and see if it works coz that’d what initially made my theme panel to behave like that. (Delete the plugin and then install the one that came with version 8.7. Also remember to update td composer.).
Check under Newspaper>Theme Panel>Instagram settings and make your changes there.
@samochodyelektryczne I will just share it here. Find the post template you are using. In my case, I use post template 2. So its corresponding file is loop-single-2.php (you should find the one which corresponds to your post template). Inside the loop single file, search for <?php echo $td_mod_single->get_social_sharing_bottom();?> and below it, paste the following code
<div class="navi-previous-next clear clearfix">
<div class="navi-previous navi-item"> <?php
$prevPost = get_previous_post();
$prevthumbnail = get_the_post_thumbnail($prevPost->ID, 'td_100x70'); ?>
<p class="navi-icon"><?php previous_post_link('%link', '<span class="navi-prev-title">← Previous Article</span>');?></p>
<div class="navi-post-content">
<?php previous_post_link('%link', $prevthumbnail); ?>
<?php previous_post_link('%link', '%title'); ?>
</div>
</div>
<div class="navi-next navi-item"> <?php
$nextPost = get_next_post();
$nextthumbnail = get_the_post_thumbnail($nextPost->ID, 'td_100x70'); ?>
<p class="navi-next-icon"><?php next_post_link('%link', '<span class="navi-next-title">Next Article →</span>'); ?></p>
<div class="navi-post-content">
<?php next_post_link('%link', $nextthumbnail); ?>
<?php next_post_link('%link', '%title'); ?>
</div>
</div>
</div>
Then save.
Paste the following CSS in the Theme Panel Custom CSS section.
.navi-prev-title {
font-size: 12px;
color: #c1c1c1;
text-transform: none;
font-weight: normal;
}
.navi-next-title {
font-size: 12px;
color: #c1c1c1;
text-transform: none;
font-weight: normal;
}
/* SINGLE POST NAVIGATION - PREVIOUS / NEXT */
.navi-previous-next {
margin-bottom: 35px;
margin-top: 35px;
}
.navi-previous {
width: 49.5%;
float: left;
position: relative;
border-top: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
padding-bottom: 20px;
padding-top: 20px;
}
.navi-next {
width: 49.5%;
float: right;
position: relative;
border-top: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
padding-bottom: 20px;
padding-top: 20px;
}
.navi-previous img{
float: left;
margin-right: 10px;
position: relative;
z-index: 1;
}
.navi-next img{
float: left;
margin-right: 10px;
margin-left: 10px;
position: relative;
z-index: 1;
}
.navi-previous a{
display: block;
font-size: 14px;
text-transform: uppercase;
font-weight: 700;
color: #222;
font-family: Open Sans;
text-align: left;
}
.navi-next a{
display:block;
font-size: 14px;
text-transform: uppercase;
font-weight: 700;
color: #222;
font-family: Open Sans;
position: relative;
margin-left: 10px;
text-align: left;
}
@media (max-width: 480px) and (min-width: 0) {
.navi-previous {
overflow: hidden;
float: none;
margin-bottom: 10px;
margin-top: 30px;
width: auto;
}
.navi-next {
margin-top: 10px;
width: auto;
float: none;
overflow: hidden
}
}
Then disable the inbuilt theme post navigation from the theme panel. Guess it should work.(You can edit the css to your liking).
I would recommend using a child theme when doing this.
-
This reply was modified 8 years by
ctoweett.
@matijakurusic it seems tagdiv is focusing its page builder purely for pages.
Yes, it keeps everything and you can roll back the site in case of any errors. See this guide http://www.wpexplorer.com/backup-wordpress-site-plugins/
@mkza you should first update the theme then the plugins (td composer and td multipurpose).
Try these customizations
https://forum.tagdiv.com/cache-plugin-install-and-configure/
– https://forum.tagdiv.com/cloudflare-cdn/
– https://forum.tagdiv.com/how-to-make-the-site-faster/
– https://forum.tagdiv.com/topic/score-100100-pagespeed-with-newspaper-wordpress-theme/
– https://forum.tagdiv.com/topic/newspaper-theme-speedify-your-website/
– https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/
1. You can use the Appearance>Customise section to edit the footer widgets before publishing them (for footers that do not come with predefined content).
2. The footer is a sitewide feature and applies to all posts, pages, categories and archives. It cannot be modified as you suggest. You can maybe try this on your own http://www.wpbeginner.com/wp-themes/easily-add-custom-header-footer-or-sidebar-for-each-category/ (I don’t work here).
Hi. Delete the tagdiv composer and tagdiv multipurpose plugins and reinstall them afresh from Newspaper>Plugins section.