- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperDesign your post pages using the Default Templates
- NewspaperPage templates
- NewspaperCreate a form contact page
- NewspaperCloud Library Templates
- NewspaperCloud Library – Category Templates
- NewspaperHomepage – How to build and set it
- NewspaperPost templates
- NewspaperDefault post templates
- NewspaperCategory templates
- NewspaperPost template ads
- NewspaperSingle External Shortcode and External Shortcode
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperSearch setup for custom post type
- NewspapertagDiv Composer – Website Manager
- NewspaperBookmark – Save For Later
- NewspaperFlex Block Builder and Flex Loop Builder
- NewspaperModules Builder in Newspaper Theme
- NewspaperIntroduction to CPT and ACF with Newspaper Theme
- NewspaperCreate a frontend submission form
Hi,
I would like to use the look & feel of the single_template_8.php (= assigned image in the background) for the page.php template.
I am working with a child theme and would like to insert a copy of page.php into my child folder to realize the above mentioned design changes. The assigned image from a page should be used as background image and above the content a transparent “window” should be displayed.
Could you please give me some hint and advice in how to make this work?
Many thanks in advance,
Dinah
So I was told that I’m forced to use visual composer only on my site. Which I’m doing. I wanted to setup one of the template homepages that were included with the theme as my new home page.
http://streamtheplanet.com/homepage-newsmag/
However whats happening is that the pre-set layout has visual composer columns in it, and those columns are not showing up.
I’ve made no modification to the page, this is the preset homepage that came with the theme.
I am using style 8 for category template and have uploaded a 1920px image as background. But when I few the page, the background image is in low resolution. I have enabled all the thumbs option but there’s no change. How can i fix this issue? Thank you.
Hi,
I use a plugin called WP Store locator that uses a custom post type called “wpsl_stores”. This one is already recognized and listed successfully in the Theme Panel of your Theme as a custom post type.
The plugin offers the option to use a custom store page template that I have already used very successfully with my old theme. You can see it working properly with my old theme here: https://www.mudradar.de/ocr-trainingslocation/stuntwerk-koeln
After switching to your theme I wanted to use my custom post template again. To avoid any incompatibilities I decided to do it step by step and create a custom post template along your tutorial and documentation.
As described here: https://forum.tagdiv.com/custom-post-type-support/ I created a new custom single template for it in my child theme.
I copied the “single_template_1.php” into my child theme folder “Newspaper-child” and renamed it into “single-wpsl_stores.php”. I also copied “loop-single-1.php” and renamed it into “loop-single-wpsl_stores.php”.
In my “single-wpsl_stores.php” I changed “locate_template(‘loop-single-1.php’, true);” into ” locate_template(‘loop-single-wpsl_stores.php’, true);” to make the correct loop file been loaded.
../wp-content/themes/Newspaper-child/single-wpsl_stores.php
../wp-content/themes/Newspaper-child/loop-single-wpsl_stores.php
So I made my changes in the “loop-single-wpsl_stores.php” in the <div class=”td-post-content”> exactly the way I did it when using my old theme:
<div class="td-post-content">
<?php //echo $td_mod_single->get_content();?>
<?php
global $post;
$queried_object = get_queried_object();
$address = get_post_meta( $queried_object->ID, 'wpsl_address', true );
$city = get_post_meta( $queried_object->ID, 'wpsl_city', true );
$country = get_post_meta( $queried_object->ID, 'wpsl_country', true );
$destination = $address . ',' . $city . ',' . $country;
$direction_url = "https://maps.google.com/maps?saddr=&daddr=" . urlencode( $destination ) . "";
// Add the map shortcode
echo do_shortcode( '[wpsl_map height="350" zoom="14"]' );
// Add the content
$post = get_post( $queried_object->ID );
setup_postdata( $post );
the_content();
wp_reset_postdata( $post );
// Add the address shortcode
echo "<h2>Adresse & Kontakt</h2>";
echo do_shortcode( '[wpsl_address]' );
// Add the small map shortcode
echo do_shortcode( '[wpsl_map width ="350" height="200" zoom="14" map_type_control="false"]' );
echo '<p>' . __( 'Route planen', 'wpsl' ) . ' </p>';
// Add the opening hours
echo "<h2>Öffnungszeiten</h2>";
echo do_shortcode( '[wpsl_hours]' );
?>
</div>
I uploaded both files into my “Newspaper-child” Theme folder but found out that my changes and amendments are not fully accepted.
I expected to get a page that shows it like here (https://www.mudradar.de/ocr-trainingslocation/stuntwerk-koeln) with the following Elements:
– Map from shortcode
– Content from Editor
– Adress from shortcode
– small Map from shortcode
– Directions link
– opening hours from shortcode
Instead of this, additional information are displayed:
– Map from shortcode
– Content from Editor
– Map = NOT OK
– Adress = NOT OK
– Opening hours = NOT OK
– Adress from shortcode
– small Map from shortcode
– Directions link
– opening hours from shortcode
It seems as if the_content(); (btw: I also tried it with echo $td_mod_single->get_content(); with same results) shows not only the content from the editor (as expected) but also the additional fields where the address and opening hours and the map are maintained in the backend.
Adress & opening hours are part of a box called “store details” and the map is part of a box called “Store Map” in the backend.
It seems as if my custom post template is handled in another way at it has been done before with my old theme. The extra boxes “store details” and “Store Map” haven’t been displayed before switching to your theme and I am wondering how to avoid this.
Do I have forgotten to make any changes in the theme Panel? Or is there a way to filter the additional information?
Looking forward to getting your suggestions on this. Many thanks in advance,
Dinah
Hello,
1) I cannot find the revolution slider element anywhere on your site. Please provide a link to it so I can inspect the slider.
2) The screenshot is not the correct one but I suspect you selected a different module for your latest articles section. It can be changed from the post loop settings: https://forum.tagdiv.com/page-templates-2/
3) You can select a different block header for each element in the bapge builder or the widgets area. There are 17 to choose from: https://www.screencast.com/t/Vq53qeenDK
Thanks.
Now as per your suggestion, I created a new page, added slider and the rest of stuff.
Here are few problems that I see:
1) If the title of post is a bit bigger, it runs over the category and author name. See here: https://snag.gy/7mvpcH.jpg
2) I have added recent posts block but the thumbnails aren’t showing up properly. Their size is so small. See here https://snag.gy/7mvpcH.jpg vs. Your Demo (https://snag.gy/rZRk2f.jpg)
The thumbnails are appearing properly on the homepage now, as the current homepage is just showing latest posts. Is there a way I could display similar style posts on static page? I have checked every single block template but didn’t find anything similar.
3) Why is widget title different on this static page? https://snag.gy/VaXoxU.jpg As compared to the rest of the website (https://snag.gy/gIpcQX.jpg)
Hello,
The background click ad is just a link over the image. The size of the background image itself should be at least 1920×1080
As for the posts it depends on the thumbnails you will be using. If you use large thumbs on your homepage, the post image should always be at least the size of the thumbnail as our theme only crops images, it does not enlarge them
If you use post templates with large images such as https://demo.tagdiv.com/newspaper/td-post-lenovo-details-new-computers-that-could-be-heading-our-way-in-2015/ then you need larger images. If not, then an 800px width should be sufficient.
Thank you!
im using better amp pluglin as i was using this in previous theme and all previous amp pages are created by this plugin itself
im getting this error ,
Fatal error: Uncaught exception ‘ErrorException’ with message ‘td_js_buffer::add_to_header – the header JS was already rendered when you called td_js_buffer::add_to_header() (ex: was called to late)’ in /home/idigita8/public_html/wp-content/themes/Newspaper/includes/wp_booster/td_js_buffer.php:21 Stack trace: #0 /home/idigita8/public_html/wp-content/themes/Newspaper/includes/wp_booster/td_js_generator.php(178): td_js_buffer::add_to_header(‘ \r\n\r\n\t va…’) #1 [internal function]: td_js_generator(”) #2 /home/idigita8/public_html/wp-includes/class-wp-hook.php(298): call_user_func_array(‘td_js_generator’, Array) #3 /home/idigita8/public_html/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(”, Array) #4 /home/idigita8/public_html/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #5 /home/idigita8/public_html/wp-includes/general-template.php(2589): do_action(‘wp_head’) #6 [internal function]: wp_head(”) #7 /home/idigita8/public_html/wp-includes/class-wp-hook.php(298): call_user_func_array(‘wp_head’, in /home/idigita8/public_html/wp-content/themes/Newspaper/includes/wp_booster/td_js_buffer.php on line 21
When I press the Save button in the tagvid composer, a warning message appears on the red line called invalid page template. I have a WordPress reset and a WordPress Database Reset plugin to reset all databases, plugins, and themes. But the problem was the same. What should I do?
Hello,
You can adjust the header , footer and pages to be full width, but not the main content on posts, categories or other templates.
The theme does not have a dynamic width unfortunately for the main content.
Here is the theme panel section: https://www.screencast.com/t/DcfvGSv0ZZXz
And for pages, please use the stretch row functionality of the row settings: https://www.screencast.com/t/Lt8SEMCmG
Thank you!
I would also like to know how you did the shop demo site.
Your Template looks very nice and one criteria for me to buy it was, that blog and shop pages look both clean and nice.
I don’t know how to edit the main shop site since the “add to cart” buttons look very very ugly. Also, in woocommerce, I have to choose between displaying all products and/or all categories. This doesn’t show up on your demo site. can you please help me!
Thanks,
BR
Jens
Hello,
Yes our theme supports full posts on the homepage but only if a list of your latest articles is shown as a homepage, not a static page https://www.screencast.com/t/bFQrztsMf and then this module selected for the template: https://www.screencast.com/t/lEt3yLE7
Thank you!
Hello yangchen,
1)If you will check the Classic Blog, notice that is created with Page Builder+Latest Articles and Pagination template with a Big Grid at the top of the homepage. You can try to change it with another one because you do not damage anything.
2)All the settings about footer section can be found here -> https://www.screencast.com/t/v03rAzlr46 You should check this section and make the changes you want.
Thanks for your understanding!
Hello,
Unfortunately the pagination will not bring up the content on page 1 on each page. There is no simple way of doing this. The pagination provides the rest of the posts that cannot display in the first load in the block or page you are currently viewing. It is not a special template created for it such as the smart lists on posts. The easiest way around this is not to use the default wordpress pagination and simply use a paginated block instead which grabs the content inside the same window like so: https://www.screencast.com/t/TdKcIMLNgc3
https://demo.tagdiv.com/newspaper/
This guide should help with the block settings: https://forum.tagdiv.com/block-settings-guide/
Thank you!
Hello,
And where do you want the link removed from? there are featured images shown in all templates. Pages, categories, tags, posts…etc.
Thanks.
Is there a template? I think you can only change the styles of the elements.
Is it right, that there are no way to edit the category-pages with custom elements?
Might not help but for my sites i find making separate sidebar for home page is useful. I call mine homesider, put stuff in there, then select that for my home layout. This way its mot affected by any other settings from category or post template settings.
Try it if not working.
I think I find a solution.
I put 1 “block25” per column and all set to “limit post number:1” and filter on “latest post” and in the “page template setting” enable “unique articles”.
So the latest articles are not replicated!
Cool
It’s some sort of misunderstanding happening.
I know how to embed video in a simple post templates – I just add Media, and upload the video to the server, and it works. BUT, I want to add LOCAL video to the VIDEO POST TEMPLATES, so the video would be at the FEATURED VIDEO location, of those post templates.
“Featured Video
Featured Video will work only if you are using Video Format.
To set a Featured Video for your post just place your Youtube, Vimeo, Dailymotion or Facebook video link in the required featured video post box.
Video Format is perfect if you have a video and you want to show it in the beginning of your post.
On pages, the video preview displayed will be generated automatically. After you update the post you can see the generated preview image in the Featured Image post box.
Note: You should use Featured Video only on:
Post Style Default
Post Style 1
Post Style 2
Post Style 9
Post Style 10
Post Style 11”
So the WORDPRESS does support local video embed. The THEME does not, because when I enter the URL of local video, it shows nothing at the featured video place of the video post theme.
Hello again,
I have searched it 2 weeks and found it after creating this topic :)))
I am writing here what I’ve found if other users are facing the same problem.
Actually the latest news are coming with template page, so if you don’t want to use it, you have to create new static front page with blocks you want and after that, to set it up as a front page from Settings of the WordPress.
Hi,
Then select the default page template, this will not display a page title and other information on top of the page
– https://www.screencast.com/t/gEiemUIxXs
Thanks
Hi,
There seem to be some conflicts on the page that are interfering with the functionality of that post template
– https://www.screencast.com/t/I9g0fgWVoHnb
They seem to be pointing to that Beez plugin. Please try as a test to deactivate it, and check if this has any effect on the post with this template. Let us know the results.
Thanks
Hello lukehodge,
I have inspected your website and I saw that for some posts you are using the same image with the featured image to be placed at the top of your post, right? So, please notice that all of the post templates will display the featured image at the top of the post page, except Post Template Style 5 which does not display it. I’ll recommend you to use this Post Template because you will bring good theme results. For more information about this case, please check the following useful guide here -> https://forum.tagdiv.com/post-templates-2/
Thanks for your understanding!
Hi,
I believe you are referring to the Latest articles displayed on bottom of the page. That section displays your latest posts, if there are posts. You can customize it like this
– https://www.screencast.com/t/wbdoveLAj
Or deactivate it by selecting a different page template
– https://www.screencast.com/t/mMcvmbd5K
Thanks
Hi,
You could edit the Woocommerce thank you template page itself, and enter your content there for example
– https://www.screencast.com/t/81wVKG4MS
Or maybe try something like this and create your own custom thank you page
– https://www.woobeginner.com/woocommerce-thank-you-page/
– https://www.tychesoftwares.com/how-to-customize-the-woocommerce-thank-you-page/
Thanks