- TutorialstagDiv Social Counter Tutorial
Hi,
The modified date on posts can be set using tagDiv Composer on single post template from tagDiv Cloud Library.
-> https://www.screencast.com/t/eYkeLqbCqV -> https://www.screencast.com/t/3qCSo9Nxtt
Hope this will help you!
Thanks.
Hi,
You can use a category template from tagDiv Cloud Library and duplicate it for each category were you want to have specific content, edit each one after your needs and set on categories -> https://www.screencast.com/t/cdt3xzXGlWkp
Thank you!
Hey. Previously, I used the following code for entries:
// Вывод рекламных блоков после определенного абзаца записи
add_filter( ‘the_content’, ‘wpse_ad_content’ );
function wpse_ad_content( $content ) {
if( !is_single() )
return $content;
$paragraphAfter = 2; //Введите номер абзаца, после которого будет выводиться реклама.
$content = explode ( “</p>”, $content );
$new_content = ”;
for ( $i = 0; $i < count ( $content ); $i ++ ) {
if ( $i == $paragraphAfter ) {
$new_content .= ‘<ad code this>’;
}
$new_content .= $content[$i] . “</p>”;
}
return $new_content;
}
It’s not working right now. I am waiting for your help!
We purchased Newspaper last year and installed at a temporary URL/server where multiple people in various locations would be able to test and tweak it, but the general public would not know to look. Unfortunately, it’s taken a long time. We’re trying to finalize the site, but we need to access the cloud templates to fix some problems. However, the cloud templates require activation, and we were told that once we activated the theme, the site would be stuck where it was.
Should we activate the theme—will doing so prevent us from installing it on the live website? What should we do?
Hello !
In the default mode that you are using unfortunately you cannot modify the page template. You can use a Single post template from the cloud library and then edit it as you wish. Here are some tips and tricks on how to use it: https://tagdiv.com/cloud-library-page-templates-newspaper-theme/ ; https://tagdiv.com/customize-articles-with-single-post-templates/
Thank you !
The Add New Cloud Template Button is missing. This is very frustrating. Why is it now showing? Thanks. My web site is https://infomeddnews.com
Hello !
In order to change the placement of elements you will need to create a single post template from the cloud library and modify the elements using the tagDiv Composer.
Here are some tips and tricks on how to use the cloud library and single post template: https://tagdiv.com/customize-articles-with-single-post-templates/ ; https://tagdiv.com/cloud-library-page-templates-newspaper-theme/
Thank you !
Hi,
Unfortunately we do not have for the moment this theme to make custom work, sorry!
For the arrow slider you can try this custom css but, I do not know if this will work correctly
.wpls-logo-showcase button.slick-prev, .wpls-logo-showcase button.slick-prev:active {
background: rgba(48, 96,155, 0.5) url(../images/arrow-left.png) center center no-repeat !important;
background-size: 15px 15px !important;
}
.wpls-logo-showcase button.slick-next, .wpls-logo-showcase button.slick-next:active {
background: rgba(48, 96, 155, 0.5) url(../images/arrow-right.png) center center no-repeat !important;
background-size: 15px 15px !important;
}
Using a footer page will be more easy to achieve that you need.
Footer page from tagDiv cloud template -> https://www.screencast.com/t/1sGZfJhqc -> https://forum.tagdiv.com/footer-templates/
Thank you!
Hello !
The about us option comes from the footer option and cannot be deleted. You can edit it if you want or you can create a footer page from the cloud library and create it as you wish.
Take a look at our documentation regarding the cloud template: https://tagdiv.com/cloud-library-page-templates-newspaper-theme/
Thank you !
Hi,
If you are using a default header template the settings from them should change the header color -> https://www.screencast.com/t/DAeM1f5ViQ just make sure that after you changes those color in theme panel you clear all cache.
If you are sing a header template from tagDiv Cloud Library -> https://www.screencast.com/t/OPxUDip0XoUyou need to edit that template an change the header color using the header manager
Thank you!
Hi,
In order to achieve a title over feature image in post template, the easy way will be to import a simple post template from tagDiv Cloud Library -> https://www.screencast.com/t/t0g2VmoiGxbL also you can edit those templates.
To check the mobile version of post template you can do like this -> https://www.screencast.com/t/hh9XAdyXrUM
Thank you!
Hello !
Having the menu on single row without using a cloud template will not be possible since the font and size are litteraly too big for the menu. If you’d be using a cloud template menu you could stretch the menu.
Unfortunately you cannot set the posts by release date.
To filter what to you want to be displayed on your block you simply click on them using the tagDiv Composer and go to the filter tabs.
Thank you !
Hi,
With the composer you can design pages and also templates. Post templates can be created with the composer, not actual posts. A template cannot be a post, it can only be applied to a post.
You can design as many templates as needed and apply them to the posts you want
– https://tagdiv.com/what-is-the-cloud-library/
Currently I am not aware of plans to allow the composer to be used for creating posts not templates, so I can’t provide you with a definite answer unfortunately.
Please let me know if you have more questions or need help.
Thanks
Hello !
Please provide a link to your website and the name of the header your are using.
If you’re using a cloud template you can edit the colors using the tagDiv Composer by going to the CSS tab and edit the colors from there like here: https://www.screencast.com/t/sT1jiAK8ZN7m Keep in mind that on a header there can be more than 1 zone so make sure you edit every single one. See the difference between first picture an this: https://www.screencast.com/t/z0v5wwSxi93
Thank you !
Just purchased Newspaper 9. Installed it and successfully activated it. However when it asks me to install the 3 plugins – TagDiv Composer, TagDiv Cloud Library, & TagDiv Social counter – I get Ajax Errors, on all three and then my entire WordPress shuts down. I have tried shutting down all other plugins, and still the problem persists. Please Advise and help.
If anyone stumbles onto this and you add code via a plugin you could use the following, as you need to fire the filter AFTER the theme has been done setting up. In my case below, I didn’t want to remove them all, I just wanted to display some of them.
/**
* Remove Extra Social Profile Fields.
*/
add_action( 'after_setup_theme', 'filter_contact_methods' );
function filter_contact_methods() {
add_filter( 'user_contactmethods', 'filter_tagdiv_social' );
}
function filter_tagdiv_social( $services ) {
$services = [
'mail-1' => 'Public Email Address',
'phone' => 'Phone Number',
'facebook' => 'Facebook',
'instagram' => 'Instagram',
'linkedin' => 'LinkedIn',
'twitter' => 'Twitter',
'youtube' => 'YouTube'
];
return $services;
}
Below is a list of the current extra_contact info that TD outputs
[behance] => Behance
[blogger] => Blogger
[dailymotion] => Dailymotion
[delicious] => Delicious
[deviantart] => Deviantart
[digg] => Digg
[dribbble] => Dribbble
[ebay] => Ebay
[evernote] => Evernote
[facebook] => Facebook
[flickr] => Flickr
[forrst] => Forrst
[googleplus] => Google+
[grooveshark] => Grooveshark
[instagram] => Instagram
[lastfm] => Lastfm
[linkedin] => Linkedin
[mail-1] => Mail
[myspace] => Myspace
[path] => Path
[paypal] => Paypal
[pinterest] => Pinterest
[reddit] => Reddit
[rss] => RSS
[share] => Share
[skype] => Skype
[soundcloud] => Soundcloud
[spotify] => Spotify
[stackoverflow] => Stackoverflow
[steam] => Steam
[stumbleupon] => StumbleUpon
[telegram] => Telegram
[tumblr] => Tumblr
[twitch] => Twitch
[twitter] => Twitter
[vimeo] => Vimeo
[vk] => VKontakte
[windows] => Windows
[wordpress] => WordPress
[yahoo] => Yahoo
[youtube] => Youtube
[xing] => Xing
Hello, on my website SneakerFiles.com I want to add one more link to the navigational bar which has Air Jordans, Nike, etc. The text goes down to the left and makes the navi bar look off. Here is an example:
Is there a way to make it all on one line? Without using TagDiv Cloud?
I have a category that is called ‘Where to Buy’. I want to have them display by the release date for each shoe. Is there a way I can do this or a plugin?
Also I was wondering if there is a way for select blog posts not to display on the homepage?
Thank you.
Thank you!
I’m trying to build my header as a cloud template right now. I’ve got a background picture for the header and I want it to be full width. Is it possible to make the header full width? I haven’t found the option yet.
Hello !
When using a cloud header you will edit it using the tagDiv Composer and header manager. In that case you will have to go to Style Tab and change the Text color for Main Menu and the Text Color for Active & Hover option.
Thank you !
Hi,
So you want just the menu to be hidden, but the rest of the top bar should be visible? you could build or import a cloud header template and remove/not use a menu element
– https://cloud.tagdiv.com/#/load/Headers
Or you could use CSS to remove it, something like this should work
.td-header-wrap .td-header-menu-wrap {
display: none;
}
If it doesn’t work, please post a link to the website and I will modify it accordingly. Or specify what header style you use. Let me know.
Thanks
Hi,
That is possible, you can split a row like this – http://prntscr.com/novfmo
The rows have these stretch options – http://prntscr.com/novfvh
If you have a specific demo in mind, please mention which one and I will check it and tell you how it is made exactly. Note that some demo homepages can be imported from the cloud library
– https://cloud.tagdiv.com/#/load/Homepages
Maybe the one you want is there, so you can import it ready made, with the cloud library plugin
– https://forum.tagdiv.com/tagdiv-cloud-library-plugin/
Let me know.
Thanks
Hi,
You can find the post template in Cloud template -> https://www.screencast.com/t/wbkVA4a22 or if you do not have that demo install and you like the single post template you can get it from tagDiv Cloud Library
-> https://www.screencast.com/t/BTNTkPzx
Hope this will help you!
Thanks.
Hello !
Unfortunately this option is only available when using cloud post templates. On default template you cannot add this option.
Thank you !
I agree that it may seem complicated, but it is not so difficult however. For example you can begin with a already made cloud header template, import it and modify it. Or begin with a blank header template and built it as you want – http://prntscr.com/nor4w4
– http://prntscr.com/nor55c
You can build it with the dedicated header builder elements – http://prntscr.com/nor62w
Once you add the elements you want to show on default mode, activate the sticky mode and add the same elements (if you want the same ones to be displayed when sticky)
– http://prntscr.com/nor6t8 – http://prntscr.com/nor6y7
This would be the solution. Other than this maybe it could be done with CSS, but that’s a strong maybe. It would be very difficult if even possible.
Hi,
Please make sure that all settings for WP Super Cache are set like in our documentation -> https://tagdiv.com/wp-super-cache-plugin-install-and-configure/ -> https://www.screencast.com/t/B29YAemy
Also if you are using Cloudflare please make sure to be set like in our documentation -> https://tagdiv.com/how-to-set-up-cloudflare-cdn/
Thank you!