- NewsmagHeader styles
- NewsmagHeader ads
- NewsmagtagDiv Composer Tutorial
- NewsmagCategory templates
- NewsmagSmart list ads
- NewsmagWeather Widget
- NewsmagInstagram widget
- NewsmagPage Menu
- NewsmagMain menu
- NewsmagTop bar templates
- NewsmagLogin – how to enable the user registration
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagCategory grid styles
- NewsmagCategory top post styles
- NewsmagHow category settings work
- NewsmagTheme colors introduction
Hi,
You need to edit the cloud header with tagDiv Composer and set one of these elements(main menu or sticky menu) to be align like the other one. -> https://i.imgur.com/qN4PFSn.png -> https://i.imgur.com/Bo9AcTg.jpg or https://i.imgur.com/lEJZzCf.png -> https://i.imgur.com/xYjsT9t.png-> https://i.imgur.com/Ddh7u1t.png
Thank you!
That is mighty puzzling. My server meets all your requirements. This is the fifth website I am creating using Newspaper. In the previous four instances, as with this, my server meets all your requirements but yet the plugin failed to connect to your cloud templates. Only when you login into my control panel then it starts working.
What exactly is it that you are doing in there that you won’t let me do on my own?
I’ve emailed you the login details.
P.S. On this occasion, I can access the cloud templates from TagDiv Composer when I am editing the homepage. I can import headers, footers and other sections but it restricts access to single posts templates.
-
This reply was modified 6 years by
terryally.
Hi,
Make sure that the google font weight that you have on cloud header is enable in theme panel -> https://i.imgur.com/pH2tdrW.png in your case I think is 800, then the logo it should look the same
Thank you!
Hello !
For that you will have to edit the header using the tagDiv Composer: https://www.youtube.com/watch?v=HXQQygkCCJo
Thank you !
Hi,
1. Unfortunately to change the size of category title you need to use a custom css like this one -> https://i.imgur.com/GzFYeos.jpg
.category .td-category-header .td-container-border .td-page-title{
font-size: 36px;
}
The code need to be set in theme panel> custom code> custom css.
2. The header color can be set manually with tagDiv Composer -> https://i.imgur.com/yHhGb8z.png indeed Newsmag theme do not has all Newspaper theme functionality, this is a light and ease to use theme.
Thank you!
Hello !
The mobile header menu ( as shown in your photo ) Can be edited by going into Theme Panel, the background image can be changed from Theme Panel – Background; The colors from Theme Colors and unfortunately the menu can’t be fully open.
Thank you !
Good evening. I thank you for your prompt reply.
This instead is the code of td_blok_3:
<?php
// v3 – for wp_010
class td_block_3 extends td_block {
static function cssMedia( $res_ctx ) {
// fonts
$res_ctx->load_font_settings( ‘f_header’ );
$res_ctx->load_font_settings( ‘f_ajax’ );
$res_ctx->load_font_settings( ‘f_more’ );
// module 1 fonts
$res_ctx->load_font_settings( ‘m1f_title’ );
$res_ctx->load_font_settings( ‘m1f_cat’ );
$res_ctx->load_font_settings( ‘m1f_meta’ );
}
public function get_custom_css() {
// $unique_block_class – the unique class that is on the block. use this to target the specific instance via css
$unique_block_class = $this->block_uid;
$compiled_css = ”;
$raw_css =
“<style>
/* @f_header */
.$unique_block_class .td-block-title a,
.$unique_block_class .td-block-title span {
@f_header
}
/* @f_ajax */
.$unique_block_class .td-subcat-list a,
.$unique_block_class .td-subcat-dropdown span,
.$unique_block_class .td-subcat-dropdown a {
@f_ajax
}
/* @f_more */
.$unique_block_class .td-load-more-wrap a {
@f_more
}
/* @m1f_title */
.$unique_block_class .td_module_1 .entry-title {
@m1f_title
}
/* @m1f_cat */
.$unique_block_class .td_module_1 .td-post-category {
@m1f_cat
}
/* @m1f_meta */
.$unique_block_class .td_module_1 .td-module-meta-info,
.$unique_block_class .td_module_1 .td-module-comments a {
@m1f_meta
}
</style>”;
$td_css_res_compiler = new td_css_res_compiler( $raw_css );
$td_css_res_compiler->load_settings( __CLASS__ . ‘::cssMedia’, $this->get_all_atts() );
$compiled_css .= $td_css_res_compiler->compile_css();
return $compiled_css;
}
function render($atts, $content = null) {
parent::render($atts); // sets the live atts, $this->atts, $this->block_uid, $this->td_query (it runs the query)
if (empty($td_column_number)) {
$td_column_number = td_global::vc_get_column_number(); // get the column width of the block from the page builder API
}
$buffy = ”; //output buffer
$buffy .= ‘<div class=”‘ . $this->get_block_classes() . ‘ td-column-‘ . $td_column_number . ‘ td_block_padding” ‘ . $this->get_block_html_atts() . ‘>’;
//get the block js
$buffy .= $this->get_block_css();
//get the js for this block
$buffy .= $this->get_block_js();
// block title wrap
$buffy .= ‘<div class=”td-block-title-wrap”>’;
$buffy .= $this->get_block_title(); //get the block title
$buffy .= $this->get_pull_down_filter(); //get the sub category filter for this block
$buffy .= ‘</div>’;
$buffy .= ‘<div id=’ . $this->block_uid . ‘ class=”td_block_inner”>’;
$buffy .= $this->inner($this->td_query->posts); //inner content of the block
$buffy .= ‘</div>’;
//get the ajax pagination for this block
$buffy .= $this->get_block_pagination();
$buffy .= ‘</div> <!– ./block –>’;
return $buffy;
}
function inner($posts, $td_column_number = ”) {
$buffy = ”;
$td_block_layout = new td_block_layout();
if (empty($td_column_number)) {
$td_column_number = td_global::vc_get_column_number(); // get the column width of the block from the page builder API
}
$td_post_count = 0; // the number of posts rendered
$td_current_column = 1; //the current columng
if (!empty($posts)) {
foreach ($posts as $post) {
$td_module_1 = new td_module_1($post, $this->get_all_atts());
switch ($td_column_number) {
case ‘1’: //one column layout
$buffy .= $td_block_layout->open12(); //added in 010 theme – span 12 doesn’t use rows
$buffy .= $td_module_1->render($post);
$buffy .= $td_block_layout->close12();
break;
case ‘2’: //two column layout
$buffy .= $td_block_layout->open_row();
$buffy .= $td_block_layout->open6();
$buffy .= $td_module_1->render($post);
$buffy .= $td_block_layout->close6();
if ($td_current_column == 2) {
$buffy .= $td_block_layout->close_row();
}
break;
case ‘3’: //three column layout
$buffy .= $td_block_layout->open_row();
$buffy .= $td_block_layout->open4();
$buffy .= $td_module_1->render($post);
$buffy .= $td_block_layout->close4();
if ($td_current_column == 3) {
$buffy .= $td_block_layout->close_row();
}
break;
}
//current column
if ($td_current_column == $td_column_number) {
$td_current_column = 1;
} else {
$td_current_column++;
}
$td_post_count++;
}
}
$buffy .= $td_block_layout->close_all_tags();
return $buffy;
}
}
This is the code for sharing social icons:
<?php if (function_exists(“essb_custom_position_draw”)) { essb_custom_position_draw(positionID, alwaysShow); } ?>
my question is: in which position should this code be inserted?
The last newspaper theme update removed footers and blocks (I only have the Flex blocks as an option), removed all my header changes, and who know what else. How do I get them back? The code for my home page is fine, it’s just not rendered as the blocks it refers to are not there.
Hi, I need help:
They do not load images in all template (header, footer, etc..).
ej: https://barmagazine.cl/wp-content/uploads/2020/05/error-update-img-1.jpg
Hi,
I have imported the header Law Firm and changed the logo on desktop version, but when checking the website via mobile (mobile plugin is disabled btw) I still see the logo from Law Firm demo.
Hi there, I created some pages, but they all use the H4 header, and I want to change it to H1 for SEO purposes. How can I do this? I do not see any options in the Element options area to change it to H1 for SEO.

Hi, still tweaking….
1) The titles/headers at the top of the category pages are too small for my taste. How do I cahnge the font size? Can’t find anywhere in the Theme Panel and the CSS seems to use a shortcode (zoompage fontsize=”26″).
2) I saw in the Newspaper theme (I have Newsmag) that there is a Theme Panel setting (Theme Colors) to set the background color of the Block/Module headers. There is no such opiton in Newsmag. Is there one place I can do this? (I actually added extra CSS in Appearance > Customize that does this, but would prefer to have a Theme Panel option.) Why doesn’t Newsmag have the same option as Newspaper?
Hi,
I have imported the header Law Firm and changed the logo on desktop version, but when checking the website via mobile (mobile plugin is disabled btw) I still see the logo from Law Firm demo.
Hello! I’ve created a page with content just as I’d like and now want to duplicate that page and tweak content for other topics – I’m sure this is simple but I can’t seem to figure it out. I know how to create templates and have done so to insert header and footers on each page but how can I duplicate a page that is not a template?
Thank you!
Hi, when I am going to Theme panel>ADS section than go to Header AD and put the code, but my AD code is not saved and, Advertisement not show on the website.
Hi, I want to have a menu that is exactly like the example in your Sports header. https://demo.tagdiv.com/newspaper_sports_pro/header-preview/
In this example, if you see under the Menu option called “Football”, you will see that instead of a Mega Menu, there are three columns that have Gossip, Leagues & Cups etc. Under them there are articles. How can I design a menu like this?
Also, for the same example, how can I make the menu sticky from the Template editor?
Thanks.
Hello!
When using a fixed header and clicking on named anchors (e. g. to the comments section of a post), the problem is, that the anchored text is not visible, because it is right under the fixed header. Is there a solution for this? Any trick that lets the anchor appear right under the header?
Hi!
In Impacto TIC (impactotic.co) we had to reinstall WordPress from scratch to solve some serious flaws. The site is almost completely new, but it is throwing me several TD Composer (Standard Pack?) related errors … Can you help me?
Some of those errors are:
[16-May-2020 01:44:30 UTC] PHP Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /home/admin/web/impactotic.co/public_html/wp-content/plugins/td-composer/legacy/common/wp_booster/td_util.php on line 1166
[16-May-2020 01:44:30 UTC] PHP Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /home/admin/web/impactotic.co/public_html/wp-content/plugins/td-composer/legacy/common/wp_booster/td_util.php on line 1167
[16-May-2020 01:44:46 UTC] PHP Warning mysqli_real_connect(): (HY000/1203): User admin_admin already has more than ‘max_user_connections’ active connections in /home/admin/web/impactotic.co/public_html/wp-includes/wp-db.php on line 1626
[16-May-2020 01:47:20 UTC] PHP Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /home/admin/web/impactotic.co/public_html/wp-content/plugins/td-composer/legacy/common/wp_booster/td_util.php on line 1166
[16-May-2020 01:49:51 UTC] PHP Warning getimagesize(https://impactotic.co/wp-content/uploads/2020/05/Logo-Impacto-TIC-2020-544px.png): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/admin/web/impactotic.co/public_html/wp-content/plugins/td-cloud-library/shortcodes/header/tdb_header_logo.php on line 792
Thanks in advance
Hello, I am having a good time with the theme so far but I’d like some help with the issues below:
- Custom fonts are not working and all headers on my homepage staging.almostrealthings.com are Roboto instead of selected font in the theme panel.
- The fonts under the “Pages” font category are not applying correctly to any of my “Text with Title” elements.
- The magazine spread mockup image on my homepage staging.almostrealthings.com won’t center and shrinks to 696px instead of the 1068px size that it should be on full desktop view.
- The footer looks perfect on all pages but the styling gets messed up on the article posts: example (magazine covers are not laid out in 4 columns, padding on the subscribe box is different, bottom black bar with copyright and menu list has weird spacing.
Thank you!
Hi,
The “Header style” (different options for a Header), is not appearing under “Header” while selecting -No template- at “Cloud Library Template”.
Just in case, the only plugins “Active” are: tagdiv Composer, tagdiv Cloud Library and tagdiv Social Counter.
Could you help me with this?
Thanks,
Guillermo
Hello, our menu is correctly displaying inline with the logo on our site’s home page (https://regulatory.news/), but is incorrectly expanding and not inline with the logo on individual posts, such as this one here: https://regulatory.news/sec-announces-new-investor-advisory-committee-members/. In both locations, we’re using the same menu, which is a modified version of td-demo-header-menu. Any suggestions on how we can fix this issue?
Thanks for the help!
The font weight in my header is lighter when a post is shown
http://www.indeksinvest.dk/hej-verden/ than when a page is shown
http://www.indeksinvest.dk/skat/ (correctly)
I cannot figure out why, I have only one header that I manage in my cloud library.
Thanks for your help
I just found mydomain.com/page/2/ in the google index. However, I have not created this page? How to stop this? When i open the link, it shows blank page with only header and footer. This is a serious SEO issue.
Hello,
In my website eastsidenews.org, I am using Mobile+Amp settings in Theme Panel and the links in the menu that are pages are not opening the page with the content, just the header and footer. However, Photo Gallery is opening but I noticed that it is referring to the Category, not the page. Everything works correctly on me desktop. I’m wondering if the menu must link only to the category and not a page, but that seems a little limiting.
Take care,
Gary
I need your help, I have sponsored content packages and I need it to be shown in the posts that appear on the main page or in the header of the post itself, how could I do it?
The other is how do I create new classes in the posts or pages?
Try the advanced section of a post block and nothing is not