Search Results for 'page template'

Results from the Forum
hgx
tagDiv Member

Hello Bogdan
Thank you very much! I would like to use a demo template and have header in header style predefined headers to choose from.
Can I then also create an own menu? Or can I use a pre-set? I want not replace it completely?

I would like to use the demo but also in addition to link to external subdirectorie sites. The demo template is to be used on each page individually. So then the demo version does not fix me?

l.G.

tramb
Participant
#0

Hello

For some reasons, the default 404 template i’m using with Newspaper is displaying the Ooops message, ok, but also ALL my articles … That’s a lot …

In the admin panel it’s said “Shows the latest 6 posts from your site and “Ooops… Error 404, Sorry, but the page you are looking for doesn’t exist.”

I don’t think i’ve changed anything related to 404. And anyways i haven’t changed many things in this theme (installed a few weeks ago and patched to the last version). Also i would never change a page or any parameters to display ALL articles. So unless i’m completly missing something, if so excuse me, you should investigate if something is not broken in this template.

Best regards

MrOrsh
Participant
#0

Using the Default Post Template for my posts (single.php) and was wondering if it would be possible to have the featured picture transfer over to all the pages when using pagination? Like how it is on Style 3 for example.

Is this possible somehow?

For reference see http://www.enkelteknik.se/bygg-en-tv-spel-emulator-av-raspberry-pi-och-retropie and click on the pagination (bottom). The featured image only shows up on the first page.

Bogdan B.
tagDiv Staff

Hello,

For the first issue, you can use this code:
.home .td-main-page-wrap{
padding-top: 2px;
}

As for the latest articles you can change the page template to one that does not contain the latest articles section: https://forum.tagdiv.com/page-templates-2/

Thank you!

BkkGreg
Participant
#0

Hi,

I’d like to use a sidebar on my site but the page template settings say “The settings from this box only work if you do not use visual composer on this template.”

Does this mean that I’m unable to have a sidebar if I use Visual Composer? If I want a sidebar am I forced to use the classic mode?

Thanks for any help.

Simion C.
tagDiv Staff

Hi,

Please make sure you have the Page template settings box checked in the Screen options here – https://www.screencast.com/t/itrW5giXiw54 in order to display that field.

Thanks

CreepyRavioli
Participant
#0

Hello, i am creating my own custom post types that will have very specific schema on a cpt template.
How can i disable the adding of shema tags like “Webpage” and “hentry” and all it’s properties?
Thanks for your help.

EDIT: Fixed by removing
<?php echo $td_mod_single->get_item_scope_meta();?>

From the template. As fo the hentry i’ll leave it alone for now since doesn’t interfere with my new schema.

NB221
tagDiv Member

But visual composer is just for ‘pages’ and as the post template isn’t a ‘page’ how do I get into Visual composer for it?

alexis-thoillier
Participant
#0

hello, can you help me to delete the blanc space between the menu and the picture on an article page (exemple: http://backpackaddict.fr/take-an-epic-cross-country-road-trip/).

I choose the DEFAULT SITE POST TEMPLATE 7.

Thanks in advance.

Best Regards,

Alex

HeTo25
Participant
#0

I`m testing the Newspaper-Theme within a localhost-installation and will go online at the end of the week. I was able to configure most of the things and I am happy with the theme. But there is a question about the thumbsize of Big Grid 1 elements.

I`ve managed to edit the thumbsize (height) of Block 5 elements from 324×235 to 324×324 and it worked.
–> td_config.php:

td_api_thumb::add(‘td_324x235’,
array(
‘name’ => ‘td_324x235’,
‘width’ => 324,
‘height’ => 324,
‘crop’ => array(‘center’, ‘top’),
‘post_format_icon_size’ => ‘normal’,
‘used_on’ => array(
‘Module 3, 4, 5, 11, MX3’, ‘Block 1, 5, 6, 13, 17, 20’
),
‘no_image_path’ => td_global::$get_template_directory_uri,
)
);

Then I restarted Apache/MySQL-Services in XAMPP Control Center –> Regenerated Thumbnails with a Plugin. Block 5 elements now appear as a square on my homepage as they should.

I did the same for Big Grid 1 elements and changed them in td_config.php to 265×265 (4 small items right) and 534×534 (1 big item left).

td_api_thumb::add(‘td_265x198’,
array(
‘name’ => ‘td_265x198’,
‘width’ => 265,
‘height’ => 265,
‘crop’ => array(‘center’, ‘top’),
‘post_format_icon_size’ => ‘normal’,
‘used_on’ => array(
‘Big grid 1, 3, 7’
),
‘no_image_path’ => td_global::$get_template_directory_uri,
)
);

td_api_thumb::add(‘td_534x462’,
array(
‘name’ => ‘td_534x462’,
‘width’ => 534,
‘height’ => 534,
‘crop’ => array(‘center’, ‘top’),
‘post_format_icon_size’ => ‘normal’,
‘used_on’ => array(
‘Module 19, Module MX5, MX17’, ‘Big grid 1, 3, 4, 6, 10, 12’
),
‘no_image_path’ => td_global::$get_template_directory_uri,
)
);

Then I regenerated the thumbnails again but nothing changed in my Big Grid 1 on the homepage. The elements still have the default sizes (534×462 and 265×198).

Do I have to take further steps to change the Big Grid 1 Thumbsizes successfully?

Thanks

Simion C.
tagDiv Staff

Hi,

Unfortunately I do not think that is possible. However you can try experimenting with this code, this is where the sharing for the post is generated – https://www.screencast.com/t/zJEhl8NgM3h you could integrate the code in the smart list template file you are using like in this example -https://www.screencast.com/t/ZjpwBa2Q7T and then further customizing the positioning and other properties using css – https://www.screencast.com/t/tBMBsK8InMr but I do not know if this will work properly as it was not meant to display this way.
If you are not using the mobile theme plugin which comes with a predefined style, then it will display the same elements used to create the page on desktop, so what you see on desktop you will see on mobile using the theme’s responsiveness. More about this here in the documentation – https://forum.tagdiv.com/the-mobile-theme/

Thanks

NB221
tagDiv Member

How do I get into this place https://www.screencast.com/t/zlQpfrAdq as I thought visual composer was only for pages, and as the default template isn’t an actual page I don’t know how to do it.

Thanks

Catalin
tagDiv Staff

Hello giahancute2013,

Unfortunately, our theme does not have any such an option for it, sorry! If you want to use our Blocks or Big Grids for the Woocommerce template, you should edit the theme core files where this template is created and add there, using the do_shortcode method and add there what items you want. -> https://www.screencast.com/t/NnutJaAQyZ4 For more information about this method, please consult here -> https://developer.wordpress.org/reference/functions/do_shortcode/ After you will load these elements in your Woocommerce page, notice that you will need for some adjustments if you want to bring best results. The theme has not been tested with these and if you are not aware of the steps which are needed to take in this regard, please consider hiring a freelancer/developer to help you because we cannot provide custom work at the moment, sorry!

Thanks for the message!

Simion C.
tagDiv Staff

Hi,

The mobile theme comes with it’s own predefined template for pages, posts optimized for performance and speed and it is fully tested and working properly. I can not replicate your problem so I recomend you follow the advices suggested above and try to deactivate your plugins except Visual composer just as a test and clear your cache and purge cdn files if you use it, to see if the issue is still present. Also check any custom code you may have added to the theme panel or theme files. More information about the mobile theme here in the documentation – https://forum.tagdiv.com/the-mobile-theme/ When activated you can not use any Visual composer element, because the mobile theme does not use this editor but you can use instead the mobile editor. If you want to display the same elements from desktop on mobile you can disable the mobile theme and use the theme’s responsive design and deactivate the plugin.
Visual composer does not need to be activated, it comes preactivated in the theme package – https://forum.tagdiv.com/how-to-update-visual-composer-plugin/ and is updated with new theme releases. If none of the suggestions above produce any favorable results you can try and reinstall your theme or consider updating to the latest version – https://forum.tagdiv.com/how-to-update-the-theme-2/ the theme and it’s plugins.

Thanks

oilwire
Participant
#0

Dear People,

I am sorry if this is something simple, but on the POSTS – the social sharing options are Facebook, Twitter, Google and Pinterest. I need different combination. I have checked in the Theme Panel settings so many times, so maybe it is not possible to configure or the setting is hidden somewhere else. (Homepage Top Bar is showing OK).

Is there a way to control which social sharing buttons to show on the posts ? I dont need anything fancy like counters etc etc, just 5 Buttons – Facebook, Twitter, Google+, LinkedIn and Buffer.

Do I need to edit the template ? I am afraid, I don’t want to edit those files if something breaks.

Thanks so much.

P.S. – if you can suggest improvements to http://www.oilwire.net, I will be very thankful

NB221
tagDiv Member

Which “page” do I do this for in the visual composer as I don’t see a default page?

I am implementing it by inserting the code in the loop file as I need the ads to appear in particular places that aren’t in the template.

ruandeyzel
tagDiv Member

Ok perhaps you’re not understanding – I can create sidebars fine. I cannot select the sidebar I’ve created on page template settings. It’s seems like a CSS styling issue, maybe z-index?. Please have a look here.

http://pasteboard.co/xQoyCkUzz.gif

oilwire
tagDiv Member

I had this issue, as i had side bar from previous theme. However, the workaround is to create a new sidebar into this theme. Yesterday, I maanaged to resolve this on my site.

I created 2 sidebars – SidebarPage and SidebarPost – by typing this into the empty box which comes below the Default Sidebar. After that, I can go and select the sidebar in the Templates section – for pages and post differently.

Hope this helps. TY.

ruandeyzel
Participant
#0

Hi there,

Under page template settings > General > Custom sidebar, I can’t see the dropdown to select my custom sidebar. I currently have a default sidebar and 2 custom sidebars.

xmanolis
Participant
#0

Hi

I have Newspaper v6.6.5 installed in my WP v4.6.3. I have noticed that each time that it happens to edit the template settings in options table in DB, then template settings reset. I lose all settings. It doesn’t matter even if nothing has been changed: I just open the record of the template settings, copy paste the json for, let’s say safe keeping, click Save and that’s it: everything is lost.

Now, i have also noticed settings reset only after have I refreshed the site. Somehow, there must be a line of code in WP/Newspaper template that reset the settings should someone have modified the db record.

Any help? it’s really annoying and frustating, I have the json in my notepad and I can’t just copy paste it back in the options record, it gets lost by the time I refresh the page.

Bogdan B.
tagDiv Staff

Hello,

I think the template name says it all: Page builder + Page title
It is a page builder page and it will display the title. If you do not want the title, do not use the page builder + page title template. Use the default or the latest articles one.

Thank you!

Bogdan B.
tagDiv Staff

Hi,

Categories have a general category setting that will affect each category in particular except if the particular category has different options set to it and is not left on default. You can find the general category settings here: https://www.screencast.com/t/kNdH8whO
Pages on the other hand do not have global settings as they can be created in the page builder. Each page is unique and cannot grab settings from the other ones except the page template used: https://forum.tagdiv.com/page-templates-2/

Thank you!

nethn
Participant
#0

Hello,
Using your template, how can we ensure the page doesn’t get refresh when browsing through the website/menus/pages/articles so that the playback we have on homepage (radio station on shoutcast) remains active and playing without interruption?

Thank you.

cre8
Participant
#0

Hello,

We’re using post template 10 for single post page and we have enabled both top and bottom ads inside the article. Problem is that top ad is displayed after the category tag and social icons, while we want it to be displayed before all that.

Now it’s like this:

And we want it to be like that:

We couldn’t find the code to change this, although we searched extensively. Any help?

Simion C.
tagDiv Staff

Hi,

Thank you Edward, indeed that will work but it would apply to all the single post pages too so if you would want to hide it only on the homepage post you can use this custom css code, enter it in Theme panel->Custom Css

.homepage-post .td-post-template-8 .td-post-title .td-post-views {
display: none;
}

Thanks

Viewing 25 results - 15,376 through 15,400 (of 18,570 total)