Search Results for 'page template'

Results from the Forum
Simion C.
tagDiv Staff

You can remove that section, simply select a different page template for the page
https://www.screencast.com/t/1Ry4otwqH
Choose the default page template for example. That will remove the sidebar of the latest articles section as well.

Simion C.
tagDiv Staff

Hi,

It should display all posts that have that tag assigned. What happens if you use the default tag template instead of the cloud template?
For example if a post has 2 different tags, it will appear in both those tag pages.

Thanks

SPAREGmbH
tagDiv Member

Top of the Morning,

Thanks for the support.
I see the entire confusion i had because the smart list can not be incorparted into a Page which i was trying to do.
I somehow understood that i can download a template, asign my smart list to it. then save the short code of the “single post smartlist” element and use this element in my page design so i can display a smart list inside a page with my design

THIS DOESNT WORK. to everyone who is trying this. as it seems not to be intended to be used on a page.

HOW IT WORKS
Download template and style it the way you want to
Create a Post and make a smart list in the wp editor
assign the smart list template under post settings

now when you see the created smart list post you have all the other elements from the template inside it and yes your smart list.

i would have wished the “single post smartlist” element could be used in a page. So it would fit my design and taxomony of the website. not mixing posts and pages.

sorry it was my confusion.
Thanks for clarifying and explaining.

#0

2 things I need help with…

1) How do I remove the taxonomy from the Breadcrumbs links.

Example: I need the breadcrumb links to be example.com/blue-widgets as opposed to example.com/category/blue-widgets

2) I need to customize the text to only show the actual category name rather than the page/post name as it currently does?

Example: I need the link text to be as follows: home > toys > boys > best-shirts-for-boys instead of home > toys for kids > toys for boys > best-shirts-for-boys. The first one takes only the category name where as the second one actually takes the page name.

Note: I’m not using the category page templates because I’m putting custom content on these category pages and need to use a regular page.

Cheers and thanks!

kapson
tagDiv Member

I found it. I was missing that selection of column to “sticky” inside the tagdiv composer while creating the page.

it’s shown here > https://tagdiv.com/multiple-sticky-sidebars/

Thank you for making this awesome template
This is the best wordpress template ever.

Regards
Kapil

francojoint
Participant
#0

Still not clear how to visualize on my mobile the page I built through a template and/or tagDiv composer.

I’ve seen the space on the bottom part of each page “mobile version” but I can not believe I need to edit twice a page. I’m looking to the panel theme looking for a way to connect what I’m doing for the web version with the mobile one but I can’t find any.

Do I need to install the mobile plugin? I read is not mandatory, it just speeds up the mobile version.

svlasov
Participant
#0

Hi
When creating a page i select template “pagebuilder+latest articles+pagination” and my question is:

is it possible to edit how “latest articles” look? For example font size, color, etc…

Thanks!

SPAREGmbH
tagDiv Member

here are the print screens from the smart list single post
https://prnt.sc/kj9avu
it deletes the whole element not the content
and the smart list page where i assigned the template
https://prnt.sc/kj9d0z

Catalin
tagDiv Staff

Hi DaveS,

If you do not want to have a sidebar on the Woocommerce page you should turn off from Template Settings from here -> https://www.screencast.com/t/LleeX8G2

Thanks.

Simion C.
tagDiv Staff

Hi,

It may look like a block, but it’s not actually a block. That section will appear in the bottom of the page if the latest articles page template is selected
https://www.screencast.com/t/PZtt1vl2gU
If you don’t want it there, select a different page template, like the default one for example.

Thanks

Simion C.
tagDiv Staff

Hi,

Maybe that could be done with a condition in the header style template, you could do it in a child theme. Something like this for example would work
https://www.screencast.com/t/FKFhhEMskitH
That would display an image from the media library in certain post pages and pages (with that condition).

Thanks

Simion C.
tagDiv Staff

Hi,

The primary category setting will not affect the tags displayed in the post page. Here you can see what will be affected by the primary category setting
https://forum.tagdiv.com/primary-category/

There is a setting that will hide the category tag in single posts and category pages (the setting is per category), but that is a general setting
https://www.screencast.com/t/Erk0NBYU

A setting for what you want to do does not exist, it would be like choosing which categories to display there. In the post page all the categories of the post are shown, unless they are hidden with the general setting.

Maybe the cloud templates will get such a setting for the single post categories element, in the future. Now there is only an order selection and limit
https://www.screencast.com/t/betdQ7qRj

Thanks

Simion C.
tagDiv Staff

Hi,

That message will appear if no menu is selected. The theme provides an empty template which will provide an empty page, useful if you do not want to display a header and footer sections in landing pages for example
https://www.screencast.com/t/TEjmNNcKeo0i
You could use that template fro the landing page.

Thanks

kapson
Participant
#0

Dear Team,

I created a page with TAGDIV COMPOSER >> and page attribution template “Default Template” >>

I don’t want to use pagebuilder+anything ….

I simply want to use my created page with sticky sidebar.

But don’t know what I am doing wrong, it’s not giving me to choose sidebar for the page if I setting template to “Default template”

can you please help

Thanks
Kind regards
Kapil

reginaoak
tagDiv Member

Thank you Catalin. Regarding the preloaded images, I did permanently delete them but they keep coming back. Not only do they come back they add another set to it so the media library keeps growing. I used the default demo as my template thinking that was the problem but when I uninstall the demo it deletes the homepage. Am I do something wrong?

#0

Hi.

When trying to edit page, checkout: http://mrrwebdev01.org/wp-admin/post.php?post_id=24833&td_action=tdc&tdbTemplateType=page, the TagDiv Composer goes into a loop.

Screenshot: https://www.dropbox.com/s/ytuyft6y79bqvpy/Screenshot%202018-08-15%2010.43.20.png?dl=0

Can you please assist?

Thanks.

Juan
Participant
#0

Hello,

I’m currently using module 10 for loop posts, categories, and tags. and I have set up in the loop.php that ads get display every 3, 6 and 9 posts. Here is the code that I’m using:

if (have_posts()) {
    while ( have_posts() ) : the_post();
    $adcounter++;
        echo $td_template_layout->layout_open_element();

        if (class_exists($td_module_class)) {
            $td_mod = new $td_module_class($post);
            echo $td_mod->render();

            if (is_category() or is_tag() or is_home() or is_archive()) {
              if ($adcounter ==3) {
                echo do_shortcode('[td_block_ad_box spot_id="custom_ad_3"]');
              }
            }
            if (is_category() or is_tag() or is_home() or is_archive()) {
              if ($adcounter ==6) {
                echo do_shortcode('[td_block_ad_box spot_id="custom_ad_2"]');
              }
            }
            if (is_category() or is_tag() or is_home() or is_archive()) {
              if ($adcounter ==9) {
                echo do_shortcode('[td_block_ad_box spot_id="custom_ad_2"]');
              }
            }
        } else {
            td_util::error(__FILE__, 'Missing module: ' . $td_module_class);
        }

        echo $td_template_layout->layout_close_element();
        $td_template_layout->layout_next();
    endwhile; //end loop
    echo $td_template_layout->close_all_tags();


} else {

This is working with no problem. My issue is when I create a category template using the cloud library and I add the loop posts, the categories pages don’t show the ads within 3,6 or 9 posts. Is there anything that I need to add on the code above?

Thank you for your time,
Juan

daveml75
tagDiv Member

Any updates on this? DISQUS comments are essential for our site (we have been using it for many years), but so are some of the customizations to the post page only available in the cloud templates.

karlrosqvist
Participant
#0

Ive tried to use the builder to get a nice looking front page. However the template only shows 5 or so articles. To show more I have to pick a category like games or PC and such. How can I make a front page displaying only new articles.

A1 A2 A3 –> builder, nice looking grid
A4 A5 A6 –> builder, nice looking grid
A7 –> all new articles, not just some random category
A8 –> all new articles, not just some random category
A9 –> all new articles, not just some random category

Not sure how well I explained this.. Thankful for help.

/Karl

Simion C.
tagDiv Staff

Hi,

I don’t quite understand what you want to do. So you place a big grid in a page using the composer. The grid will appear only in that page.

The only way a big grid will appear in a post page, would be if you use the tagDiv composer and cloud library plugin to create post templates
https://forum.tagdiv.com/tagdiv-cloud-library-plugin/
Then you can place a big grid in the post template, apply that template for desired posts.

If I misunderstand please correct me.
Thanks

Bogdan B.
tagDiv Staff

Hello,

You can do it using the tagdiv composer by stretching the row: https://www.screencast.com/t/HSx7N7mTQJ
This can be done for pages by default and or posts and other templates using the new cloud library plugin.
https://forum.tagdiv.com/tagdiv-cloud-library-plugin/

Thank you!

Simion C.
tagDiv Staff

I don’t quite know how would that affect SEO, both elements are loaded in the page source, they are simply hidden per specific view ports. I am no SEO expert in the end, you could look up SEO in context with hidden page content/per device.

For the default post templates you would have to edit the core module function, this is used for all modules. For example the post title link
https://www.screencast.com/t/Ync1OFr49
Adding the target blank property there would affect all modules. Maybe with some conditions it would be possible to affect only post pages or the related block, I never tried it however.
The same for the cloud templates, they will also be affected by these modifications.

taihip
Participant
#0

Hi,

While monitoring my site, I found that there is a 404 error at https://dutoanf1.com.vn/wp-content/uploads/2018/01/8.jpg
See below for more details:
<!– Header style compiled by theme –>

<style>.block-title > span,
.block-title > span > a,
… >>deleted<<
.td-theme-wrap .td_block_template_17 .td-block-title:before {background-color:#222}.woocommerce div.product .woocommerce-tabs ul.tabs li.active{background-color:#222!important}.block-title,.td_block_template_1 .td-related-title,.wpb_tabs .wpb_tabs_nav,.vc_tta-container .vc_tta-color-grey.vc_tta-tabs-position-top.vc_tta-style-classic .vc_tta-tabs-container,.woocommerce div.product .woocommerce-tabs ul.tabs:before,.td-theme-wrap .td_block_template_5 .td-block-title>*,.td-theme-wrap .td_block_template_17 .td-block-title,.td-theme-wrap .td_block_template_17 .td-block-title::before{border-color:#222}.td-theme-wrap .td_block_template_4 .td-block-title>*:before,.td-theme-wrap .td_block_template_17 .td-block-title::after{border-color:#222 transparent transparent transparent}.td-theme-wrap .td_block_template_4 .td-related-title .td-cur-simple-item:before{border-color:#222 transparent transparent transparent!important}.td-header-bg:before{background-image:url(https://dutoanf1.com.vn/wp-content/uploads/2018/01/xheader-bg.jpg.pagespeed.ic.LqcvsHyeiJ.webp)}.td-header-bg:before{opacity:.3}.td-footer-wrapper,.td-footer-wrapper .td_block_template_7 .td-block-title>*,.td-footer-wrapper .td_block_template_17 .td-block-title,.td-footer-wrapper .td-block-title-wrap .td-wrapper-pulldown-filter{background-color:#111}.td-footer-wrapper::before{background-image:url(https://dutoanf1.com.vn/wp-content/uploads/2018/01/xfooter-bg2.jpg.pagespeed.ic.ydCzi8Wa8T.webp)}.td-footer-wrapper::before{background-size:cover}.td-footer-wrapper::before{background-position:center center}.td-footer-wrapper::before{opacity:.1}.td-menu-background,.td-search-background{background-image:url(https://dutoanf1.com.vn/wp-content/uploads/2018/01/8.jpg)}.white-popup-block:before{background-image:url(https://dutoanf1.com.vn/wp-content/uploads/2018/01/8.jpg)}</style>

Where could I find the style and fix the problem?

frau1983@libero.it
Participant
#0

Hi, in which way i can add a right sidebar on the article post? in the demo template its show but when i create a artice its not show..i need help.

Bogdan B.
tagDiv Staff

hello,

The image you mention is the featured image. please note you are editing a template that is going to be applied to a post. Not a post directly Not like a page. The content you edit will need to accommodate the post content. You will only see the proper result once you apply the template yo a post. The image is a place holder until you apply the template to a post and see the featured image applied. You cannot edit the post itself in the tagdiv composer. Just the template applied to that post.

Thanks

Viewing 25 results - 13,601 through 13,625 (of 18,570 total)