- NewspapertagDiv AMP Plugin Tutorial
- 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
- NewspaperAutoptimize Plugin – install and configuration
Hi
To display article ad depending by post’s category you need to edit td_module_single_base.php and modify the get_content() function: http://screencast.com/t/uspUfbvnJPD The sidebar ad and custom ads cant’t be displayed on posts depending by categories with the actual implementation of the theme. You will need to create a custom sidebar for each particular sidebar ad that you want to display, than assign the sidebar to posts from that category. For example if you want to display in sidebar ad X for posts from category Y, create a sidebar which contains the ad X and assign it to all posts from category Y.
Hope this help.
Thanks!
Hello,
The easiest way to do it is by using the direction alignment in CSS. Please revert your post to the standard layout and just use this simple css to apply RTL style on a specific post.
for example your current post has an id of 325 so you can use css like so:
.postid-325{
direction:rtl!important;
}
result: http://screencast.com/t/r334DfJuo0r
Unfortunately i cannot give you a permanent solution as it will require quite a bit of custom work.
You can however align the entire website by using this code in the theme panel:
body{
direction:rtl!important;
}
It will require further customization as some elements will not align properly.
I hope this helps you get closer to your goals.
Thank you!
Hi nomadhermit,
You can hide them if you are use a bit of Custom Css. First of all, please tell me what king of ads you want to hide? Below i gave you an example for an article bottom ad.
.postid-639 .td-a-rec-id-content_bottom {
display:none;
}
Using the .postid-639 in this exemple, you can target the post which you want to hide the ad. Here you can see how to change the post id: http://screencast.com/t/JRGJAfmFgp77
Another possibility would be to search other plugin to do this thing for you.
Hope this helps and let us know how it goes!
Thank you!
Seeing a number of errors, both in the admin and on public-facing pages.
Admin examples from the All Posts screen:
Warning: call_user_func_array() expects parameter 1 to be a valid callback, class ‘td_page_views’ does not have a method ‘on_manage_posts_columns_views’ in /nfs/c07/h04/mnt/173604/domains/———/html/wp-includes/plugin.php on line 213
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /nfs/c07/h04/mnt/173604/domains/polkstudents.com/html/wp-content/plugins/wordpress-seo/admin/class-meta-columns.php on line 47
And on public side:
Warning: call_user_func_array() expects parameter 1 to be a valid callback, class ‘td_more_article_box’ does not have a method ‘on_wp_footer_render_box’ in /nfs/c07/h04/mnt/173604/domains/———/html/wp-includes/plugin.php on line 503
Suggestions?
Thanks.
Hi,
Please clear your cache and check the new plugin with another user. Try ‘cocacola’ for example and see if the likes are being picked up.
Thank you!
Hello,
The Api plugin is online and can be downloaded from here: https://forum.tagdiv.com/practical-example-how-to-add-a-new-block-and-module/
Thank you!
Update!
The Api plugin is online and can be downloaded from here: https://forum.tagdiv.com/practical-example-how-to-add-a-new-block-and-module/
Thank you!
Update!
The Api plugin is online and can be downloaded from here: https://forum.tagdiv.com/practical-example-how-to-add-a-new-block-and-module/
Thank you!
Hi mboydnv,
Please try the code below in your Theme panel->Custom Css area. I gave you a solution similar to the second example of your.
.td-social-icon-wrap i.td-icon-facebook:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-flickr:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-googleplus:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-instagram:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-pinterest:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-twitter:hover {
opacity: .5;
color:white;
}
.td-social-icon-wrap i.td-icon-youtube:hover {
opacity: .5;
color:white;
}
The result you should see here: http://screencast.com/t/zPvvt6hYIhQ
Thank you!
Hi strawberrybase,
Please try the code below and fix the problem. Place the code in Custom Css area, in Theme Panel.
.td_block_slide .block-title > a {
width: 100%
}
The result you should see here: http://screencast.com/t/tZWdtIvIn
Also, if you want to have this style for another block, please replace this class .td_block_slide with the class block used, for example: td_block_6, or td_block_5, … etc.
I hope this helps and let us know how it goes!
Thank you!
Thanks Catalin
Having trouble with the hover now. It’s not hovering the entire circle just the font icon, and ideas please
please have a look at the icons in the footer at (no spaces in domain)
p a r a d i s e f o u n d t o u r s . c o m
was thinking about a hover like this:
If that’s too hard, maybe just the circle hovers and not the icon? like in the footer of this site below:
Also is it possible to make the social icon font size bigger like the link above?
Thanks so much
Hi Lucian, the old post is not quite clear on the method, you mention css and I can’t tell if that is an additional fix for something else or for the date etc.
Could you please repost the exact code to remove the date and in what file please.
Also what about this method?
1. Using Code in Functions File
This can be considered as the aggressive version of removing date and time-stamp from your WordPress blog. It is very powerful and removes the function of every php code, that helps to generate date. Date displayed in the comments will also be completely removed.
/** Start of Remove Date TimeStamp from blog posts */
function remove_post_dates() {
add_filter('the_time', '__return_false');
add_filter('get_the_time', '__return_false');
add_filter('the_modified_time', '__return_false');
add_filter('get_the_modified_time', '__return_false');
add_filter('the_date', '__return_false');
add_filter('get_the_date', '__return_false');
add_filter('the_modified_date', '__return_false');
add_filter('get_the_modified_date', '__return_false');
add_filter('get_comment_date', '__return_false');
add_filter('get_comment_time', '__return_false');
}
add_action('loop_start', 'remove_post_dates');
/** End of Remove Date TimeStamp from blog posts */
Add this code to functions.php file in your theme and update it. Wait for Google Search Bots to crawl and index your blog posts. Date will be removed from meta description of search results.
—
I read this article How to Remove Date From Google Search Results
It’s a better idea to remove dates from last year content, and for all latest content (ex: 2013 posts), let the date remain intact.
Note: I don’t recommend hiding date, rather show last updated time.
This is getting confusing…. Many sites say don’t hide it, some say don’t delete it and leave space, google hates space…too confusing….
I guess I’ll leave it in, there’s a reason why it’s coded in, maybe i shouldn’t mess with it and hope google doesn’t punish bloggers for having a date in their snippet.
-
This reply was modified 10 years by
mboydnv.
Hi Again…
I tried again on my side & the 2 ads that are in between the content still doesnt appear. Only the header & footer ad appeared. I cleared my Chrome history & problem remains. However it appeared on my Firefox & also on another computer. I could have sworn I seen all the ads appearing my my chrome the other day. Are there any other cache to clear aside from the chrome history?
I’m on newspaper version 6.6 now. On another question, I notice on your screencapture, the ad was scaled down to 640 x 79. The actual ad image is 728 x 90. How do I set the ad size, so that it is the same as my actual ad image size?
Help!
I just updated to the newest newspaper through the envato wordpress toolkit and the site has broken. It appears that possibly visual bakery is broken or css somehow?
Instead of graphics this is the code I see:
[td_slide_big limit=”4″ sort=”” category_id=”23″ category_ids=”” tag_slug=”” autors_id=”” installed_post_types=”” autoplay=”” offset=””]
[td_block2 category_id=”14″ limit=”4″ custom_title=”LATEST NEWS” ajax_pagination=”next_prev”][td_ad_box spot_id=”custom_ad_1″]
[td_block2 category_id=”3″ limit=”2″ custom_title=”FEATURED”]
[td_block4 category_ids=”18″ limit=”3″ header_color=”#2b2b2b” custom_title=”COCKPIT RECORDINGS” ajax_pagination=”next_prev”]
[td_block2 category_id=”17″ limit=”6″ header_color=”#82b440″ custom_title=”VIDEO” ajax_pagination=”next_prev”]
[td_ad_box][td_block8 category_id=”19″ limit=”3″ custom_title=”ESCAPE & EVADE! DOCUMENTS” show_child_cat=”all” ajax_pagination=”next_prev”]
Here is a screen shot
here is what it should look like 
I tried to disable and delete the latest visual bakery plugin but that didnt work and I am stuck with the oldest versio, 4.7.4 and somewhow cant find the newest, so if you can provide a link to that i would appreciate it.]
thank you!!!
On the homepage – in the area by more articles – there is the calendar in the widget. In that widget it places once as expected.
However, when the code is placed in the Home Page using the HTML Visual Composer box the calendar gets placed twice right on top of each other.
Here is the sample code:
<div data-cswidget=”8178″ > </div>
<script type=”text/javascript” async defer src=”//portal.CitySpark.com/js/widget.min.js” > </script>
servedaily.com
Hi, I have a problem with anchor. It is not works on mobile devices. For example: “http://metronews.net.ua/life/proishestviya/opublikovany-dannye-o-peremeshheniyah-su-24/” If i click on link “Оставить комментарий” it works on desktop, but not on mobile devices. Please help me to fix it?
Hi,
Unfortunately css does not know what category it is coloring. You can only color an element. If you wish to color a particular element with a particular color you have to use a css selector that targets that particular element.
http://www.w3schools.com/cssref/css_selectors.asp
for example on this block1: http://screencast.com/t/AZEgaCl8joEN
.td_block_id_132895618 .td_module_mx5 .td-big-grid-meta>a{
background-color:red!important
}
.td_block_id_132895618 .td_module_mx11 .td-big-grid-meta>a{
background-color:green!important
}
But css does not know which category is displayed. If another category is displayed in that particular element you colored, it will also have that color you set.
Css is not dynamic like that.
On the other hand. You can copy over the function i showed you in a previous reply and replace it with the function from td_module.
The function to get_gategory is a big one. It starts at function get_category() { on line 177 and goes all the way to line 267 after return $buffy. You need to copy this whole code from: http://screencast.com/t/v5zSRpvR
and copy it to td_module replacing the get_category function there: http://screencast.com/t/Khkp9xlu0m
As a result you will have the color from the theme panel set to the category tag on modules but at the same time it will pick up every category the post has as parent: http://screencast.com/t/gFLrJld6
So, as a bottom line, your problem cannot be resolved by either methods as the css one is not dynamic and the php one pulls all categories to the block.
You will need custom work to get it exactly as you wish, with only one parent category and colors at the same time.
I hope this sheds light on the subject.
Thank you!
Hello ultraluxury,
The mega-menu is an complex feature on our theme that displays a category and subcategory, as you can see in our demo, like this: http://screencast.com/t/myjyjwRdDHj . If you want to add “Cars” as child of “Lifestyle” you should make the “Cars” as subcategory, like this example: http://screencast.com/t/F9tZs1a0j .
The result you should see here:http://screencast.com/t/Of4EYgXt
For more information about mega-menu, you can consult our documentation, here: https://forum.tagdiv.com/mega-menu/
If is not what you mean, please provide more details about this so i can be able to provide a more accurate response.
Hope this helps and let us know how it goes!
Thank you!
Hi,
Please provide an example of what HTML you are using and how you are adding it to your page so we can have an idea on how to help.
Thank you!
1. is there a shortcode for the related articles?
2. i need to make the featured image to full size, i used to use this plugin (thumbnail upscale) but for some reason it doesn’t work anymore. is there another way?
thanks.
First of all, I need to clarify I am a big fan of Newspaper.
I just want to understand some important features.
Does the theme provide the function of customizing appearance for mobile and desktop versions ?
Please check the examples below:
http://www.smartm.com.tw/
http://www.smartm.com.tw/Article/31373738cea3
The sidebar will disappear when it turns into mobile version.
Could we do that in the Newspaper theme?
Many many thanks for your response. 🙂
Gabriel
Hi,
The like count of Facebook Page is not changing in the social media widget of my blog
You can find it on right sidebar http://www.topfivebuzz.com/
Its showing 4173
But actually the number of like of the page is 4692 (at the time when I am writing this post)
The page url is https://www.facebook.com/TopFiveBuzz/
Need help
Thanks & Regards
Debarup
I have been trying to post HTML for a calendar – and it posts it twice.
I can’t leave this online as an example on the page I’m trying as I want my homepage to look great.
Hi
In my website, I putted a inline ad.
But all the text lines below him, they’re all linking to the add. I putted inline
and I didn’t want this,
What I want Is just the banner linked to the add, and not all the lines in my text.
this is an examples o this error .
http://templodosucesso.com.br/entenda-por-que-saber-fazer-boas-apresentacoes-faz-toda-a-diferenca-no-seu-trabalho/
Thanks