Then use only the code that hides the sub-categories and increase the number of posts to 5 in this file
– https://www.screencast.com/t/1xOFDGkuvK
Result – https://www.screencast.com/t/UoJgGoRiY7
Hi,
So you would like to remove the author name from the big module of big grid 3, that could be done with a code like this
– https://www.screencast.com/t/oF3HSHAMZx
Enter it in theme panel->Custom CSS code section
– https://www.screencast.com/t/v9NK9k1d9
.td_block_big_grid_3 .td_module_mx5 .td-post-author-name {
display:none;
}
Thanks
Hi,
Indeed that will change the product image but seems the container remains the same width. A fix would be to modify the container size, more products will be displayed on a row in this case
– https://www.screencast.com/t/JyRF02aD
.woocommerce ul.products li.product a img {
width:auto;
}
@media (min-width: 1141px) {
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
width: 12%;
}}
Thanks
Hi,
As soon as new posts are published on the website, they will be displayed in the mega-menu, for the existing categories. So the latest posts will appear when included in a category that is in the mega-menu.
If this is not what you are referring to, please provide as many details as possible, for a better understanding.
Thanks
Hi,
Those would be sufficient resources. I have tested this on a long post, there is no problem in my case
– https://www.screencast.com/t/qFyExUk40h
Deactivate all plugins except theme plugins and clear all caching. Test to see if this has any effect. Try it on a default WordPress theme if possible and check the results. Try on a different computer as well. Something is causing the issue, keep testing until it is identified.
Thanks
Hi,
That can be done in the WordPress settings, there are options in the matter
– https://www.screencast.com/t/vYRj2illF
If those options are disabled, a user can leave a comment without filling any information
– https://www.screencast.com/t/d0hDbnpfPxe
Thanks
That would require modifications to the authors box. By default it does not display the bio. Copy the code from the author box which displays the bio
– https://www.screencast.com/t/HLjvdq1e
Paste it in the authors box like this
– https://www.screencast.com/t/wwP5UWRb
Now with a small height adjustment the authors box will display the bio for each author
– https://www.screencast.com/t/06qdsfZmmmj0
.td_top_authors .item-details {
height: 100px;
}
Thanks
Sorry for misunderstanding, the latest articles section will be displayed if the Pagebuilder + latest articles + pagination is selected.
The page must be set as homepage in order for the design to apply. That is the case for block 15 customization, the design will apply only when the page is set as homepage.
Thanks
Those parameters are essential in the theme and theme plugins functionality. They are not something specific to this theme, such requirements are needed in general.
If the hosting provider cannot help you with this requirement, then the theme and plugins may not work properly. Usually the hosting makes these modifications if needed, most have recommended methods.
We could provide a refund if the theme cannot be used by you. The theme has requirements that have to be met in order to work at it’s best. The ones mentioned above and these ones
– https://forum.tagdiv.com/requirements-for-newspaper/
Thank you!
Hi,
Seems none of these posts have featured images
– https://www.screencast.com/t/VNj4R8nv17lR
Each post needs to have a featured image (or video) set
– https://forum.tagdiv.com/featured-image-or-video/
Please try to set images for all of them, and check the homepage after doing this. The theme will create automatically thumbnails and display them on blocks/modules. So there should be thumbnails displayed.
Thanks
In that case a code like this will remove the sub-categories from the left of the mega menu and resize the whole menu grid
Before – https://www.screencast.com/t/jUPkIAbXyfvN
With code added – https://www.screencast.com/t/jzyRRIlZ
.td_mega_menu_sub_cats {
display:none;
}
.td-mega-menu ul.sub-menu {
width: 895px!important;
}
This code will affect all mega menus it’s current form. It could be made more precise if needed.
Thanks
Glad you could achieve the desired results and also for posting the implementation, this may be useful for other users as well.
Thank you!
Hi,
That is not an URL, maybe an URL parameter. Please provide some more details and examples of the error. The default theme does not provide any errors when testing with the structured data tool
– https://www.screencast.com/t/r6yMSHjE0
This is a guide on how to treat errors in the matter, maybe it is helpful to you
– https://moz.com/ugc/how-to-fix-structured-data-markup-errors-on-existing-pages
Thanks
Hi,
If there is no featured image set, there should be a placeholder displayed
– https://www.screencast.com/t/RWUTAt31
You could hide the module thumbnail for his type of block, to make them look better. A code like this will do that (affects only blocks 4 on the homepage)
– https://www.screencast.com/t/rCZfu4uD
.home .td_block_4 .td-module-thumb {
display:none;
}
Also the title and content length can be controlled, for this module here
– https://www.screencast.com/t/Dg5InixbHqQp
So you could limit the excerpt length for the modules, they will look better.
Thanks
Hi,
I understand what the problem is, I will try to give you a solution. Please try entering this code in Theme panel->Custom CSS section
– https://www.screencast.com/t/MrFEIyc5jV
.mfp-content .td_display_err {
top: 115px;
}
It should create enough space so the text does not overlap.
Thanks
Other than that guide, there is no documentation available. If you follow the guide there will be no problem creating and using a child theme. Simply copy the provided child theme in the WordPress themes folder on your server
– https://www.screencast.com/t/cJaurbYFQIsc
The files that can be modified are mentioned in the guide. Note that a similar directory structure or path leading to the file as in the main theme, has to be created in the child theme.
I have tried the number of products modification
– https://www.screencast.com/t/ym1XSEcG
The number of displayed products changed accordingly
– https://www.screencast.com/t/0HApQywN
So it should work for you as well. Try the other method with a child theme as well.
Thanks
Hi,
We have tested the composer interface on Mac, for us there are no issues like this present while testing. The newest version of Safari is installed
– https://www.screencast.com/t/gQ4JpQGGqDD
– https://support.apple.com/en-us/HT208403
Maybe you can try to clear the cache of the browser and check if this has any effect
– https://www.macworld.co.uk/how-to/mac-software/how-clear-safaris-cache-history-on-mac-3496193/
Thanks
I have tested the code before giving it to you, it works in my test. It works when applied on your website
– https://www.screencast.com/t/VoYZ3lcHf
I modified the font size to match your current font size
@media (max-width: 1018px) {
.td-post-header header .entry-title {
font-size: 23px!important;
}}
Enter it here and save – https://www.screencast.com/t/ryHsgnZ1
If you have caching installed or server provided clear them, that might be why the code is not applying.
Thanks
Hi,
The featured image will open in a modal when clicked, by default. What you are asking would have 2 solutions. The simpler one where through an added code in Theme panel->Custom CSS, any clicking on the featured image in the post page will have no effect. Something like this
.td-post-featured-image {
pointer-events: none;
}
The other solution would require modifications in the theme code, in order to remove the actual link on the image. I will try to give you this solution, if the above is not sufficient.
Thanks
Hi,
If you are referring to the post sharing, this can only be controlled with the Yoast SEO plugin, the theme itself does not have any settings in the matter
– https://forum.tagdiv.com/facebook-share/
– https://yoast.com/social-media-optimization-with-yoast-seo/
– https://code.tutsplus.com/tutorials/the-beginners-guide-to-wordpress-seo-by-yoast-social-settings–wp-32840
Thanks
Hi,
The theme is compatible with the Woocommerce plugin, there should be no problem using it properly. There are many users that are currently using the plugin in combination with the theme.
Try deactivating all other plugins except theme plugins and Woocommerce, clear all caching after doing it. Check if the images display properly.
Thanks
Hi,
That could be caused by caching, once set in the theme panel for the same category and saving, the new background should appear. Try clearing any caching installed, or provided by server.
Thanks
Hi,
We will investigate the issue further, send us an email at the address mentioned above. Remember to include a link to this topic in the email.
Thanks
Hi,
Unfortunately we have not made any tests in the matter so far. I couldn’t say if there are any plans to begin testing or implementing this feature, I believe there are other priorities at the moment.
Thank you!
If you do not want users to be able to use Visual composer, note that this plugin has options to customize user roles
– https://www.screencast.com/t/PH5DxwP0FqaH
The page seems to display if you use the code like this
– https://www.screencast.com/t/MvNsEsFTiT
Maybe you can modify it further if needed, here it is
– https://pastebin.com/W2QG7zuS
Thanks