- NewspaperCreate Custom Code with the browser’s Inspector or the Live CSS Box
- NewspaperScroll Animation
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperHow to setup Twitch for Social Counter
- NewspaperModal Popup
- NewspaperFlex Block Settings Guide
- NewspaperAutoptimize Plugin – install and configuration
- NewspaperAdding Multiple Authors to Your Articles
- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperBig Grid Flex Settings
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewspaperUsing Other Ads
- NewspaperBlock settings tutorial
- Using custom fonts
- Using typekit fonts
- NewspaperChild Theme Support
- NewspaperHow to Make the Site Faster
Hi,
From what I fond the the plugin that you are using will set the shortcode where will find a specific code for content, using a footer page the content will be display two times, first for the actual posts/page and second time for the footer page, indeed this is not very good, I’ve made a note to our developers for this situation.
Unfortunately for the moment the only solution is to use custom css to hide it.
Thank you for your understanding and sorry for the inconvenience!
So you are saying there is no CSS we can use to keep the authors name and meta details on a single line instead of it breaking into a new line?
Hi everyone,
I have 2 problems:
1. no scroll of mega menu in sticky version. I tried to insert this CSS in theme panel:
.tdb_header_mega_menu .block-mega-child-cats {
max-height: 335px;
overflow: auto;
}
but still not working. I tried to change the height (200) but still not scroll.
2. When a page is preloading, in the first few seconds my logo text font in the header appears like times new roman but I choose Poppins font. I insert poppins font in tag divi composer and also Theme panel> theme font>header>text logo. Still not working. This problem not happens with tagline!
Any suggestions?
Thanks you all.
Hey Calin, thanks for the reply.
below is a screenshot of my cpt. It’s an event page from All In One Calendar.
When selecting a footer page, That circled part ends up repeating itself just above the footer as if it’s part of the footer. I say that since it spans the entire page (stretched across the width just like the footer).
———————————
As a solution, instead of choosing a global footer, I created one within my cloud template and then used CSS to hide your “© Newspaper WordPress Theme by TagDiv” that appears at the bottom of my CPT pages.
BUT, it’d be nice if the above problem was fixable.
Thanks
I am using vps server and using only 4 plugins, it should give ve 100 score. But Pagespeed is asking to remove unused css from your theme. What are those css style that are not in use?
Hey!
Trying to create a custom block via API and the plugin I’ve made for it but get Fatal errors.. Please advise:
Here’s the error (it occurs twice):
[20-Jan-2020 10:44:25 UTC] PHP Fatal error: Uncaught Error: Class ‘elab_block_01’ not found in /–/wp-content/plugins/td-composer/legacy/common/wp_booster/td_global_blocks.php:33
Stack trace:
#0 /–/wp-content/plugins/td-composer/legacy/common/wp_booster/td_global_blocks.php(27): td_global_blocks::get_instance(‘elab_block_01’)
#1 /–/wp-includes/shortcodes.php(325): td_global_blocks::proxy_function(”, ”, ‘elab_block_01’)
#2 [internal function]: do_shortcode_tag(Array)
#3 /–/wp-includes/shortcodes.php(199): preg_replace_callback(‘/\\[(\\[?)(elab_b…’, ‘do_shortcode_ta…’, ‘[elab_block_01]’)
#4 /–/wp-content/plugins/td-composer/includes/tdc_ajax.php(246): do_shortcode(‘[elab_block_01]’)
#5 /–/wp-includes/rest-api/class-wp-rest-server.php(946): tdc_ajax::on_ajax_render_shortcode(Object(WP_REST_Request))
#6 /–/wp-includes/rest-api/class-wp-re in /–/wp-content/plugins/td-composer/legacy/common/wp_booster/td_global_blocks.php on line 33
And here’s my plugin:
class elab_td_api_plugin {
var $plugin_url = ”;
var $plugin_path = ”;
function __construct() {
$this->plugin_url = plugins_url(”, __DIR__); // path used for elements like images, css, etc which are available on end user
$this->plugin_path = dirname(__DIR__); // used for internal (server side) files
add_action(‘td_global_after’, array($this, ‘elab_td_global_after’)); // hook used to add or modify items via Api
add_action(‘admin_enqueue_scripts’, array(‘elab_td_api_plugin’, ‘elab_td_plugin_wpadmin_css’)); // hook used to add custom css for wp-admin area
add_action(‘wp_enqueue_scripts’, array(‘elab_td_api_plugin’, ‘elab_td_plugin_frontend_css’)); // hook used to add custom css used on frontend area
}
static function elab_td_plugin_wpadmin_css() {
wp_enqueue_style(‘elab-td-plugin-framework’, plugins_url(”, __DIR__) . ‘/admin/style.css’); // backend css (admin_enqueue_scripts)
}
static function elab_td_plugin_frontend_css() {
wp_enqueue_style(‘elab-td-plugin-framework’, plugins_url(”, __DIR__) . ‘/css/style.css’); // frontend css (wp_enqueue_scripts)
}
function elab_td_global_after() {
td_api_thumb::add(‘elab_320x480’,
array(
‘name’ => ‘elab_320x480’,
‘width’ => 320,
‘height’ => 480,
‘crop’ => array(‘center’, ‘center’),
‘post_format_icon_size’ => ‘small’,
‘used_on’ => array(
‘Inimesed’
)
)
);
td_api_thumb::add(‘elab_80x120’,
array(
‘name’ => ‘elab_80x120’,
‘width’ => 80,
‘height’ => 120,
‘crop’ => array(‘center’, ‘center’),
‘post_format_icon_size’ => ‘small’,
‘used_on’ => array(
‘Loetelud’
)
)
);
td_api_module::add(‘elab_module_01’,
array(
‘file’ => $this->plugin_path . “/modules/elab_module_01.php”,
‘text’ => ‘ELAB Module 01’,
‘img’ => $this->plugin_url . ‘/images/modules/elab_module_01.png’,
‘used_on_blocks’ => array(‘elab_block_01’),
‘excerpt_title’ => 12,
‘excerpt_content’ => 25,
‘enabled_on_more_articles_box’ => true,
‘enabled_on_loops’ => true,
‘uses_columns’ => true, // if the module uses columns on the page template + loop
‘category_label’ => true,
‘class’ => ‘td_module_wrap td-animation-stack’,
)
);
td_api_block::add(‘elab_block_01’,
array(
‘map_in_visual_composer’ => false,
‘map_in_td_composer’ => true,
“name” => ‘ELAB Block 01’,
“base” => ‘elab_block_01’,
“class” => ‘elab_block_01’,
“controls” => “full”,
“category” => ‘Blocks’,
‘tdc_category’ => ‘Blocks’,
‘icon’ => ‘icon-pagebuilder-elab_block_01’,
‘file’ => $this->plugin_path . ‘/shortcodes/elab_block_01.php’,
“params” => array_merge(
td_config::get_map_block_general_array(),
td_config::get_map_filter_array(),
td_config::get_map_block_ajax_filter_array(),
td_config::get_map_block_pagination_array()
)
)
);
}
}
new elab_td_api_plugin();
Thanks in advance!
Hi,
The “Magazine” from LA MODE menu is a page, it cab be edit using the tagDiv Composer -> https://i.imgur.com/Yax84TF.jpg, click on image and check in composer in css tab the background image -> https://i.imgur.com/jlhijTz.jpg on othere elemnts -> https://i.imgur.com/Eio6v2u.png
Hope this will help you!
Thank you!
Hey there,
I think the theme should support Linkedin or at least there should be an easy option to customize. Very poor if you ask me!
However, until the guys get this sorted you could fix this with CSS just using another channel like Pinterest and change colour and icon with it.
Let me know if you need more help with this.
Cheers,
Torsten
-
This reply was modified 6 years by
vollwebdesign.
Hi,
1. Did you try the theme panel settings ?
Because there is no css for header.
2. Did you try to stretch the row with tagDiv Composer -> https://i.imgur.com/6a63GpG.jpg
3. That plugin is not bought is provide by the Newspaper team, the WPBakery ( old Visual Composer ) is a bundled one -> https://help.market.envato.com/hc/en-us/articles/213762463-Bundled-Plugins if you download the latest version of Newspaper theme from your themeforest account then you’ll find the plugin inside the packages, this will have the old name js-composer.
4. Now the theme builder is tagDiv Composer, using the tagDIv Composer and visual composer on standard pack should work normal, only if you activate the tagDiv Cloud Library and use cloud templates, this theme extension was build for tagDiv Composer and is not compatible with visual composer, also we do not recommend to use on the same page more then one builder.
Thank you!
I am having exactly the same error plus no images on main page grid blocks.


Why there is opacity: 0 in the css file?
Best regards.
Hello !
This issue may come from a small plugin conflict either between WPML and Newspaper theme or wordpress. We will investigate this and see what can be done but at the moment you can use that CSS.
Thank you !
Hello !
That image can be changed by editing the page using the tagDiv Composer and edit the ROW Css tab as you can see here: https://www.screencast.com/t/wjgluxjaoEy In order to edit your page using tagDiv Composer click here: https://www.screencast.com/t/f6lAVvJSlIsS
Thank you !
Hello !
Please use this custom css code: .td-image-gradient:before {
background: transparent;
}
The code must be inserted here: https://www.screencast.com/t/J1Nxw5s5
I hope this was helpful !
Thank you !
Hello,
I bought the theme today but it seems it doesn’t meet the requirements. The following are the details –
1)Speed
To build a faster site, I have installed LAMP from the Digitalocean.com marketplace and installed your theme with a fresh WordPress installation.
I didn’t import any demo but create a simple homepage using the tagDiv Composer and also installed only these plugins – tagDiv Composer, Akismet, WP rocket and Yoast SEO.
I am only using 4 plugins but there is still getting some speed errors in different speed test tools.
FOR PAGESPEED INSIGHT
a. remove unused CSS
b. serve images in next-gen formats
c. Reduce server response times (TTFB) which is 0.29 sec
check this screenshot: https://prnt.sc/qoxt3l
FOR GTmertix
a.Leverage browser caching – 52 grade which is taking care by wp rocket.
b. optimize images
However, waterfall just loading 1 css, 2 js internal, 1 font file and 7 images.
Check the report here: https://gtmetrix.com/reports/gyantimes.in/TH71VBlG
I have also followed your guide available at https://tagdiv.com/how-to-increase-page-loading-speed/. Unfortunately, i found no improvements.
2) There is no options in the theme panel to change the footer copyright after disabling tagdiv standard pack plugin. screenshot: https://prnt.sc/qoy62e
3) Post sharing plugins only showing nevada green button.
However, I am using the simple feature that a default wordpress theme can provide but still i paid $62
This is not a small amount for me to invest in a starting website.
Hi,
For Font Please try this custom css -> https://i.imgur.com/vkVDKns.png
.search .no-results h2 {
font-family: "Roboto Condensed";
}
Thank you!
Hi,
1. Unfortunately in our theme there is no option to change the author name from url, maybe this can be achieve with some plugins or custom work.
2. From what I can see the footer page is ok, the only think that I see is that you have the logos to closer -> https://i.imgur.com/GtlHZuN.png you can edit it with tagDiv Composer -> https://i.imgur.com/IqO6vzE.png
3. You’ll need to use the tagDiv Composer -> https://tagdiv.com/tagdiv-composer-page-builder-basics/ edit the header template -> https://i.imgur.com/SxHCTDj.png -> https://i.imgur.com/h0BNyrz.png -> https://i.imgur.com/043Ofl9.png -> https://i.imgur.com/N6RsbcE.png for the background image check the background image from css tab from the row -> https://i.imgur.com/fxBlEJv.png
Thank you!
Hi Vlad
I’ll follow your direction and update here.
Is this a main css issue with newspaper? What is causing that? Will there be full fix in the next update?
1. I changed it from style 6 to style 3 multipurpose but still see the black load
Here are my custom css. I believe one or some of the custom css are causing this
@media (max-width: 767px){
.td-scroll-up {
display: block!important;
}
}
.td-post-category, .td-entry-category, .td-big-grid-meta .td-post-category, .td-module-comments{
background-color:#a00000;
}
.td-instagram-main{
border-bottom:9px solid #d93a00;
}
.td-scroll-up{
background-color: rgba(68,68,68,0.45)!important;
}
.td-module-comments{
background-color:#a00000;
}
@media (max-width: 767px){
.td-main-content-wrap {
padding-top:0;
}
}
.td-module-comments a{
background-color:#cecece!important;
}
.mycustomclass span{
background-color:#222222!important;
}
.mycustomclass{
border-color:#222222!important;
}
.td-icon-star, .td-icon-star-half, .td-icon-star-empty{
color:#d93a00;
}
.td_module_6 .entry-title{
font-weight: 500!important;
}
.widget_display_topics{
margin-bottom: 23px!important;
}
.widget_display_forums{
margin-bottom: -36px!important;
}
@media(max-width: 767px){
.td-footer-instagram-container .td-footer-instagram-title .td-footer-instagram-user-link{
display:initial!important;
}}
.td-search-wrap-mob .td-search-input span{
font-size: 30px!important;
}
@media (max-width: 767px){
.td_block_big_grid_12 .td-big-grid-wrapper .td-big-grid-post:last-child .td-module-thumb {
margin-left: 0px!important;
}}
2. I have changed it to big grid full but still not showing full width. Help?
3. If the new one is called WPBakery, am I still not supposed to have a copy of it since I bought it with the theme? Or I have to pay for it?
4.Won’t using TD Composer and WP Bakey cause conflicts? I used to only use visual composer and now youve asked me to use tp composer to change big grid settings
Hi, I need to remove the gray line in the footer. this is what I see as the css related to it but when I put it as dsiplay none it does nothing
.td-footer-bottom-full .td-container:before {
content: ”;
height: 1px;
background-color: rgba(255, 255, 255, 0.1);
position: absolute;
top: -50px;
width: 80%;
left: 50%;
margin-left: -40%;
}
Hi,
Please notice that deactivating the standard pack will not make the site very fast, the speed will increase because will be load only the css that is use, but the website still need to be optimize, because the speed of your website depends on how well your website is optimized, if you follow the steps which are presented in this tutorial here -> https://tagdiv.com/how-to-increase-page-loading-speed/ you’ll be able to increase the speed of your website.
Also you can check this similar topic for more solutions: -> https://forum.tagdiv.com/topic/optimize-script-to-improve-site-speed/
Thank you fr your understanding!
Hi,
1. I think that you are using header style 6 or multipurpose style 3.
Now the css code that you have in Theme panel is not for the menu background, this is set from theme panel> theme colors -> https://www.screencast.com/t/FPN29npU also now you can use cloud headers from tagDiv Cloud library and you can edit them using the theme builder, tagDiv Composer.
2. So in order to have the grid stretch on full width you’ll need to use the tagDiv Composer, edit the page and set a Big Grid Full -> https://i.imgur.com/1wvFEnc.jpg
Big Grid Flex Settings -> https://forum.tagdiv.com/big-grid-flex-settings/
Block settings tutorial -> https://forum.tagdiv.com/block-settings-tutorial/
3. The Visual composer that you are using is an old version, now the update version is WPBakery, but we recommend to use it with our theme only if you do not use cloud templates ( using cloud templates with WPBakery can create conflicts).
Also you can check more in our documentation from here(new documentation) -> https://tagdiv.com/category/documentation/ and from here( old documentation ) -> https://forum.tagdiv.com/newspaper-theme-documentation/
Hope this will help you!
Thank you!
Hi,
Please provide some more details and screenshots about on what elements on pages you want to apply that custom css, in this way I will adapt the code for your needs.
Thank you!
Hi
I have design a wordpress site using the Newspaper with TD Composer. In many pages I have set a background image on the top of those pages. When i try to migrate this site to productive url, those backround images doesnt working. I found that on those pages it stored in wp_posts table, the requested image after the tdc_css tag using base64 format. I have aproximatly 1600 pages that I need to change. Is there any option that i can use to change the url in bulk mode?
Thank you in advance.