- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsDefault Block Settings Guide
- TutorialsOffset Feature
As per this: https://forum.tagdiv.com/the-child-theme-support-tutorial/
I understand the advantage of using templates for theme updates, but I am not quite sure about the disadvantages.
1) How can I create a template from a page that I have created? Not coming from a pre-designd template.
2) The advantage of custom CSS in a child theme is that I can adjust, for example colors or fonts for all uses on the website. So, when I edit colors/fonts in my saved custom page template, will that also be shown on all pages that use that template?
Thank you
Every time I try to load one of the TagDiv librray, it highlights the import button like I clicked it…. but does not exit. Then when I click the exit button, it shows an accept the layout below but leaves before I can click it. This is in Chrome, and I also tried Internet explorer. Any help?
When clicking Load Template: https://imgur.com/a/02PcG2y
After clicking X cause it wont direct me to the next page: https://imgur.com/a/MIOMXUt
Hello! I am trying to make a special landing page for a part separate from my normal theme.
How do I remove the footer and sidebar? I did not want to load a template but add to this page. Thanks!
Admin https://imgur.com/a/D63Gpog
Preview of life https://imgur.com/a/jixz7XI
Thanks!
This is the second time I am putting this query here – my Edit with TD Composer is not working. It’s just buffer and give no response at all. I have deactivated all plugins except tag div composer?
post_id=131427&td_action=tdc&tdbTemplateType=page&prev_url=%2F%2Fwww.findhealthtips.com%2F
Hi,
I have created a cloud template on my website to create ‘profiles’ for football players. On top of the page there is a general section with some basic information, including a player foto. The photos are uploaded on our server and each foto or player has a ‘unique id’ (for example: https://fminside.net/images/news/DF11/19024412.png)
Instead of uploading each photo to a profile separately, I would like to use a custom field to have it automatically post the correct image in the profiles by filling in the ID of the player in that field when creating a new post. The ID that I put into the custom field needs to be added to an URL, which matches our database with pictures.
Example screen of where I want to display the image:
I tried to use a raw html component using:
>img src=”https://fminside.net/images/news/DF11/get_post_meta($fm20_player_id).png” /< (brackets put in wrong to show you the code)
But that did not do the trick.
1. How can I make the field display inside the posts?
2. Is it even possible to use a custom field like this?
3. Is there any other code I need to alter to have this displayed?
Thanks in advance
that page used header template 29 -law firm.
Hello !
In order to make the site full width you have to select every row of your page using the tagDiv Composer and then set the stretch mode you want like here : https://www.screencast.com/t/BkWwdHh6
In order to make the post page full width you will have to add a single post template and then edit it. Check more about how to have single post template here: https://tagdiv.com/customize-articles-with-single-post-templates/ And for the header you can do it here: https://www.screencast.com/t/xf56tQN0.
These are the ways you can increase your page width from theme options. Anything above this will require custom code.
If you are using a background color / image this will cause the boxed layout.
Let me know if this helped you !
Thank you !
Hello,
So if you want to set a header ad on default header style you can set theme in theme panel -> http://prntscr.com/pbb88l -> https://forum.tagdiv.com/header-ads-adsense/
If you want to have more control over the header you can import a header template from tagDiv Cloud Library and edit it with tagDiv Composer after your needs, after that set the header individual ( on each page/category/post..) or global -> https://prnt.sc/owlzzh
Thank you!
Hello @Kartini,
First you’ll need to check to see if you are using a default post style ( only on those will apply the ads settings from theme panel) or is a single post template from tagDiv Cloud Library. If is a cloud template, you’ll need to edit that template with tagDiv Composer, and click on content -> https://www.screencast.com/t/dYEh4nIv you can set as many ads you want using the ad box -> https://www.screencast.com/t/IiAlsDAT -> https://www.screencast.com/t/7ua8g3oti
Thank you!
Hi,
So if you want to change the elements/widgets from sidebar you’ll need to go in Appearance> Widgets and add there in the sidebar -> http://prntscr.com/oh9kun and make sure that you set on post and category that sidebar, this is one method, or you can use tagDiv Composer and tagDiv Cloud Library, get a post/category template from cloud and edit it with tagDiv Composer.
Thank you!
Hello,
Please notice that the tagDiv Composer is a builder for pages and templates only, not for post, only for post templates, so if you want you can use it on a single post template from tagDiv Cloud Library .
Or you can set a div with a class in code editor and set the css on that class -> http://prntscr.com/pb5cqh -> http://prntscr.com/pb5e3t
Thank you!
Hello,
I think that you are referring to the category page template , if is so then you can change it from theme panel > categories -> http://prntscr.com/pb4k0c or you can use a category template from tagDiv Cloud template and edit it with tagDiv Composer do achieve what you need.
Thank you!
Hello,
So if I understand correctly you want to have some more control over the category template, if is so then you can use a category template from tagDiv Cloud Library and edit it with tagDiv Composer.
Hope this will help you!
Thank you!
Hello !
Please note that we have not tested the WP Pro Advertising plugin. If you want you can add single post templates from the cloud library and edit it using the tagDiv Composer. For the ads you could you use an adBox.
Find out more about it here: https://forum.tagdiv.com/design-post-pages-using-cloud-library-templates/ ; https://forum.tagdiv.com/custom-ad-spots/
Thank you !
Hi,
Yes I use a template from Cloud and I believe I’ve got something wrong on my header as it adds almost 1M of html when I compare http://www.welovetennis.fr and www2.welovetennis.fr for adding just 2 logos… I must have something in there. I’ll just recreate a header from scratch (I had based myself on Template 3 header of Cloud lib, I’ll try starting from blank template this time)
I didn’t see them in search console… yet…
But I could see yahoo, bing and google crawling them. And that yes is not good.
On a 150k pages website this is not helping us (and having wget doing the same is really not a good sign)
This is how I wasted a few hours.
I added this function in prod then put a tail -f on logs to check all was good
Then I spotted those broken url and thought my function was somehow responsable.
Then been hunting for couple hours checking all links. seeing wget -r was doing the same as the crawlers convinced me of investigating further.
// adapting ponctuation for french language
function filter_the_title_fix_ponctuation( $the_title, 5 ) {
// $the_title = html_entity_decode($the_title);
// $nbsp = html_entity_decode(" ");
$thinsp = html_entity_decode(" ");
$the_title = preg_replace('/ +([\?\!\:])/', $thinsp.'$1', $the_title);
return $the_title;
}
Thanks for your help
PS
by the was, perhaps you guy could really benefit from using a private stackexchange … this forum isn’t very helpful when trying to find already answer questions…
-
This reply was modified 6 years by
cantoute.
Hi,
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
When tagDiv Composer is not working -> https://forum.tagdiv.com/tagdiv-composer-not-working/
This can be a plugin conflict or some custom code set in page/template.
Please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme or cache plugin, please deactivate them, clear all cache and try again.
Thank you!
I bought Newspaper Theme and activated with the purchase code but when I try to use a template from tagdiv cloud library it says – Envato key is missing or invalid. Please register your theme using a valid key and try again.
I have already sent you an email (contact@tagdiv.com) with my webpage and login information.
Hello !
You will have to import a single post template from the cloud library. Only the Cloud Library templates and demo are fully editable with tagDiv Composer.
Find out more about it here:https://forum.tagdiv.com/design-post-pages-using-cloud-library-templates/
Thank you !
Hello guys
I want to know how can I fix this issue: https://imgur.com/a/mCJhbc4
It states: “Please select tagDiv Builder Template from the theme panel or set a default template. The current page/post uses a template that is not editable.”
I have tried to set the Default Template from Theme Panel -> Post Settings -> Default Post Template. It is not working so far.
Can you kindly have a quick look?
Hello,
If you are using the a header template from tagDiv Cloud Library with the Header Manager then you can set that template in Theme panel as global for your website -> http://prntscr.com/orgl6n ( this will be apply on all post/pages/categories … that do not have set an individual header ).
If you build a new header template, then yes the mobile header will be empty, but if you import some header templates, this will be set for mobile deceive too.
Thank you!
Hi Calin
Thank you for the reply. So we must create a new header if we are to make a new desktop header. If we leave it untouched, the mobile header will be empty right?
Looking for that issue to be fixed.
We are also using custom category and post templates from cloud library, do we also have to update the headers on each one of them? Because updating the header on homepages doesnt have any affect on the category pages’ headers
Hello,
There is no need to use the tagDiv Composer to have that pagination, all you need to do is to set the page template on Page Builder + Latest Articles + Pagination.
Please provide me a link to your website, in this way I will be able to provide a proper answer.
Thank you!
Hello,
Please notice that in order to have the page number on homepage you’ll need to use the Page Builder + Latest Articles + Pagination -> http://prntscr.com/p9r2r8, the loop (latest articles) that you have set right now with tagDiv Composer do not have this option.
Thank you for your understanding!
Hello !
Unfortunately this option is not available. You can create another single post template without the adbox and add it on the pages where you do not want your ads to show up.
Thank you !
Hello !
Please note that we do not recommend using 2 page builders on the same page. Also by working with WP bakery on cloud templates may cause issues and conflicts.
Also using wp-bakery on tagdiv built templates will cause issues. We recommend using tagDiv Composer.
Thank you !