- ApiPractical example – How to add a new Block and Module
- Apitd_api_top_bar_template::delete
- Apitd_api_top_bar_template::update_key
- Apitd_api_top_bar_template::update
- Apitd_api_top_bar_template::add
- Apitd_api_single_template::delete
- Apitd_api_single_template::update_key
- Apitd_api_single_template::update
- Apitd_api_single_template::add
- Apitd_api_footer_template::delete
- Apitd_api_footer_template::update_key
- Apitd_api_footer_template::update
- Apitd_api_footer_template::add
- Apitd_api_smart_list::delete
- Apitd_api_smart_list::update_key
- Apitd_api_smart_list::update
- Apitd_api_smart_list::add
- Apitd_api_thumb::delete
- Apitd_api_thumb::update_key
- Apitd_api_thumb::update
Hi,
The Black demo has custom design and styling, that would not be possible with theme options. It is specific to the mentioned demo. You could achieve it with custom CSS. Take inspiration from the demo stylesheet and see how it was made
– https://www.screencast.com/t/vapyFaSR4nq
It may not be easy to achieve this without installing the actual demo, but it can be done. For example you can experiment with a code like this, for a black TV category page
– https://www.screencast.com/t/z9kXpFHW3Eu
.category-tv .td-container-wrap {
background-color: #1a1a1a;
}
.category-tv .td_module_11 a,
.category-tv .td_module_6 a,
.category-tv .widget a,
.category-tv .td-footer-instagram-title,
.category-tv .td-page-title,
.category-tv .header-search-wrap .td-icon-search,
.category-tv .sf-menu > li > a {
color:#fff;
}
Add more elements in the code as you identify them, use the browser inspector to do it
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks
Hi,
On pages you could use the image box element for example
– https://demo.tagdiv.com/newspaper/image-box/
On posts you could use the theme gallery, or the default WordPress gallery
– https://forum.tagdiv.com/gallery-2/
Or simply add pictures in the post content
– https://www.screencast.com/t/9c7g2lSUgry3
Or maybe try a gallery plugin that has the options you need.
Thanks
Hi,
The menu supports Font awesome icons, they can be added like this
– https://forum.tagdiv.com/how-to-add-icons-in-menu/
You could maybe implement you own icons, with customization. Maybe something like this example, but for each menu item if you require different icons
– https://www.screencast.com/t/KjDE5pBRs
I used an icon form the media library in the example, this is the code if you want to make experiments with it
.menu-item-19934 a {
background: url("") no-repeat;
background-size: 25px;
background-position: center top;
}
The menu items IDs can be found with the browser inspector
– https://www.screencast.com/t/Gvs0RYpAs
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
If you want the same icon for all the menu items, try it like this
– https://www.screencast.com/t/jtc2gypPbvv
.sf-menu > li > a {
background: url("") no-repeat;
background-size: 25px;
background-position: center top;
}
Thanks
Hi,
The category tags displayed on block modules have a predefined color, in the theme stylesheet. There is no option to change this color. However it could be changed with CSS.
A code like this will change the category tags background color and text color on the whole website for example
– https://www.screencast.com/t/NzsN4c15
You can change the colors to what you want, then enter the code in Theme panel->Custom CSS
.td-post-category {
background-color: red;
color:black;
}
Thanks
Hello,
The category tag on blocks will not grab the color of the category you set in the category settings. That is for posts only. On blocks, all of the category tags have the same color. You can only apply the color of the tag but it will affect all tags at once.
example:
.td-post-category, .td-meta-info-container .td-post-category{
background-color:Red
}
Thank you!
Hi,
That could be done with a code like this for example
– https://www.screencast.com/t/zcO5TiLj
.td-footer-wrapper .td-pb-span4 .footer-social-wrap {
text-align:right;
}
Thanks
Hi, I am brand new to Newspaper, and was wondering how I could increase the size of the logo with header style 1. I realize that I could change to another header style to get rid of the logo size constraint, but I would prefer to keep style 1 in order to preserve the ad. I found a couple of code samples, but nothing has helped so far. Any help at all would be appreciated. Thanks!
Hi,
Please note that the mega-menu is not intended to display like that. It would probably take some customization to make it display the way you want. You can use the browser inspector and identify the elements used and their classes, and create custom code
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Something like this for example – https://www.screencast.com/t/taKiYgK3hN
You can further modify and perfect the code, then enter it in Theme panel->Custom CSS
.td_block_mega_menu .td_mega_menu_sub_cats {
float:right;
text-align:left;
}
Thanks
Hi. I want to get rid of the black color around the custom titles. For example, I don’t want to show red and black for “Popular”. I ONLY want to show red. I have tried all settings, but I don’t seem to understand how to do this, even with documentation. Can anybody please guide me?
The site is https://wellnessoutpost.com
Scroll down and you will see POPULAR, HEALING, and REVIEWS… All have the colors that I want but also this black color that I can’t seem to get rid of. Where do I go to remove it?
Hi,
Sometimes the site loads the mobile layout on large screens (15, 17, 22 inch). And not all pages, but some. For example, today it is loading single post pages in mobile layout and all other pages normally, but yesterday it was loading category pages in mobile layout on large screens and single post pages normally.
What could be the problem?
Thanks
Bojan
Hi,
I am using the Popular last 7 days show posts, but it is not showing the most popular from the last 7 days. Instead it shows very old post from for example 2007 (where I have 10 views for example) and most post from last day are over 1000 views but just not showing.
This is post that is shown in popular last 7 days http://prntscr.com/h9g16l
If i check all post about it, I see all kind of “problems” but nothing about showing very old post with just a little views. I understand that there are issues with cache-plugins but don’t have feeling that it can influence that it show this kind of problems.
What am I doing wrong ?
Cheers
Hello,
I have a customer who wants a website in Arabic but I do not know how to aligne the logo and the menu on the right. Can you help me please ?
Google ‘how to make your own WordPress plugin’
basically you can just create a plugin per the simple docs on WordPress.org in the ‘codex’ and then you just put the functions in there, upload to plugin folder, activate… ta da.
Really simple.
e.g.,
<?php
/*
Plugin Name: Better Example
Plugin URI: http://wordpress.org/#
Description: Undoing the Madness
Author: Everett's sometimes obnoxious Twin
Version: 0.7
Author URI: http://theonion.com/
*/
function safe_print() {
print " -------- I think I'm getting a clue!";
}
/* End of File */
Hi I´m using Newspaper8 and drag the “Raw HTML box” to where I want to place an iframe code with my ads. The code is generated by Revive Adserver and everything works properly except the alignment of the Raw HTML box.
The full code that I am paste-ing into the Raw HTML box is below. The alignment of the ads is always set to left and I can’t change it.
What code can I add before or inside the iframe code to make what’s inside the Raw HTML appear in the center?
Hope you can help,
Thanks,
Editor at http://www.topp5.is
===========
<!– Revive Adserver iFrame Tag – Generated with Revive Adserver v4.1.1 –>
<iframe id=’ae42645b’ name=’ae42645b’ src=’http://adserver.topp5.is/www/delivery/afr.php?zoneid=8&target=_blank&cb=INSERT_RANDOM_NUMBER_HERE’ frameborder=’0′ scrolling=’no’ width=’1020′ height=’360′></iframe>
Hello,
I tried to change the Sidebar ads on my page but it only changes on the front page, the sidebar ads in the post view doesn’t change.
Samples:
http://prntscr.com/h8zrrg (post page)
http://prntscr.com/h8zrui (front page)
http://vntokenomy.com (my site)
Looking forward to hearing back from you.
Thanks.
I tried to paste this into functions.php
add_action(‘after_setup_theme’,’remove_admin_bar’);
function remove_admin_bar() {
if (!current_user_can(‘administrator’) && !is_admin()){
show_admin_bar(false);
}
}
It works very well on the mobile theme. But on the desktop, it’s not working at all.
-
This reply was modified 8 years by
sunnydream.
The playlists of youtube videos in the visual composer video player do not appear in thumbnails as in this example: https://www.screencast.com/t/tvnMNz1OSO
I put the url as in this example: https://www.screencast.com/t/bNQDvsW4I9
But the result was this: 
Hi everyone,
I would like to know how can I put one post category to a specific page on my site. For example, when you click on “Fashion” page in menu to show category named “fashion” on that page.
Thx
Hi,
We provide a child theme sample, please check the /code folder from theme package that you download from themeforest – https://forum.tagdiv.com/whats-included/
Also follow the child theme documentation and see which file can be overwritten – https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thanks!
Hi,
yes thanks! I found it 🙂
But now I have 2 little questions:
– If I’m reading a post/article/archive etc. my sidebar disappeared (sidebar is blank, no author / latest posts) it’s only on the static home page
– Can I get a break / hr line between my logo and for example archive side (the top articeles and break isnt there but i need a line or anything else between logo and h1)
There is conetnt in every post, its not visible in website.
Please try edit in last post we can see in inside but not outside. here is the link.
Post in back end
http://janakeeyavicharana.com/wp-admin/post.php?post=2810&action=edit
Hello meri,
The template number used by you can find it if you will inspect you setup page or also, you can know what kind of template you are using if you will check your Theme panel. Also, notice that you should add some if statements to hide the author for specific categories, using the is_category function by category id or category slug, like as in the above example. Notice that is not a simple task and if you are not aware of the steps which are needed to take in this case, please consider hiring a freelancer/developer to help you because we cannot do this for you, sorry!
Thanks for the message!
Hi,
In the sidebar you can use a 300x250px ad size, like the sidebar ad example in the live theme demo here
– https://demo.tagdiv.com/newspaper/
The post content width is 696px when a sidebar is used, and 1068px without a sidebar. Maybe take some inspiration from Google recommended sizes
– https://support.google.com/adsense/answer/6002621?hl=en
Hope this is somewhat helpful for you.
Thanks
Hi Since morning my contents not showing, only Heading & Feature image showing.
could you please help – http://janakeeyavicharana.com
I wonder if there is any way the latest notocias do not show up again.
Example: In the Big Grid I put to appear the last news of the category News, Sports and Politics. At the bottom I put a block that will appear only news of the category News, but in the block repeats the news that appears in the Big Grid.
Is there an automatic way to see the latest news on the Big Grid and the block also appear the latest news but not repeat the ones that appear in the Big Grid?