Hello! I own http://www.sociedelic.com and i want to fix some problems.
1. I want to disable from mobile theme name pages because i want the whole content of page to be on center.
2. why mobile plugin don’t have some options separately for enable/disable title pages and breadcrumbs? Because i want to disable only on mobile.
3. Some of categories don’t work properly. I have tried already the CATEGORY TEMPLATE settings, i want the style 3 on all categories and i selected this already, but this category don’t want to load style 3 even if i select it from single category settings.
This is the link from category: https://www.sociedelic.com/psychedelic-plants-drugs/
and i see sometimes don’t show up the others categories.
I (wrong)https://i.imgur.com/NWNyHkT.png
II (on other category don’t appear sometimes) https://i.imgur.com/umRUEUz.jpg
III (I want use this style everywhere but is not working) https://i.imgur.com/rzKzNx2.jpg
4. I want to disable this if will work style 3: https://i.imgur.com/RYezMkw.png
5. I can’t change the font from the first paragraph of categories description and H1 tags and H2,3,4,5,6. General font is Merryweather and in the category is another 2 (default fonts from theme i think) and in the font settings i can’t have the option to change (you should fix this in the next update)
thank you!
Hi,
1. I don’t think I fully understand what you mean by name pages. If you could provide more details or some examples it would be very helpful.
2. The mobile theme does not have many settings and options, for the purpose of being faster and. It is meant to provide a simpler version of the website, that would be optimal for mobile devices. It is also optional, not required.
The breadcrumbs on mobile are related to the desktop settings. If they are enabled on desktop, they will be present on mobile as well.
If you would like to remove on mobile only, you could use some CSS. A code like this entered in Theme panel->Mobile theme->Custom CSS should remove the breadcrumbs from all mobile pages
– https://www.screencast.com/t/WhWj0aDEV
– https://www.screencast.com/t/VJl1Yc6F
.entry-crumbs {
display: none;
}
3. The category template 3 seems to be loaded from what I can tell. If you mean the category tag color, make sure each category has a color set in the per category settings
– https://www.screencast.com/t/ewVJaotL
The category tags will appear at all times, not randomly. At the moment they are displaying on that category page
– https://www.screencast.com/t/4hL1yxWjI7I
4. That drop-down cannot be disabled, there is no option for that at the moment. It is a complex and automatic process that calculates the number of categories that are displayed, in the theme javascript file.
5. The theme will style the paragraph containing the category descriptions, by default. At the moment there are no specific options for this, there might be in future updates.
You could style them differently with CSS for example like this, or how you like them to be
– https://www.screencast.com/t/9NpLGqKUvEQF
.td-category-description p {
font-family: Merriweather,'Open Sans',arial,sans-serif;
font-style: normal;
color: black;
}
Thanks
The problem number one i want to fix it. I want to disable breadcrumbs and title only on pages and only on mobile.
Great, thank you! Can this change have a bad effect on SEO or google indexing?
Also, I want to remove from author page WordPress comments counts (desktop + mobile) because I use facebook comments and I don’t want to show 0 comments on.
Hi,
Removing these elements by this method should not have an impact on SEO, they will still be loaded in the page source, but they will not be visible.
To remove the comment count in the author page author box, in both desktop and mobile
– https://www.screencast.com/t/UonRDOc6E
– https://www.screencast.com/t/xdSL2ZgLQ
.author .td-author-counters span:last-child {
display:none;
}
Enter the code in both Theme panel->Custom CSS code, and Theme panel->Mobile theme->Custom CSS section. The code will remove the comment counts in these situations.
Thanks
Dear Simion!
I just spent 4 hours to fing your message about removing the comments counter in the author box, many many thanks!!! But I thought it would appear the same on the “Authors box” I added on my “About Us” page, and the f*****g comments counter is still visible. I did not find any solution to remove it… Any tips? It would be so helpful!
Take care
David
-
This reply was modified 7 years by
mercure961.
Hi,
@mercure961 Something like this will do it for the authors box
– https://www.screencast.com/t/Q0btWsJUslI
It will apply to all the authors boxes once entered in the theme panel custom CSS code section. This is the code used
.td_block_authors .td-author-post-count {
display: none;
}
Thanks