Hi,
1. Replied via dashboard, you have to specify exact locations on where to apply the modification.
2. You have to use a code editor like notepad++ and you have to know some basic css/php to do those modifications. If you don’t know how to doit you have to hire a programmer to doit for you, you can always find one on places like http://studio.envato.com/
Thank you, Emil G.
Hi,
It should include all posts from the post categories, older or newer, random.
You can test the results by refreshing the page, the query is generated by wordpress.
Thank you, Emil G.
Hi,
A solution would be to use two sliders on page, one big slider and one normal slider – http://screencast.com/t/KfzBqvWoefBi
Use the same settings for both sliders (same category, sort order), hide the title on the normal slider.
Add a class to the sliders so you can target them in CSS like this:
– http://screencast.com/t/guU3pZYB
– http://screencast.com/t/A6bl2fhI2
Use css to hide the big slider on mobile and the show the normal slider instead (add the following css inside the Theme Panel -> Custom CSS):
@media (min-width: 767px) {
.bs_mobile .td_normal_slide {
display:none;
}
}
@media (max-width: 767px) {
.bs_mobile .td_block_slide_big {
display: none;
}
}
Now there should be 4 posts on desktop and 4 posts on mobile.
Thank you, Emil G.
Hi,
Some of the characters are changed, that’s why it doesn’t display properly.
Add the code directly from the section bellow (don’t copy it inside a text editor, it will get formatation and it won’t work properly).
.image_f {
position: relative;
}
.comments_b10 {
position: absolute;
right: 10px;
bottom: 10px;
z-index: 1;
color: white;
font-size: 15px;
line-height: 0px;
text-align: center;
background-color: rgba(77,178,236,0.9);
}
.comments_b10 p{
padding: 10px 7px 10px 7px;
margin: 0px;
}
.comments_b10:after {
position: absolute;
bottom: -8px;
right: 0;
left: auto;
content: "";
width: 7px;
height: 8px;
background-color: transparent;
background-repeat: no-repeat;
background-position: -8px -87px;
background-image: url(http://cdn3.vox-cdn.com/images/verge/sprites/ribbongles.v51a515f.png);
}
Also modify the code like this – http://screencast.com/t/9d4ERmebSP
<div class="image_f"><?php echo $this->get_image('art-big-1col'); ?>
<div class="comments_b10"><p><?php echo get_comments_number($this->post->ID)?></p></div></div>
Thank you, Emil G.
Hi,
Please send an email at contact@tagdiv.com , specify the issue and provide wp-admin access so i can take a look.
Thank you, Emil G.
Hi,
Try to modify it directly in the td_translate.php file – http://screencast.com/t/1rUgEMzZHBn
If it’s not working please send an email at contact@tagdiv.com , specify the issue and provide wp-admin access so i can take a look.
Thank you, Emil G.
Hi,
1. You can import this predefined syles like this:
– http://screencast.com/t/yLOZrUAt
– http://screencast.com/t/qLSTINIg
Do you use the default template? – http://screencast.com/t/e4Itye2zr
You can target h1, h2, h3 with custom css (add the css inside the Theme Panel -> Custom CSS):
h1 {
color: red;
}
h2 {
color: red;
}
h3 {
color: red;
}
But this will affect all h1, h2, h3 titles on the site, you have to add a specific class to target them only on the pages/posts you want.
2. I belive you are reffering to the featured image. The feature image can be removed like this: https://forum.tagdiv.com/how-to-hide-the-featured-image-on-post/
3. You can delete the code (or modify it) from the td_module_blog.php – http://screencast.com/t/ZiGcAU70s
You can find code for the other buttons above it, modify them to behave the way you want.
4. If you don’t use pagination or load more / infinite load options edit your home page and enable the “Unique articles” option like this: http://screencast.com/t/pUaAtaYg
If you use pagination configure blocks to display different categories.
Thank you, Emil G.
Hi,
It can be done with javascrypt or php, you can specify to render the ad area only on mobile, but it’s not an easy task.
Thank you, Emil G.
Hi,
Try to update the permalinks, go to Settings – Permalinks and just hit the save button.
Disable all plugins and see if the issue is still there.
And please update the theme, we fixed some of the sharing issues in the latest versions.
You can download the theme for free from your account here – http://themeforest.net/downloads
Please follow this update guide – https://forum.tagdiv.com/newspaper-v-3-7/ and this guide https://forum.tagdiv.com/how-to-update-the-theme/
Also, please backup the entire wordpress directory and the database before you update. In case something goes wrong with the update you can use the backup to revert to the previous state.
Here are some information on how to make the backup – http://codex.wordpress.org/WordPress_Backups
Thank you, Emil G.
Hi,
The theme is not compatible with minify, it’s stated in the documentation – https://forum.tagdiv.com/w3-total-cache-configuration/
Sorry for this.
Thank you, Emil G.
Hi,
Do you have any custom css? If you do please remove it and check the page again.
Thank you, Emil G.
Hi,
Please send an email at contact@tagdiv.com , paste a link to this post and provide wp-admin access so i can take a look. Sorry for this.
Thank you, Emil G.
Hi,
You have to edit the style files (depending on your header style) and replace with the desired url – http://screencast.com/t/yPKFtCOfrGD5
Thank you, Emil G.
-
This reply was modified 12 years by
Emil G.
Hi,
If you enabled the author on modules (by uncommenting the line) you have to apply the same condition on each module – http://screencast.com/t/qz9w3P2tzQ6w
Including module search – http://screencast.com/t/qhNYcStfq
Thank you, Emil G.
Hi,
Do you refer to the Big Slide? If you do note that the big slider is not a part of the header, it’s under the header and yes, it is possible.
You just have to create the slider and add it on page using the visual composer Revolution Slider block element – http://screencast.com/t/2kO8gjrJ
If you want to replace it on Homepage BG templates you have to edit the template file and replace the Big Slider line with the Revolution Slider shortcode
– http://screencast.com/t/oNDOhaCH3H
– http://screencast.com/t/wte9CA0nj
echo do_shortcode(‘[rev_slider test]’);
Thank you, Emil G.
Hi,
You can send me an email at contact@tagdiv.com , specify the issue or paste a link to this post and i will send you the patch.
Thank you, Emil G.
Hi,
For the post page you have to edit the loop-single.php file and uncomment the line that displays the author – http://screencast.com/t/wkSt0G49
For pages you have to edit all modules and uncomment the same line – http://screencast.com/t/CZeYPdjSElZp
Thank you, Emil G.
Hi,
We’ll think about this, thank you for your suggestion.
Have a nice day, Emil G.
Hi,
Please send me an email at contact@tagdiv.com , link this post and provide the site url and the wp-admin username and password so i can take a look.
Thank you, Emil G.
Hi,
You have to follow this guide – https://forum.tagdiv.com/how-to-install-bbpress-forum/
The page name has to be Forums – http://screencast.com/t/aFolNAzd
Thank you, Emil G.
Hi,
I don’t thrust mobile emulators, we test on real phones and tablets.
You should make some test on real phones/tablets to see if the result is the same before applying custom css.
Use inspect on the elements you want to target and look for the wrapper. – http://screencast.com/t/2nL7D3mtR
Thank you, Emil G.
Hi,
Use the following css to fix the pagination and the search button issue:
.bbp-search-wrap .td-widget-search-input {
width: 558px !important;
}
.bbp-breadcrumb {
float: none !important;
padding-bottom: 10px;
}
#bbpress-forums .page-nav {
padding-bottom: 15px !important;
}
http://screencast.com/t/Q1d77IVkP10Y
Thank you, Emil G.
Hi,
Please send me an email at contact@tagdiv.com , paste the link to this post and provide the wp-admin username and password so i can take a look.
Thank you, Emil G.
Hi,
You can enable it from Theme Panel -> Post Settings -> Featured Image – http://screencast.com/t/zpSYcBjUZB
You can find the thumbs inside the ../Newspaper/images/no-thumb directory – http://screencast.com/t/OTiizsMMtz
Thank you, Emil G.
Hi,
Do you want it to display everywhere (on modules/blocks and posts) of just inside the post page?
For the single post you can replace the following line to display the author avatar:
– http://screencast.com/t/2uoydxw1
– http://screencast.com/t/OjvjJvp8aW
$author_id = get_the_author_meta('ID');
echo get_avatar($author_id, 206);
If you want to display it everywhere you will have to modify the get_image function in td_module_blog.php ( http://screencast.com/t/tat6djPjK ) if you don’t know how to do that you will have to hire a professional developer.
Thank you
-
This reply was modified 12 years by
Emil G.
