I have several blocks in the home page displaying a main category and then users can change if the want, is there a way to just show the main cat and not the other. Example in the Policiaca remove the other options?
wordpress.diarionoticias.info
Hello jencinas69,
Please notice that you can set your block filter from the Block Settings to exclude the category if you do not want to show them (sub-categories) you will have to use the exclude function (with ‘-‘ minus ID category ID ‘-47)
For example, I have Fashion category which has 4 subcategories, like this -> http://screencast.com/t/pOTO6Xfsr So, if you want to exclude all of these subcategories, you will have to follow the following steps, like this -> http://screencast.com/t/LsSZ0In0r -> http://screencast.com/t/Sz1eCZXcAd and then, here you should see the results -> http://screencast.com/t/VSb6MDEwiaP2
Hope this helps!
Thaks for your understanding!
Hello In the site footer I want to show content from three categories instead of what is there. Where can I change the infor in the footer?
wordpress.diarionoticias.info
In the top navigation where the date and social media is How can I translate the day?
Monday, June 20, 2016
also I will like to add San Luis Rio Colorado, Sonora to the left of that nav?
Thanks
Hello jencinas69,
If you want to replace in your footer that three default sections -> http://screencast.com/t/5L4tPiUBE with yours desired, please notice that you will have to use the Footer template style 5 which allows you to customize your footer as you wish. So, if you are using the Footer template style 5 you will have to add in Footer 1,2,3 from the Widgets, like this -> http://screencast.com/t/ux9rx4d88qK For more information about footer template, please consult our documentation here -> https://forum.tagdiv.com/footer-templates/
For your second request, please notice that the day is affected by the WordPress language.
Hope this helps!
Thanks for your understanding!
Thank you this really helped. is there a way to add my hometown name to the area where the date is. I will like it align to the left if possible.
Hello jencinas69,
You can do that with a bit of HTML coding in top-menu.php, like this -> http://screencast.com/t/MxnQXgdq0b
Thanks for your understanding!
I added this to top-menu.php
// show the date and time if needed
if (td_util::get_option(‘tds_data_top_menu’) == ‘show’) {
$tds_data_time = td_util::get_option(‘tds_data_time_format’);
if ($tds_data_time == ”) {
$tds_data_time = ‘l, F j, Y’;
}
echo'<div class=”td_data_city”>’;
echo’San Luis Rio Colorado Sonora, Mexico’;
echo'</div>’;
echo ‘<div class=”td_data_time”>’;
echo date_i18n(stripslashes($tds_data_time));
echo ‘</div>’;
}
and this to css
.td_data_city {
display: inline-block;
margin-right: 690px;
}
please check the result is moving the social media icons to the top
wordpress.diarionoticias.info
Is not quite working fine. I need the social media icons to be down in the same line as the date.
how can I fix that?
Hello,
I have checked your website and I saw that your margin-right is too much and that’s why your text will fall down to the second row. Please try to use the code below and place it in Theme panel->Cusotm CSS area.
The code is ->
.td_data_city {
margin-right: 60px;
}
The result -> http://screencast.com/t/tjHZvehqyJGl
Thanks.
Im having trouble changing the color of the font in the home page slider. I was able to find how to chage the color for the four stories titles
.td-big-grid-post .entry-title a {
color: #000;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
but not the author and date. Also is there away to remove the glare effect in the silder (four photos) in the home page
Hi,
You can use this css to change the author name and post date color:
.td-big-grid-post .td-post-author-name a, .td-big-grid-post .td-post-date, .td-big-grid-post .td-post-author-name span{
color:Red!important
}
If you want to remove the overlay of the images you can use this css:
.td-module-thumb a:last-child:before{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)!important;
}
Thank you!