Search Results for 'page template'

Results from the Forum
Calin
tagDiv Staff

Hi,

Your example for smart list is look like smart list 2, but from what I understand you’ll like to achieve something like smart list 7.
1. Some change in style it can be achieve using custom css or using a smart list from cloud library that can be edited with tagDiv Composer

2. This can be achieve in function of the smart list you are using.

3. Unfortunately this can not be achieve with smart list, but you can achieve an infinite loading using a single post template and this option -> https://tagdiv.com/infinite-loading-for-single-posts/ from post -> https://i.imgur.com/yIf6fA3.jpg -> https://i.imgur.com/KeclHLS.jpg -> https://i.imgur.com/4jHIHFY.png

4. Our theme do not have an option for this, it can be achieve only with custom work and this is not covered by support theme.

5. The view count is set only for reloading of posts (it will count only once), the next and prev buttons from smart list is using ajax.

Thank you!

Calin
tagDiv Staff

Hi,

unfortunately only the posts loop elements has pagination, also you can remove/replace it only if you are using a cloud template, category template these can be edited with tagDiv Composer -> https://i.imgur.com/BvOSTxt.jpg -> https://i.imgur.com/3EJKXgS.png also you can edit it from here -> https://i.imgur.com/8GwgsFg.png

Thank you!

Calin
tagDiv Staff

Hi,

The latest articles can be set on pages in two ways, you need to check theme both.
1. Check if this is set from page template -> https://forum.tagdiv.com/page-templates-2/ for this open the page like this -> https://i.imgur.com/dht9Ghi.png and set it on default template https://i.imgur.com/mQQmMC8.png
2. It can be set using tagDiv Composer https://i.imgur.com/sEduUqM.jpg using the posts loop element, this can be remove using the right click -> https://i.imgur.com/8YIg3dL.png

Hope this will help you better!
Thank you!

Calin
tagDiv Staff

Hi,

If you want to use the “Time ago format” you need to use a single post template from tagDiv Cloud Library and edit it with tagdiv Composer click on single post date and enable the “Time ago format” -> https://www.screencast.com/t/2G5ogZnde0JZ

Thank you!

#0

Hi, I would like to add a video block to my home page . . similar to the template demo here https://demo.tagdiv.com/newspaper_politics/ Am guessing this is easy but I just can’t find the instructions for how to do this. Is there a page in the tutorials that will show me how to do this? thx

rvicerqveira
tagDiv Member

Hi,
I try the solution indicated, but don’t work.

I defined the “BACKGROUND UPLOAD” field with an image to represent “image without image”, but in my category page, element “Category Grid 2″ show a firt article with:
<span class=”entry-thumb td-thumb-css td-animation-stack-type0-2″ data-type=”css_image” data-img-url=”MYURL/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_1068x0.png” style=”background-image: url(MYURL/wp-content/plugins/td-composer/legacy/Newspaper/assets/images/no-thumb/td_1068x0.png)”></span>

where MYURL is my domain.

Remind that occurs in a article category page with standard template.

I also indicate that I have already defined the image to represent an image without an image, in “BLOCK SETTINGS” -> “Thumbs on Modules / Blocks” -> “THUMB PLACEHOLDER”.
Which is working correctly except in the area “Category Grid 2” in standard category page.

Topfgartenwelt
tagDiv Member

I have already tried this and tried it now again but I the critical error persists and the mobile pages can’t be loaded anymore. When I move the metainfo back into the header it works again.

I just want to move the metainfo for views and author and the comments before the featured image, because they cause in the viewpoint a large cumulative layout shift because of the used font-awesome…

<article id=”post-<?php echo $td_mod_single->post->ID;?>” class=”<?php echo join(‘ ‘, get_post_class());?>” <?php echo $td_mod_single->get_item_scope();?>>
<div class=”td-post-header”>

<?php echo $td_mod_single->get_category(); ?>

<header class=”td-post-title”>
<?php echo $td_mod_single->get_title();?>

<?php if (!empty($td_mod_single->td_post_theme_settings[‘td_subtitle’])) { ?>
<p class=”td-post-sub-title”><?php echo $td_mod_single->td_post_theme_settings[‘td_subtitle’];?></p>
<?php } ?>

//metainfo moved to another position
</header>

</div>

<div class=”td-post-content”>
<?php echo $td_mod_single->get_content();?>
<?php

// meta info after post content
<div class=”td-module-meta-info”>
<?php echo $td_mod_single->get_author();?>
<?php echo $td_mod_single->get_date(false,false);?>
<?php echo $td_mod_single->get_comments();?>
<?php
if ( ! td_util::is_amp() )
echo $td_mod_single->get_views();
?>
</div>
// override the default featured image by the templates (single.php and home.php/index.php – blog loop)
if (!empty(td_global::$load_featured_img_from_template)) {
echo $td_mod_single->get_image(td_global::$load_featured_img_from_template);
} else {
if (TD_THEME_NAME === ‘Newsmag’) {
echo $td_mod_single->get_image(‘td_640x0’);
} else {
echo $td_mod_single->get_image(‘td_696x0’);
}
}
?>

<?php echo $td_mod_single->get_social_sharing_top();?>

</div>

If I delete this part of the code: <div class=”td-module-meta-info”>
<?php echo $td_mod_single->get_author();?>
<?php echo $td_mod_single->get_date(false,false);?>
<?php echo $td_mod_single->get_comments();?>
<?php
if ( ! td_util::is_amp() )
echo $td_mod_single->get_views();
?>
</div>

it seems that the lazy loading in the mobile version doesn’t work anymore…

And after trying to move them on the new position the text under the images in the mobile theme isn’t centered anymore…

If I move the meta-info after the featured image it works: but the text isn’t shown inline..

<article id=”post-<?php echo $td_mod_single->post->ID;?>” class=”<?php echo join(‘ ‘, get_post_class());?>” <?php echo $td_mod_single->get_item_scope();?>>
<div class=”td-post-header”>

<?php echo $td_mod_single->get_category(); ?>

<header class=”td-post-title”>
<?php echo $td_mod_single->get_title();?>

<?php if (!empty($td_mod_single->td_post_theme_settings[‘td_subtitle’])) { ?>
<p class=”td-post-sub-title”><?php echo $td_mod_single->td_post_theme_settings[‘td_subtitle’];?></p>
<?php } ?>

</header>

</div>

<div class=”td-post-content”>
<?php echo $td_mod_single->get_content();?>
<?php

// override the default featured image by the templates (single.php and home.php/index.php – blog loop)
if (!empty(td_global::$load_featured_img_from_template)) {
echo $td_mod_single->get_image(td_global::$load_featured_img_from_template);
} else {
if (TD_THEME_NAME === ‘Newsmag’) {
echo $td_mod_single->get_image(‘td_640x0’);
} else {
echo $td_mod_single->get_image(‘td_696x0’);
}
}
?>

<?php echo $td_mod_single->get_social_sharing_top();?>

</div>

<div class=”td-module-meta-info”>
<?php echo $td_mod_single->get_author();?>
<?php echo $td_mod_single->get_date(false,false);?>
<?php echo $td_mod_single->get_comments();?>
<?php
if ( ! td_util::is_amp() )
echo $td_mod_single->get_views();
?>
</div>

<footer>

Greetings Kathrin

Calin
tagDiv Staff

Hi,

You have two options for cloud templates, to inherit (use) the primer one or to use other category template -> https://i.imgur.com/P1S1EZ8.png -> https://tagdiv.com/find-whats-new-category-templates/ the fonts and design can be adjusted on cloud template using tagDiv Composer

Thank you!

zittis
Participant
#0

I face a serious problem with one of my customers what I am using your theme Newspaper.

The search icon in the menu is not clickable. I am using a Cloud Template (Header Template 15).

The same problem is happening at smaller screens (mobile) and the Search Icon as well as the Menu (hamburger) icon are not clickable.

Also, in the main page, I guess that all problems are related, the pagination using ajax is not working.

Calin
tagDiv Staff

Hi,

All blocks use filters for posts/categories ->https://i.imgur.com/7vvViKK.png these can be edited using tagDiv Composer, if you have a PRO Demo, you can edit the entire layout with tagDiv Composer (PRO Demos are using cloud template).

Thank you!

Calin
tagDiv Staff

Hi,

Most probably that is because you are using mobile theme plugin( then you’ll use only two thumbs -> https://imgur.com/vwVIXUg), using this plugin, you’ll gain a better speed then responsive version of theme, but in order to achieve that speed you’ll need to create a new content for pages because in the most of cases those were made with builders ( tagDiv Composer, WPBakery ) and you need to use only the mobile editor ( you need to set the content for pages in mobile editor and this content will be display on mobile theme)
-> https://i.imgur.com/9d0UWLT.png

Also you can show the responsive version on mobile theme -> https://i.imgur.com/m0bVB5T.png you can check more details about mobile theme in our documentation -> https://forum.tagdiv.com/the-mobile-theme/ or if you want to have the responsive version only, you can use the amp option from mobile theme -> https://i.imgur.com/oofST3D.png (to use the mobile theme template on amp) or you can disable the plugin.

Thank you!

Calin
tagDiv Staff

Hi,

Unfortunately our them do not have this option, but you can use a single post template from tagDiv Cloud Library, edit it with tagDiv Composer and use the right click to remove the featured image, in this way the featured image selected inside the article will be set only on modules.

Thank you for your understanding!

MG Dev
tagDiv Member

Hi – sorry. Our mistake. The problem is persistent after changing page template attributes.

Calin
tagDiv Staff

Hi,

Please note that cloud templates and elements can not be import in widget area, these can be imported as templates or blocks in pages or templates using tagDiv Composer.
You can use only the elements that are in widget area.

Thank you for your understanding!

MG Dev
tagDiv Member

Update – changing the page attribute template back to Default re-inserts the title and breadcrumb container. Selecting any of the Page Builder options makes pages display correctly. The tooltip for Default suggests this is not expected behaviour

Estebany16
Participant
#0

Greetings gentlemen tagdiv.
Urgent.
Our domain ellatino.news
We are pleased to address you to try to solve a problem as a team that occurred with the Newspaper template that we acquired from you, this morning the front of the page dawned without format, when checking the wordpress panel we realize that all the plugins They integrate the default template, they were not installed inside the panel. Only those with tagdiv starts were uninstalled. No other plugin was disabled or uninstalled. We proceeded to deactivate the remaining plugins within the panel, and activate them again and automatically began to install and activate the tagdiv Plugins that the template brought. The template displays well on computers, but the thumbnails of the articles are not displayed on cell phones. Please give us logical reasons why this event may be happening.
Thank you…

kibiribi
tagDiv Member

Calin, thanks again for the detailed explanation.

I’ve reviewed all Templates – https://www.screencast.com/t/3JWV3Vrfj

May I ask you: I just want to leave my header’s design as it is.. but I want to add search bar only on the 2nd line of header –
see mockup – https://www.screencast.com/t/xU2Hyz39VrAq

But right now I don’t have a Header template for my site – https://www.screencast.com/t/XJW4wcBw9u0E
How to modify search bar in this case for all pages and posts without Header template? 🙁

Please explain, it’s not clear for me.

steven786
Participant
#0

Hello,

The footer in my website appears to be broken in all posts except home page.

Also, I wanted to customize post template and add sharing button in the sidebar, but when I went to cloud => templates and customized single post templates, I came to realize that it is showing me whatever I do on sample preview page, but it does not apply any of my changes to the actual posts in my website.

Also, the footer seems to be working fine on sample page while previewing cloud => templates => single post template but it does not work fine on any of my actual post. One last thing, when I go to theme panel and select same template single post template under the options to set default template for my post, sidebar does not appear. But, sidebar is also visible on the sample page while previewing the post.

Please let me know what you think about it. Also, if you can give me your email I can send you the details.

Thanks

MG Dev
Participant
#0

Hi there

We’ve just upgraded from Newspaper 9 to 10, and all of our pages now have the WordPress page title and breadcrumbs above the TD Composer content.

We can clear this in CSS (hide td-crumb-container etc), or by changing the Page Attribute pull down to something other than default, saving and then changing back to default again.

What seems to have happened is that the Page Attribute>Template information has been lost. Is there any way to fix this without going into every post?

Demir
Participant
#0

Hi,

I use jetpack cookies and consent widgets for GDPR on my site. I made a few changes to a Footer template that I downloaded from the cloud. I added jetpack cookies and consent widgets to this footer page and activated it to be used on the whole site.

When a page is displayed on the site for the first time, a warning appears at the bottom of the page and disappears when the user approves this warning. However, from now on, whenever every page is displayed, it appears very short at the bottom of the page and disappears by itself. This attracts a lot of attention, especially on mobile devices. What should I do to make this never happen again? What am I doing missing or wrong?

Regards.

My site URL: http://www.arthenos.com

sproutnepal
tagDiv Member

Dear Calin
1st and 3rd points are done. Thanks for that.

Regarding 2nd issue, please see screenshots of post, home page source code.
Home page source code : https://imgur.com/a/5hCQsC7
Post’s source code https://imgur.com/a/cFlI9qT

I have already deleted signin element from header and also disabled the same from theme panel. https://imgur.com/3JZbxVq but still those text are in source code. These text were triggered by copyscape.org for duplicacy of content. See pink colored text https://imgur.com/xpTCPsz

I am using header templatehttps://imgur.com/jOW7JXA please suggest if said issue have any connection with this

My website www sproutnepal com

chrisogwua
Participant
#0

Pls someone should help me with how I can customize my category. When I try to edit the category page i get an alert this page uses a template that is not editable. how do i get around that?

maghrebpost
Participant
#0

Hi,

I want to make changes to the general default single post template via php
As I’ve already searched through all of the documentation on how to work with child themes, my final understanding seems to be that only the templates 1-13 can be edited with a child theme but not the default post template?

So then I wanted to create a solution that is most likely update-proof and requires little effort to update.

I’ve created a hook: <?php do_action(‘after_single_post_footer’); ?>
In the /wp-content/plugins/td-standard-pack/Newspaper/loop-single.php:67
and then call the hook from my /wp-content/themes/newspaper-child/functions.php

add_action(‘after_single_post_footer’,’add_read_further’);
function after_single_post_footer () {
//some function
}

However this will not work. The only way I seem to be able to add actual content is when hardcoding the HTML into the loop-single.php, which is what I wanted to prevent.

Just in case, I’ve tried creating a page with the Cloud Templates and also was thinking about the API, but then again you seem only be able to edit the templates 1-13 but not the default one.
We have just over 2000 posts that are set to default template manually, so adding a new one is out of the question, as I wont manually change all of them.

Do you have any ideas on how I might be able to change the default post template via php such that I have a theme update proof solution?

Calin
tagDiv Staff

Hi,

If you are using a pro demo, the footer is a cloud template, then you’ll need to edit it from a page, for example, you can edit the homepage, click on edit with tagDiv Composer -> https://i.imgur.com/uweNRrc.jpg after that go down to the footer end edit it how you want (now you can customize the the whole web-page from fronted).

Thank you!

Calin
tagDiv Staff

Hi,

If you are using a single post template or PRO Demo you can edit the template with tagDiv Composer and change the color -> https://i.imgur.com/9iuSCyB.jpg -> https://i.imgur.com/9oggUjh.png or if you are using a standard post style the you’ll need to use a custom css.

Thank you!

Viewing 25 results - 9,301 through 9,325 (of 18,570 total)