- NewspapertagDiv AMP Plugin Tutorial
- ApiPractical example – How to add a new Block and Module
- NewspaperTrack Subscription Sources with Locker URL in Opt-In Builder
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperCredit System
- NewspaperIntroduction to CPT and ACF with Newspaper Theme
- NewspaperHow to edit modules for Flex Block X
- NewspaperHow to use the Posts List shortcode
- NewspaperUser review system
- NewspaperCustom Fields Support
- NewspaperHow to generate Facebook App ID
- NewspaperHow to insert a block inside the content of a post
- NewspaperModal Popup
- NewspaperPayPal Setup
- NewspaperLink Tracker
- NewspaperLockers
- NewspaperGeneral Options that May Interfere with the Newspaper Theme
- NewspaperAdd Cryptocurrency Price Ticker Widget
- NewspaperPosts Loop Element
- NewspaperThe Newspaper Mobile Theme: Introduction
Hello to you all. Recently i decided to go with my own website and went with newspaper 8 theme. I’m still learning the possibilities of the theme but i’m stuck with this problem and i can not find a answer on this forum neither on net.
So, the problem is following, I’m trying to build a block with content from multiple categories and when i dedicate those category in ajax search i do not get links on the menu in the right upper side of the box. Whatever i try i only get links to All pasts and posts from one category(In this particular example, Recipes). Can anyone more experienced help me with this issue.
Thank you,
Milan
Hello Support Team,
is it true I need to use a child theme to use custom post types and custom taxonomies?
https://forum.tagdiv.com/custom-post-type-support/
How to create a custom single template for your post type:
Step 1 – Pick one of your favorite single templates (check the next image)
Step 2 – Copy it in the root of your child theme folder
Step 3 – Rename it to single-your_post_type.php (replace your_post_type with the wordpress id of your post type. In our sample plugin the id is td_book so the file should be called single-td_book.php)
How to create a custom taxonomy list:
Copy the taxonomy.php file from the root of the theme to the root of the child theme and rename it to taxonomy-YourTaxonomy.php
2. Is it true that tagdiv newspaper 8 is not working with the wp-types toolset plugin, which is a plugin to define custom taxonomies?
https://wp-types.com/forums/topic/side-bar-not-working-well-when-enable-it-to-custom-archive/
https://forum.tagdiv.com/search/toolset/
3. Which plugin to bild sites based on custom post types and custom fields do you suggest working with tagdiv newspaper 8 theme?
Thank you for your consideration and feedback, Best, Chris
Hi rubit,
Unfortunately, I do not exactly understand what do you want to achieve? Give me an example (screenshot) of how you want to show your widgets and also, provide your website URL so I can inspect it closer.
Thanks.
Hi WSSC_info,
For example, you can use the default template and then, you add a row without sidebar section, like this -> https://www.screencast.com/t/tnnLOibGzPN7 Use 1/1 theme layout.
Hope this helps!
Thanks.
Hi Catalin,
Thanks for the response.
Before saying anything, let me clarify that I didn’t say that there are thousands of users looking for this. I said hundreds.

Though I didn’t actually count before writing this number, please don’t put wrong figures on my name. 🙂
Also, not all the customers actually comments here for the feature requests, but amongst whatever other feature requests are there on this platform, ‘Auto load next post’ is prominent over them,
I have also given you a few global news site examples. Now, it doesn’t mean that only Indian or USA sites are adding this. It’s just that these are the sites which I usually visit and I noticed new changes in it in last few months.
Anyways, I was only trying to make you aware of what’s happening in this line outside. I don’t think that the tone of my message above was to show Newspaper theme is inferior in any way. It’s just that I wanted it to be the best.
I am not going to ask for the refund but I will certainly keep reminding you about the features that are still missing here. 🙂
Thank you.
Hi.
Sorry. My English is not good. And I am beginner for WEBSITE.
I am trying to add custom video advertisement to ads banner.
Can you please tell me my mistake about adding custom video advertisement to Ads banner?
My Steps:
1. I copied the video ad content URL from my media library. https://www.screencast.com/t/3ivxpQNCglo9
2. I pasted content URL with codes that you are offered. And saved. https://www.screencast.com/t/v8BdXYhY6B4
3. I refreshed my site. JPEG and GIF ads is OK. https://www.screencast.com/t/JSLbRMFhkE
But video ads.. the ads banner area is missing. https://www.screencast.com/t/Bf8zkb9w1
I don’t know about CODES. is the CODES are just for images? Can i use the example codes to video ads?
Can you please tell me my mistakes about adding custom video ads?
Thank you very much!
Hi,
Changing the theme width is not recommended. All the elements on the page will be affected if the fixed width is modified. This is what would happen if the width is decreased with just 1px for example
– https://www.screencast.com/t/FbD0jW7vWqk
Custom CSS code can be used in the child theme stylesheet. You can try and make experiments if you want to. Or use the theme panel Advanced CSS sections for specific devices.
Thanks
Hi,
You can use the browser inspector to identify the elements on the page and their classes, and create custom code
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
In this example I have set an inner shadow for the modules inside a big grid (there are multiple shadow examples or generators online)
– https://www.screencast.com/t/lUrIT8bvQcfF
Thanks
Hi! I wanted to do this on my website
https://www.ampercent.com/embed-html-php-codes-middle-of-wordpress-loop/8785/
unfortunately it doesn’t work. Can someone help me?
Fabian
Hi, It happens with any page created with a text element and then background color added. Example:
1)Create new page
2) Edit page with tagdiv composer and add a row and then an element, example element ‘text with title’. When text is added the text will appear but when you click on the css tab and change the background color the text can no longer be seen. See images below:
https://www.1uhost.com/new-web/tagdiv-pics/tagdiv_1.png
https://www.1uhost.com/new-web/tagdiv-pics/tagdiv_2.png
Test Page url
https://www.1uhost.com/new-web/test-page/
Hello
To every one searching for a way to add share buttons on pages here is how i did it with out plugin :
1 go to function.php in your theme root( better use child theme so you dont lose modifications when updating) :
2- add the following code :
/* ----------------------------------------------------------------------------*/
// Share buttons on pages' bottom
// PS: no-follow tag was added to external links
function tagdiv_social_buttons($content) {
global $post;
$permalink = get_permalink($post->ID);
$title = get_the_title();
//don't show buttons on frontpage and other pages id
if( !is_front_page() && !is_page(array( 1, 2,3,4,5,6 )) && $post->post_type=='page' ) {
$content = $content . '<div class="td-post-sharing td-post-sharing-top tagdiv-share">
<a class="td-social-sharing-buttons td-social-facebook" rel="nofollow"
href="https://www.facebook.com/sharer.php?u=' . urlencode( esc_url( get_permalink() ) ) . '"
onclick="window.open(this.href, \'mywin\',\'left=50,top=50,width=600,height=350,toolbar=0\'); return false;">
<i class="td-icon-facebook"></i><div class="td-social-but-text">share on facebook</div>
<a class="td-social-sharing-buttons td-social-twitter" rel="nofollow" href="http://twitter.com/share?text='.$title.'&url='.$permalink.'"
onclick="window.open(this.href, \'twitter-share\', \'width=550,height=235\');return false;">
<i class="td-icon-twitter"></i><div class="td-social-but-text">share on twitter</div>
<a class="td-social-sharing-buttons td-social-google tagdiv-google" rel="nofollow" href="https://plus.google.com/share?url=' . esc_url( get_permalink() ) . '"
onclick="window.open(this.href, \'mywin\',\'left=50,top=50,width=600,height=350,toolbar=0\'); return false;">
<i class="td-icon-googleplus"></i><div class="td-social-but-text tagdiv-google-border">share on google</div>
</div>';
}
return $content;
}
add_filter('the_content', 'tagdiv_social_buttons');
// use short code [tagdivsocial] to show buttons where ever you need
add_shortcode('tagdivsocial', 'tagdiv_social_buttons');
`
3 then add the following css to theme panel of your style.css file:
<code>
.tagdiv-share {
margin: 21px auto;
text-align: center;
font-family: 'Droid Arabic Kufi', arial, sans-serif !important;
}
.tagdiv-google{
width: 160px !important;
}
.tagdiv-google-border{
border-right: 1px solid rgba(255, 255, 255, 0.2);
}
</code>
and every thing is working fine
hope this help any one looking.
-
This reply was modified 9 years by
biznizat. Reason: FIXING
http://www.medianews18.in/wp-admin/post.php?post_id=1949&td_action=tdc
i can edit my layout he shows me = Errors happened during tdcIframeData.init() -> bindViewsModelsWrappers()!
plz help me
Hello,
All other parameters are correct. I do not understand that in the file php.ini I have this:
; Maximum allowed size for uploaded files.
upload_max_filesize = 64M
max_input_vars = 5000
but the system status keeps on showing me 1000 instead of 5000
For all other parameters I have the correct numbers after changing.
As a matter of fact, I already talked many times with the hosting provider and they made all sorts of checks, even with deactivate all plugins, like I did now but still do not save. The php version I am using is 7.0. I did not add any custom code or at least I do not remember (can you make an example to me of a custom code I might have written?).
You ask me to switch to the main theme from a child. I am currently using lifestyle theme. Is that a child theme? And in case I do it, will I lose all my job? Or is there anything to switch safely? Sorry for my doubt. I am just a passionate beginner and so I am not so professional.
Is there a way you could check it fast for me and find the solution. The theme panel just stop saving after I change something in the home page… I took out a grid that also had a witing “You should put some html…” or something like that.
Regards,
Nerissa
hwo to insert code after body tag
Example <body> code Here </body>
Attachment header.php
——————–
<!doctype html >
<!–[if IE 8]> <html class=”ie8″ lang=”en”> <![endif]–>
<!–[if IE 9]> <html class=”ie9″ lang=”en”> <![endif]–>
<!–[if gt IE 8]><!–> <html <?php language_attributes(); ?>> <!–<![endif]–>
<head>
<title><?php wp_title(‘|’, true, ‘right’); ?></title>
<meta charset=”<?php bloginfo( ‘charset’ );?>” />
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
<?php
wp_head(); /** we hook up in wp_booster @see td_wp_booster_functions::hook_wp_head */
?>
<meta name=”yandex-verification” content=”c004147e8b49b00a” />
<script async src=”//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js”></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: “ca-pub-6798257544718804″,
enable_page_level_ads: true
});
</script>
</head>
<body <?php body_class() ?> itemscope=”itemscope” itemtype=”<?php echo td_global::$http_or_https?>://schema.org/WebPage”>
<?php /* scroll to top */?>
<div class=”td-scroll-up”><i class=”td-icon-menu-up”></i></div>
<?php locate_template(‘parts/menu-mobile.php’, true);?>
<?php locate_template(‘parts/search.php’, true);?>
<div id=”td-outer-wrap” class=”td-theme-wrap”>
<?php //this is closing in the footer.php file ?>
<?php
/*
* loads the header template set in Theme Panel -> Header area
* the template files are located in ../parts/header
*/
td_api_header_style::_helper_show_header();
do_action(‘td_wp_booster_after_header’); //used by unique articles
Dear Simion,
i changed the homepage article title. That is great. Now in addition to homepage i want to change all the article titles color (like homepage) on every page of the website, like category & other search page, sidebar titles, related links, etc. So please give me a code like before.
thanks too much for your help.
Bazezew
Hello MamasLT,
It is possible to embed a video in your post content for example. You simply copy and paste the URL video where exactly you want to have it and the theme will render it. Do you have tried it?
Hope this helps and let us know how it goes!
Thanks for your understanding!
Hey, is there a way to override the “GLOBAL BLOCK HEADER TEMPLATE” in specific areas of post templates?
I like the block header template I have selected in the theme settings for most of the site (block header 12),
However I would like to use block header 4 on posts for the RELATED ARTICLES & MORE FROM AUTHOR plus the COMMENTS part of the post templates. Is there a way to change out 12 for 4 in td-related-title & td-comments-title?
Thanks
Hello benjamin,
The sidebars will remain at your front end but the widgets will be inactive. You will find them at the Widgets section in an inactive mode. You should simply re-add them at the widgets. -> https://www.screencast.com/t/3KJJYW8p2uAf
Please check your sidebars in the widgets area and see if there are elements present inside them. WordPress will strip the sidebars of elements if special characters or language specific characters are used in the sidebars. When you create your sidebar, please only use standard letters without symbols such as !@#$%^&*()_}{L{“:>< Let us know how it goes.
As notice: -> https://www.screencast.com/t/iHXii1Mhw0
Hope this helps and let us know how it goes!
Thanks for your understanding!
Hi,
You could try the Automattic AMP plugin if you would like use it on your website. Other plugins have not been tested, you could however search the forum for more information regarding AMP implementations, provided by the theme users.
Thanks
Hello,
when I bought this theme I thought it would be smooth and fast, but after doing the google pagespeed test, it only got a really bad score… You can check it here: https://developers.google.com/speed/pagespeed/insights/?url=bloomingcash.com&tab=desktop
What can I do about?
Did anyone purchase the AMP Newspaper theme? If yes, can the link be shared?
Hi
You can see the thumbnail sizes the Slide element uses, in the theme panel for example
– https://www.screencast.com/t/32RMTxRWh
Thanks
Hi, I want to change the/limit the categories of block 1(don’t miss) block 2(general health block 15(house design) block 1(tech &gadgets). for example in block 1 I want to showcase a,b,c category & not the category d,e,f. Please tell me how to do it.
I get this message:
load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,utils,plupload,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-draggable,jquery-ui-slider,j&load[]=query-touch-punch,iris,wp-color-picker&ver=4.8.1:9 JQMIGRATE: Migrate is installed, version 1.4.1
2.jpg Failed to load resource: net::ERR_CONNECTION_TIMED_OUT
Also I updated max_input_vars from 1000 to 5000 but it won’t show up on the system panel.
What should I do? The other day, I changed the homepame. Can it be that the reason for not working anymore?
Regards
Check Out this link as well for the layout