Search Results for 'page template'

Results from the Forum
josito
Participant
#0

I am making the page for the home page, i love the categories style 6 template with the text on transparent background https://forum.tagdiv.com/wp-content/uploads/2015/05/2015-06-15_16-44-07.png, somebody now if is possible add this to a page in vc?

Thanks.

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately comments for pages were not been designed to appear when pagebuilder is used. If you want to display comments even you use pagebuilder you need to add it also here – http://screencast.com/t/8wyo4gWTpQFhttp://screencast.com/t/vXNwR9Ral
If you want to make this change only for “pagebuilder with title” template you need to copy this from default templatehttp://screencast.com/t/YnVaxvIpDK3m and also comments code – http://screencast.com/t/yYpqkMPA2R

//get theme panel variable for page comments side wide
$td_enable_or_disable_page_comments = td_util::get_option('tds_disable_comments_pages');

if($td_enable_or_disable_page_comments == 'show_comments') {
comments_template('', true);
}

Result: http://screencast.com/t/kXJDsvKwK22

Hope this helps!

Alin [tagDiv]
tagDiv Staff

Hi,

If you use default/pagebuilder with latest articles page template you should not have breadcrumbs if you add elements using Visual Composer to you pages. If you add content without using page builder the breadcrumbs can be disabled from Theme Panel > Template Settings – http://screencast.com/t/cgivfgZ6709 but it will be disabled also on post pages.
You can use custom css to hide breadcrumbs only on pages – http://screencast.com/t/t7AdmHUs

.page .entry-crumbs {
display: none;
}

Or edit page templates and delete/comment the breadcrumbs code – http://screencast.com/t/TAmM4Ajfi

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please also check this video tutorial, maybe it will help more – https://www.youtube.com/watch?v=rgWqozuqmJk also you can follow our youtube channel as we will add more video tutorials there.
For start you can choose a predefined template like the homepage – video template(see the video)- http://screencast.com/t/wTGN6mj0vJN but this will not use video files, just usual text and image content. Click on the template to select it. Now all the rows, blocks, sidebar and ad boxes are already imported on your new page. Now click Publish to save settings.
Also after you have created your page you can set it as static frontpage from Settings > Reading – http://screencast.com/t/dWdpT5FUTdT

Hope this helps!

Andrei L.
tagDiv Member

Hi

1. You can use yoast seo plugin: https://yoast.com/wordpress/plugins/seo/ to add a description. Initial the plugin will add a default description, but you can add your own description too.
2.You can use page builder with title as template page like here: http://screencast.com/t/hkMbfDAp because the page title it’s h1 tagged: http://screencast.com/t/YKqmO5L1qM Also if you want to use a page template without title you can add a text block from Visual Composer anywhere on the page.

Thanks!

talktotop
tagDiv Member

What I am seeing in trying to edit the home page is quite different to the screen capture you mentioned above where you recommended M15. I both created a new page and tried editing the current home page.

This is your screenshot: http://screencast.com/t/eJ3ZEPlK

This is mine: http://screencast.com/t/Zxd190Wz51N

Secondly, apart from replicating the classic blog home page, I also want my posts, pages and sidebar to be exactly as the classic blog template.

Thank you

avni53
Participant
#0

Hello, Iam following up the tutorial but i can not set up a homepage from the available temaplates in the system..
avni

Alin [tagDiv]
tagDiv Staff

Hi,

Please use Widgetised Sidebar block to display your sidebar on pagehttp://screencast.com/t/7dFxFwudKK5P Also for your articles you can set your sidebar from Template Settings – http://screencast.com/t/mVtpo5zJ You need to add/re-add widgets to your sidebars from Widgets section – http://screencast.com/t/tB3xhNNxFv

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Infinite load pagination can be used only on blocks, sorry! A solution to have infinite pagination is to change to default page template and use a block for your latest articles – http://screencast.com/t/X6LUqlrxy2http://screencast.com/t/B64fGGjVNDF

Thanks!

simchris
tagDiv Member

You can usually “view source” for your live page to see the actual rendered page and see if the items you added to the template are there.

Note be sure to disable any optimization tools which strip out comments from HTML or those would, of course, be removed (e.g., mod_pagespeed, etc.).

simchris
tagDiv Member

You need to put in the correct code for *your* website, not the example you have shown above. use the “code generator” on the page you mention, and review the docs there on how to use it. You need to put in an echo element probably for your current page where the comments live, not the facebook page link you posted above(!).

That code is for THAT page on FB, not YOUR site. The href= needs to be a page on YOUR website.

Note the “code generator” which is intended to … guess what … “generate the code” needed for you to use the element on your own website.

if none of that makes sense to you, then you might want to hire a developer — or look for a plugin which would generate the correct URL for each post to put into that element.

so you would need to (per their instructions)

a) put the java SDK in your header

b) put this in your post template (so if you’re using post template 2, edit the post template file 2 in your theme root directory)

<div class="fb-comments" data-href="[your URL HERE]" data-numposts="5"></div>

You would need to replace [your URL HERE] with an echo current page/post URL element — NOT the Facebook URL, obviously.


hope that helped!

Lucian
tagDiv Staff

Hi,

Unfortunately the load more or infinite load pagination can’t be implemented for loops or post pagination.
If you need another implementation for the latest articles section you can try this functions: http://codex.wordpress.org/Function_Reference/next_posts_link and add them using an div tag on the template you use on your homepage and replace this: http://screencast.com/t/7DlGd290CLB
You can find more details here: https://forum.tagdiv.com/topic/how-just-make-next-and-prev-next-on-pagination/#post-24385
Hope this helps!

Thanks

Alin [tagDiv]
tagDiv Staff

Hi,

The theme doesn’t have an option to remove date and author on articles from a specific category and you will need custom modifications to achieve that. For example you could try in_category() function like this:
*for date(use the same function also on modules) in td_module.php file – http://screencast.com/t/saZTUxhGmwHq
*for author please edit td_module_single_base.phphttp://screencast.com/t/XAOzPjVnC
Newspaper theme was designed for the default WordPress taxonomy and post types, it hasn’t been tested with custom post types or custom taxonomy if this is what you mean. Anyway you can customize theme’s post template you can find them in the root of the theme – http://screencast.com/t/MxzF2Erc and also the modules – http://screencast.com/t/AgAwwffZL
Also when you add a block to a page you can filter articles by a specific category(or multiple) and choose sort(latest) order so it will have the same functionality like category page – it will always show your new post if from that specific category – http://screencast.com/t/7ghBd5PzFx Another solution is to create a page, use a page template with latest articles(do not add any elements using Visual Composer) and just select a specific category for loop – http://screencast.com/t/9LP0wbYIdb4 so this page will use the loop like category page.

Hope this helps!

Emil G
tagDiv Staff

Hi,

Try to add the following condition inside block 3 file – http://screencast.com/t/467HrszVpnb

if (is_page_template('single-people.php') and $td_column_number == 3){
   $td_column_number = 2;
}

If it doesn’t work try this one:

if (is_single() and $td_column_number == 3){
   $td_column_number = 2;
}

It checks if the template file is single-people.php and it sets the columns variable to 2.
Let me know if it helps.

Thank you!

  • This reply was modified 11 years by Emil G.
Alin [tagDiv]
tagDiv Staff

Hi,

The default page template was not designed to show excerpts or title when pagebuilder is used. You ca use pagebuider with title on pages where you want breadcrumbs or make this change in page.php (add breadcrumbs also when Visual Composer is used) – http://screencast.com/t/7RLhGIMT3xO

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately we did not tested the plugin, so I cannot make any suggestions regarding this. You have to check how the single and loop-single templates are built and start from there. An alternative would be to look for a professional developer to help you with this, if you don’t know any you could look for one on places like – http://studio.envato.com/ Anyway we plan to improve and add better support for the custom post type in a future update.

The theme supports bbpress without any custom modifications and the can be accessed using siteurl/forums please check our demo – http://demo.tagdiv.com/newspaper/forums/ if you want to add content to your forum page, please create the forum page change the template to default and use shortcodes – http://screencast.com/t/l3qDftKrgH Also you can set here your sidebar – http://screencast.com/t/aNMnC4CZ Here you can find the plugin’s documentation – https://codex.bbpress.org/

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

You need to customize this also for page like you did on posts, also if you want to make this change for all template you can try to add your double quotes directly in style.csshttp://screencast.com/t/Wx9q6ADqROY Also you have Formats in a text block added with Visual Composer – http://screencast.com/t/o8KQBtfFxaw
Also the breadcrumbs are displayed on default page template only when pagebuider is not used – http://screencast.com/t/ykINOucHy4s or you can try to use pagebuilder with title – it should work also with pagebuilder content – http://screencast.com/t/Cgr95d2auNhhttp://screencast.com/t/KdUtRwr6

Thanks!

nicobilou
Participant
#0

Hi,

I’d like to create specific sidebar for each category. I go to template panel -> category.
I can create a sidebar and save it using “CUSTOM SIDEBAR + POSITION”. But when I try to associate it using “Per category settings” and clic “SAVE SETTING”, the page stay drak and don’t show me the sign “saved”, even after 10mn…

Can you help me ?

Here is my Theme config

Theme name
Newspaper
Theme version
6.2
Theme database version
6.2
php.ini configuration
Server software
Apache
PHP Version
5.4.38
post_max_size
64M – You cannot upload images, themes and plugins that have a size bigger than this value.
max_execution_time
300
max_input_vars
16000
SUHOSIN Installed
False
WordPress and plugins
WP Home URL
http://madeinmarseille.net
WP Site URL
http://madeinmarseille.net
WP version
4.2.2
WP multisite enabled
No
WP Language
fr_FR
WP Memory Limit
96 MB/request
WP_DEBUG
False
Caching plugin
WP super cache

extpress
Participant
#0

——————–
Original Post
——————–

Здравствуйте! Спасибо за интересную тему WP )

При работе с темой NewsPaper помимо использования основного функционала, мне понадобилась возможность работы с произвольными типами записей, таксономий и полей WP. Для этой цели я решил использовать плагин CustomPress https://premium.wpmudev.org/project/custompress/

1. Какие шаблоны темы будет правильно использовать для создания шаблонов пользовательских типов записей и таксономий?

2. Как правильно настроить пользовательский тип записи (post), чтобы для него был доступен весь функционал темы: Post Options, Post Format, Blocks в Visual Composer и др.?

3. Как правильно изменить шаблон форума BBpress для его отображения во всю ширину без боковой панели? В данном случае боковая панель нужна только на главной странице форума.

Заранее спасибо за ответы!

——————–
Translated message
——————–

Hello! Thank you for an interesting Theme for WP)

When working with the theme NewsPaper addition to using the basic functionality, it took me the opportunity to work with arbitrary types of records and fields taxonomies WP. To this end, I decided to use a plugin CustomPress https://premium.wpmudev.org/project/custompress/

1. What is the correct theme templates used to create custom patterns of record types and taxonomies?

2. How to configure a custom post type (post), for it to be available the entire functionality Topics: Post Options, Post Format, Blocks in Visual Composer, etc.?

3. How to change the template offline BBpress to display it across the entire width without sidebar? In this case, the side panel is needed only on the main forum page.

Thank you in advance for your answers!

Alin [tagDiv]
tagDiv Staff

Hi,

You will have to use facebook comments shortcode and place it on each template bellow the pagination – http://screencast.com/t/EbmOrDOXY as the page navigation is not apart of the content like you can see in template code.

Thanks!

sunkast
tagDiv Member

I’m positive it is using my custom template. The problem seems to be inside the content when the_content() is called. The block ends up having a class of td-block-span4 instead of td-block-span6 like on other pages.

Emil G
tagDiv Staff

Hi,

Please check if the CPT single page uses your custom made template, it may load something else. Unfortunately i cannot provide a quick solution for this, you have to check how the single and loop-single templates are built and start from there. Some elements have to be changed or modified, check which one is useful – http://screencast.com/t/whzCbKBkZtvz – An alternative would be to look for a professional developer to help you with this, if you don’t know any you could look for one on places like – http://studio.envato.com/

Thank you!

Alin [tagDiv]
tagDiv Staff

Hi,

1. If you need more custom ads you have to edit td_config.php and add it like this: http://screencast.com/t/pWYaylHiQg Then just make add it in td_panel_ads.php file – http://screencast.com/t/UB3dwNgI68
Now you can add your code in Theme Panel > Ads – http://screencast.com/t/z3ROmJFEL and display it in your pagehttp://screencast.com/t/aNBwX5azB

2. The theme doesn’t have an option to have a different header ad for each category(or other template) and you will need custom work to achieve that, unfortunately we cannot provide any type of custom work at this time,sorry! You can add a condition here to display a different ad on a specific category – http://screencast.com/t/XOj3fyH8J If you don’t know how to do it I suggest to hire a professional to do this for you, also you can try to find and use a plugin.

Thanks for suggestions, I have added this on our to do list and we will try to improve this in future, however we have over 250 features on our list we have to pick very carefully what we implement.

Alin [tagDiv]
tagDiv Staff

Hi,

You can set the excerpt length for each module from Theme Panel > Excerpt section – http://screencast.com/t/xW6LP6ujaFO
If you want to create a condition for module 16 excerpt lenght only for category page you ca add it like this – http://screencast.com/t/IxPxKkZmukH

<?php
   if (is_category ()) {
      echo $this->get_excerpt(2);
}
   else{
      echo $this->get_excerpt();
}
?>

Result
– category – http://screencast.com/t/pHZCBvJkG4HX
– other template where module 16 is used – http://screencast.com/t/RGKvlVlYAhxE

Thanks!

damianoser
Participant
#0

Hello, I get this fatal error on my page ( aeknea.gr )after I updated with ftp to Newspaper 6:

Fatal error: Call to undefined function vc_column_offset_class_merge() in /var/www/vhosts/aeknea.gr/httpdocs/wp-content/themes/Newspaper/vc_templates/vc_column.php on line 22

Viewing 25 results - 17,251 through 17,275 (of 18,570 total)