- TutorialsDefault Block Settings Guide
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsOffset Feature
- TutorialsWhat is Ajax preloading?
Hello, my site is running normally, but i can see this error in apache linux error.log file.
[Thu Aug 11 22:16:21 2016] [error] [client 127.0.0.1] PHP Fatal error: Call to undefined function get_header() in /var/www/mysite.com/public_html/wp-content/themes/Newspaper/index.php on line 6, referer: http://www.mysite.com/wp-content/themes/Newspaper
I can fix it using with:
<?php
if ( function_exists("get_header") ){
echo "The code";
}else{
echo "Show error";
}
?>
But if i do this, in the next update this will be overwritten.
Thanks.
Hi,
Any idea to make popular tag block like this http://prnt.sc/c4nh6s
And make block like this http://prntscr.com/c4nj2k
Thank you
I am using Big Grid 8 with Grid Style 3 – Flat Colors for my home featured area. I want to remove edit link on hover for that grid block.
How can I remove edit link from that block? See image below or check out website http://question2answer.club/

Hello,
I am wondering if there is a way to have a “View All” type of button feature added to the options for the Content Blocks.
For example, on the demo site: http://demo.tagdiv.com/newspaper/ — there is a block style 16 for the topic of “House Design” which displays 3 articles. Let’s say that House Design is a category, so these articles are being pulled in for this category. Well, I would like to be able to have a ‘View All’ or ‘View More’ button which links to the ‘House Design’ category page. Essentially bringing the user to view all the articles for that category.
I am surprised this is not a feature already, or maybe it is and I overlooked it. But this is REALLY important for us. If this is not a feature, I guess we will custom build this, but ideally we would like this offered in the theme.
Can anyone advise if this is an option in the theme? Or theme developers – could this get added in the future?
Thank you in advance for your help and feedback.
Thanks,
Lauren
I did change the “size” there where you are pointing, but it didn’t work! Maybe I am looking at the wrong one.
You can go to my home page at http://evolved-consciousness.com/ and go to the LATEST, and that is the block I am trying to test out different font sizes. I know it is a block 4, but when I changed those module-2 settings, sizes didn’t change. Is there something else I need to do to make the sizes change? For example, when I changed the thumbnail size, I had to manually rebuild the thumbnails.
I literally went in there and changed every single module “size” column and nothing on my site changed!
Hello,
Unfortunately block 9 can only be on 1 row in a 1/3 column. (a sidebar) On a main column (1/1) or 2 columns, (2/3) the block will have 2 columns.
As an alternative, if you require a block with no featured image and on a single column, you can use block 11 and this css to customize it:
.td_block_11 .td-module-thumb{
display:none!important
}
.td_block_11 .td_module_10 .item-details{
margin-left: 5px;
min-height: 50px;
}
Result: http://screencast.com/t/0ZpsM637d
Thank you!
i know this option and is working great. But that mean i must make a block for each category and i have 30 different category.
Can you please advise if it is possible to make block 9 http://i.imgur.com/kCDjhkN.png be in 1 row instead of default 2 rows http://i.imgur.com/g1eS9le.png ?
Hi,
I am getting this error when i am trying to access the wordpress admin
block
Warning: Cannot modify header information – headers already sent by (output started at /home/dharma/public_html/wp-content/themes/Newsmag/includes/td_config.php:1) in /home/dharma/public_html/wp-includes/pluggable.php on line 1224
Regards,
Nigel
Hello tsaim,
If you are using the Block 4, please notice that this element use Module 2 as you can see here -> http://screencast.com/t/OTxyOX6jNi and from Theme panel->Theme Fonts you will have to change the Module 2 settings -> http://screencast.com/t/Gt8Es9Oij
If is not what you mean, please provide more details.
Thanks.
Hi, i have just noticed, since i updated my site that i have no thumbs on my mobile site when viewed on my android phone, it says enable thumbs from block/module, and i have sign in turned off but it is still there and my ads have disappeared…..ive reinstalled mobile plugin and regenerated thumbs and rechecked all sliders in theme panel but it still remains the same?
thanks
Salut,
Am inspectat site-ul tau si am vazut blocul despre care este vorba. Din pacate, eu nu pot sa stiu ce fel de setari ai aplicat pentru acest tip de bloc. Ce poti face este sa te uiti in Block Settings in back-end si sa setezi blocul dupa aceleasi setari si pe pagina cealalta unde doresti sa afisezi acest block. Din ce vad, tu ti-ai facut ceva customizari separate la blocuri deoarece apar clase diferite, dupa cum se poate vedea aici -> http://screencast.com/t/Aojr8xKp nu? No nu avem nici o clasa care se termina in _go ??
Pentru mai multe informati despre cum poti sa iti setezi un block, te rog sa verifici documentatia noastra aici -> https://forum.tagdiv.com/block-settings-tutorial/
Pentru a doua intrebare, daca vrei sa afisezi ceva content dupa continutul paginii de categorie, tu trebuie sa modifici fisierul category.php si sa adaugi codul cu do_shortcode in aceasta regiune -> http://screencast.com/t/lafvDBVjA6mO in functie de ce caz folosesti, referitor la sidebar.
O zi faina in continuare!
Hi
This cannot be done easily using wp-queries but instead you can use post limit filed from block’s settings and set it to 1: http://screencast.com/t/75BipsxW7
If this is not what you mean please provide more details about the desired result so I can get back to you with a more accurate answer, also provide your site url.
Thanks!
Hi
This is possible only by editing theme’s core files. Basically you can use do_shortcode function in tag.php file to echo out the any shortcode. Here is an example: http://screencast.com/t/s57r7YsPsc7 – http://screencast.com/t/7XBJjINJwa – http://screencast.com/t/Mf12GLqR
<?php
if (is_tag('tag1')) {
echo do_shortcode('[vc_row][vc_column][td_block_14 category_id="33" limit="3"][/vc_column][/vc_row]');
}
?>
I’ve used is_tag() function to display this shortcode only on tag1 tag page. You can remove the condition if you want the same shortcode on all tag pages or you can extend it if you a specific shortcode for each tag page. Just pass tag’s name as a parameter for is_tag() function.
Hope this helps.
Thanks!
Hello Gadgetsay,
Please notice that all the styles for your blockquote can find in Post Editor when you edit your article, like this -> http://screencast.com/t/qhxtlF9M or also, you can use a bit of CSS code to change the color or these. For more information about these options, please check here -> https://forum.tagdiv.com/post-formats-for-tinymce/
Thanks for your understanding!
I am having a hell of a time identifying the different elements and trying to change font sizes/styles. I used a BLOCK 4, on a default template. that default template is set as home page. I am trying to edit the font size of titles. Where the heck is this setting??
I am under theme fonts but there are so many options and what I think was right, wasnt, and I have tried changing like 6 different places nothing has worked!! Dont understand what these do because I have changed font sizes to absurd numbers and nothing on my site has changed.
Hi there.
Im doing my 1st web ever, and i bought your theme. Im amazed, good job. But i have some problems with the “phone display”. Im in love/hate with the mobile theme, so maybe you can help me out:
1- I really love the mobile theme in terms of the POSTS. Its really clean, and no sidebar showing up (which i consider innecesary on phones). Everything is clear and fast.
BUT! The homepage… its waay simple for me. I know are able only to put the grid to features posts, and the “last articles”. But im missing so much things, even the slider revolution which gives nice visual.
In the other hand, if i desactivate the mobile theme plugin, i really like the homepage shown, but the Posts are way more chaotic with the sidebar in the botton. Even for Ads, i think is way simpler to add them with the plugin On.
So… what can i do? I mean, there is a way to have everything set up with the plugin, except the homepage? Or is just impossible?
2- I didnt want some social icons, so i read the forum and found that CSS text which hide the unnecesary ones.
The problem is, when i update the POST in the mobile (with NO PLUGIN), it shows all the icons for 1 second, and then it hides the unnecesary ones. Call me maniac, but i really dont like that xD
Notice that if i activate the mobile theme plugin, go to theme panel->mobile theme->custom CSS and put the code, when i refresh the post its perfect. It doesnt show anything else than the icons i want.
And in the desktop, it depends. Sometimes it show them for 0.5 secs only, and then dissapear.
How can i solve this? Instead of hiding the icons that i dont want, its possible delete them? Maybe i have no issues if i do that. (I know is a bit of maniac, but…xD)
3- As i said in point 1, i really dont like sidebars on phone view. Thats why i want the mobile theme plugin (for me perfect in 95%) with the homepage from desktop version.
In case you cannot provide me a solution, ill have to put the sidebar. My intention was to put 1-2 Ads (from adsense) on that spot, in post pages. But i want to have a smart sidebar, cause my posts are long and it feels empty when you start to go down on the web and see nothing on the right.
But i read that i cannot put adsense on smartsidebar, so… my question is. Can i put on static ad from adsense in the begining of the sidebar (like a normal sidebar), and then a smart sidebar which goes down when you are reading?
I dont know if i express good enough: I want a post page. With a add in the beginning of the sidebar side, static, in the up side. And just below that add, one smart sidebar (with social counters, blocks, etc…) which goes down keeping always the right side “busy”. But the Add is staying in the up side.
———————–
Sorry for all the wall of text, and sorry for my poor english.
Thanks in advance. I really hope for a positive solution for the point 1 🙂
I’m using Block 14 on my page dev.ntv.ca. Is was working fine, but now this is happening.
https://drive.google.com/file/d/0ByYKnygx9BswS1loejVKVWx5YUE/view?usp=drivesdk
the Entry Titles aren’t wrapping and the second article isn’t in line with the first … which is proboly a related issue.
Hi, which block did you use to implement the beautiful animated image header with 4 posts in the Politics Demo?
http://demo.tagdiv.com/newspaper_politics/
thanks!
Please take a look at this website and you will see the images on my big grid is not scaled properly.
http://staging.ghanalinx.com/
I believe the link you sent was talking about thumbnails within blocks
thanks
Inca o intrebare : incerc sa modific td_category_template_7.php, vreau sa adaug un bloc prin do_shortcode (dupa sfatul tau). Problema este ca blocul se afiseaza inainte de lista de posturi, si nu dupa ele, cum as dori.
<h1 itemprop="name" class="entry-title td-page-title"><?php echo parent::get_title(); ?></h1>
<?php echo parent::get_description(); ?>
</div>
<div class="td-pulldown-container"><?php echo parent::get_pull_down(); ?></div>
</div>
</div>
<?php echo do_shortcode('[vc_row][vc_column][td_block_big_grid_5_go td_grid_style="td-grid-style-5" installed_post_types="page"][td_block_big_grid_4 installed_post_types="page"][/vc_column][/vc_row]'); ?>
-
This reply was modified 10 years by
Catalin.
I want to change the style of Blockquote, how can I change it, how many styles you have currently so that I can place it on my theme!
Thank You!
Admin
Hello Catalin i did this but still the line is there…
/* max width – content + sidebar */
/*html .mceContentBody {*/
/*max-width: 696px;*/
/* margin-left: 24px;*/
/*margin-right: 24px;*/
/*background: #ffffff url(‘images/editor-style/grid-sidebar-desktop.gif’) repeat-y left top;*/
/*font-family: Verdana, Geneva, sans-serif;*/
/*position: relative;*/
/* responsive Landscape tablet */
/*}
/*html .mceContentBody:after {*/
/*content: ‘SIDEBAR’;*/
/*color: #ccc;*/
/*position: absolute;*/
/*right: -50px;*/
/*top: 0;*/
/*display: block;*/
/*width: 10px;*/
/*word-break: break-all;*/
/*}*/
Hi Catalin
I have taken some screen dumps of sections of the site as we are currently working on it so it’s not visible online yet. See http://dropbox.tomorrowmanagement.com:7000/sharing/GSS2DFnPo
My question is:
1) Is it possible to center the title on the images/article teasers on the slider?
2) Is it possible to center the title + tags, categories etc on the teaser of an article when using your block layout?
3) Is it possible to center the title + tags, categories etc. on a post but only on the section of the post – not the entire page, eg when having a column to the right we dont want the title to go above the column section, but only to be centered over the article/post.
Thank you 🙂
Hello,
I just upgraded my staging website to test the new 3.1 version.
Production website (v2) : http://www.goldengeek.net/
Staging (v3.1) : http://goldengeek-dev-goldengeek.pf2.wpserveur.net/
It broke my site :/ Right and left paddings has been added on every blocks (i don’t know why ? it just breaks everything…), and the header is completly broken too …
I followed the guides to update the Theme (with Envato plugin) and Visual Composer.
Could you please help me, so i can upgrade my production website to v3.1 ?