Home User profile
tagDiv Staff
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
Simion C.
tagDiv Staff

Hi,

There seems to be a maintenance mode active on the website at the moment, I cannot view it. If you could provide admin login by email at contact@tagdiv.com we will take a look at this issue. Please also include a link to this topic in the email.

Thanks

Simion C.
tagDiv Staff

Hi,

The custom CSS from the theme panel will be loaded after the theme stylesheet. You can also add custom CSS in a child theme stylesheet if you have one, or directly in the main theme stylesheet file.
If you add it in the main theme you will probably have to re-add it after a theme update, but this will ensure that the code is loaded faster, along with the theme style.

Thanks

Simion C.
tagDiv Staff

Hi,

The theme uses a couple of default general fonts as default, most theme elements have options to customize the fonts, but this will have to be done individually for each element. These are the fonts the theme uses by default
https://forum.tagdiv.com/font-customization/
I believe a general font option is planned to be added in a future update, for the moment it does not exist. Sorry for the inconvenience.

Thank you!

Simion C.
tagDiv Staff

Try a code like this – https://www.screencast.com/t/l4Xq4JhTL6

.td-post-next-prev-content a,
.author-box-wrap .td-author-name a,
.comments .comment-reply-title,
.logged-in-as a{
color: #636363;
}

Simion C.
tagDiv Staff

Hi,

The related articles font properties can also be influenced by the global block header style. When using default for example
https://www.screencast.com/t/kG2lALqqHN
The font weight of the related articles/more from author is normal
https://www.screencast.com/t/O0Gow8dlU
A dedicated font setting just for that is not available, they will be affected by these font settings
https://www.screencast.com/t/ZtrEcpWQU

The mobile front page grid does not need a scroll, it will display 3 articles one below the other
https://forum.tagdiv.com/the-mobile-theme/
Desktop grids when responsive, have an intuitive design that would lead to scrolling by the user
https://www.screencast.com/t/USOi2Jk3nh2
A scroll will appear – https://www.screencast.com/t/5btaOSSK4

Thanks

Simion C.
tagDiv Staff

Hi,

The mobile menu will be loaded and ready to be used as soon as the website is done loading. Maybe something is delaying the website causing the mobile menu issue. We could take a look if you could provide a link to your website.

Thanks

Simion C.
tagDiv Staff

Hi,

I don’t quite understand what exactly you want to do, the font color is already black for those elements you highlighted. If you could provide some more details about what exactly you want to change I will try to give you a solution.

Thanks

Simion C.
tagDiv Staff

The excerpt and subtitle are different things, that is true. Block modules will display the excerpts, the subtitles are only displayed in the post page.

The excerpt is either taken automatically from the post content, or you can enter it manually (in this case it will not be displayed in the post page, only in modules).

I have tried to explain above what will happen if you use a heading for example in the post content before the smart list. Also if the post begins directly with a smart list the excerpt will be taken from it, unless manually set.

You could leave it like that, with the text above the list. It could be as a description for the following smart list, that should not be a problem. Use a paragraph or heading for it.

Simion C.
tagDiv Staff

Hi,

That would be in this file of the plugin – https://www.screencast.com/t/EAvuiBExx Make the change there as you wish and check.

Thanks

Simion C.
tagDiv Staff

Hi,

I believe it would be best to enter the javascript code directly in the theme header.php file right after the opening body tag
https://www.screencast.com/t/GIORCAAii6UA
Then the actual code in a raw HTML element
https://www.screencast.com/t/pQOcY6OzAn
This way it should work properly.

Thanks

Simion C.
tagDiv Staff

Hi,

You can edit the category names the same way you would using default WordPress. This is a guide about how to do it properly, and the consequences of this action
http://www.wpbeginner.com/beginners-guide/how-to-properly-rename-categories-in-wordpress/
If this is not what you want to know, please provide some more details about it, for a better understanding.

The socials displayed in the header and also footer will be the ones you enter accounts for in the theme panel. This is an example for Instagram
https://www.screencast.com/t/a2Opr5CThM
https://www.screencast.com/t/eIBWV4wqkk
https://www.screencast.com/t/oIB4Ds6Hxa

Thanks

Simion C.
tagDiv Staff

Hi,

Indeed, the block modules are predefined, the thumbnails each one uses and also it’s design will always be the same to ensure they will always display properly. Only the flex block has settings in terms of layout
https://demo.tagdiv.com/newspaper/flex-block/
https://tagdiv.com/go-beyond-flexibility-new-flex-block/

I believe that is block 1, it should look like this
https://demo.tagdiv.com/newspaper/block-1/
If it does not look like that for you then something is wrong. Provide a link to it so we can take a look.

If you want to add a new block or module there are guides
https://forum.tagdiv.com/td_api_blockadd/
https://forum.tagdiv.com/td_api_moduleadd/

Thanks

Simion C.
tagDiv Staff

The authors will be sorted by their public name, the one they choose in the WordPress settings, this name will also represent the user throughout the website where needed
https://www.screencast.com/t/c9WY1qVc4WVh
To change this functionality there is no setting unfortunately.

Simion C.
tagDiv Staff

Hi,

Indeed it seems the mobile theme stylesheet is loaded on desktop. That usually happens because of caching implementation or maybe minification.
The caching that is compatible with the mobile theme would be the WP Super Cache plugin, this will not cause issues with the mobile plugin.
In many cases similar issues are caused by caching, which would have the solution to either use the recommended caching plugin or deactivate the mobile theme plugin. The mobile plugin is optional, one can use the default responsive capabilities of the main theme.

Thanks

Simion C.
tagDiv Staff

That code would apply if there is still an admin bar displayed, by using a code such as the one I mentioned the admin bar will not be loaded anymore except for admins, so the CSS for it will not apply as well.
The best way to remove the admin bar is either with a code such as that one, or disable it in the WordPress settings
https://www.screencast.com/t/gX3Lbcrxng

Simion C.
tagDiv Staff

The mobile front page grid will only display posts that are included in the Featured category
https://forum.tagdiv.com/featured-posts-2/
This is a similar topic where a category is added in the code, so the grid will display only posts from it, if this is what you want to do
https://forum.tagdiv.com/topic/mobile-theme-featured-posts/

Simion C.
tagDiv Staff

Hi,

The post author and date will be centered for most or all blocks, if you have installed the Art Creek demo. There is a condition in the demo stylesheet that is supposed to do this
https://www.screencast.com/t/oJQ7d8qKj
If you would like that block 14 to not be affected by this design, use a code like this for example

.td_block_14 .td_module_wrap {
text-align: left;
}

Simion C.
tagDiv Staff

Hi,

The smart list will use the heading you choose when creating it
https://www.screencast.com/t/KqyLWxsBYj
So if you use one heading or paragraph in the beginning of the post, then a different one for the smart list, this will be outside of the smart list content on top.
If you use the same heading type as the smart list, then it will be considered the starting point of the smart list.
The smart lists are complex, modifying the files could cause them not to function correctly.
Maybe you could use a post subtitle for the posts instead
https://www.screencast.com/t/0xo3N29z

Thanks

Simion C.
tagDiv Staff

Hi,

The code you use will affect multiple elements in the post content, meaning all the links in the post content including socials and I believe that is a smart list. Complete the code provided by Catalin like this

.td-post-sharing-visible a,
.td-smart-list-pagination .td-smart-list-button {
color:white;
}

Thanks

Simion C.
tagDiv Staff

Hi,

If you mean the background color here
https://www.screencast.com/t/M4HdZx7iTN
That could be changed to white with a code since there are no dedicated options for it, the text will be invisible however
https://www.screencast.com/t/uVpWcha60p
So the color of the text should be changed as well as the active and hover colors, this would be the result
https://www.screencast.com/t/cn1nmVG1R6
If that is what you wanted, enter the code in Theme panel->Custom CSS section

.td_wrapper_video_playlist .td_container_video_playlist {
background-color: #fff;
}
.td_wrapper_video_playlist .td_video_title_and_time .td_video_title {
color: #000;
}
.td_wrapper_video_playlist .td_video_currently_playing .td_video_title,
.td_wrapper_video_playlist .td_click_video:hover .td_video_title{
color: #fff;
}

Simion C.
tagDiv Staff

Hi,

The theme does not have a such a file by following that path, so it would not be found. Maybe that file is needed by a plugin that tries to look for it there, but it is not a theme file that the theme uses.

Simion C.
tagDiv Staff

Hi,

The social networks in the footer will always be displayed alphabetically, there is no setting at the moment to change their order or positioning. Maybe such an option will be available in the future. Sorry for the inconvenience.

Thanks

Simion C.
tagDiv Staff

Hi,

The actual ad codes can be entered in the theme panel ads section, for the locations you want them to appear
https://forum.tagdiv.com/ads-adsense-overview/
So if your Adsense account is activated and there are no problems, the ads should appear
https://support.google.com/adsense/answer/76228?hl=en
https://support.google.com/adsense/answer/9724?hl=en
The code that could be needed to be inserted in the header file would be the verification code, more in this topic
https://forum.tagdiv.com/topic/adsense-ad-shows-above-header/

Also be sure to not have ad-blockers enabled when testing, and the ads are not disabled
https://www.screencast.com/t/miopD6jeK4Q

Simion C.
tagDiv Staff

Hi,

The post content elements can be colored as you wish, when creating/editing the post
https://www.screencast.com/t/uXXqaOEFF
Or all at once with the option in the theme panel for headings color
https://www.screencast.com/t/9xkyanI4QZ
The color you set there would apply to all the headings in the post content, regardless of linked or not. I have tried setting a color for the headings, and it is applied in both cases, link or no link.

Simion C.
tagDiv Staff

Hi,

Thank you for the suggestion, I will pass it along. Ideally all the theme plugins should be updated after a theme update. The tagDiv composer and multi-purpose plugin will try to update automatically when the theme is updated, but sometimes this action fails.

I will add this on our list and it could be available in the future updates online changelog or theme package update log.

Thanks

Viewing 25 posts - 10,351 through 10,375 (of 20,681 total)