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,

You can use most of elements available in the theme in the sidebar, either via the page editor or by editing the sidebar in the widgets section. If you are using a split row sidebar simply edit the page with the page composer you used to create it, and remove that block and add other elements in it’s place
https://www.screencast.com/t/n9JxzJ1rgp3
If you are using a Widget sidebar you need to go to the widgets section and make the change to the sidebar you want there
https://www.screencast.com/t/HEEzUxJQHe

Thanks

Simion C.
tagDiv Staff

Hi,

Using that post style template, the top article ad is displayed like this by default
https://www.screencast.com/t/MyFA7svCiUtc
You seem to have set a float property on the article top ad, making it float left of the content
https://www.screencast.com/t/jyYxZHjERzpy
If that is removed it will look like this
https://www.screencast.com/t/4KjfbGUFEO
If you want to keep the ad the way it is now and align the rest of the content, you could try this code – https://www.screencast.com/t/YuJ2nL1d7Vu
Just enter it in Theme panel->Custom Css

.td-post-content ol {
clear: both;
}

If this is not what you wanted please provide more details about what exactly you want to achieve, so I may give you a more accurate answer.

Thanks

Simion C.
tagDiv Staff

Hi,

Unfortunately there is no option at the moment to style the tags displayed under the posts. The tags will simply be displayed below the post, like it can be seen in the demo
https://demo.tagdiv.com/newspaper/10-landscapes-wont-even-imagined-exist/
You could maybe style them with css and change the way they look, but for more advanced customization probably you will have to use a plugin that can do that.
Here is a guide explaining how to use the browser inspector to identify the elements on the page and their classes, in order to create custom code
https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/

Thanks

Simion C.
tagDiv Staff

Hi,

Please try this code and see if it works for you
https://www.screencast.com/t/fBfXXr34CS
Enter it in Theme panel->Custom Css

.td_category_template_5 .td-header-style-3 {
border-bottom: 0;
}

Thanks

Simion C.
tagDiv Staff

Hi,

Please enable in the theme panel the thumbnail sizes required for the modules
https://forum.tagdiv.com/theme-thumbs/
Then use this guide to regenerate the thumbnails
https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
After the regeneration process is complete clear any caching installed on your website. Now the thumbnails should display properly.

Thanks

Simion C.
tagDiv Staff

Hi,

The user role capabilities did not change. These are still the default roles like before. The file where this is defined is still the same in this regard
https://www.screencast.com/t/GZJmglW8jWj
Like I mentioned before, maybe it would be easier to use a plugin to customize the user capabilities the way you want.

Thanks

Simion C.
tagDiv Staff

Hi,

The social counter seems to be configured properly. The problem is that the Facebook page is not public, it is set to private
https://www.screencast.com/t/ywJXXETZ4l5R
For the counter to work as intended, the profile page needs to be set to public.

Thanks

Simion C.
tagDiv Staff

Hi,

The tagDiv composer does have some level of influence on pages created in Visual composer, by simply being active. It is also activated by default when you update the theme to the latest version. You can keep it deactivated for the moment until you decide to make the transition to it. There is no rush, you can still use Visual composer. But in future updates more options wand features will be added and available only for the tagDiv composer.

Thanks

Simion C.
tagDiv Staff

Hi,

In that file there are two sections. One containing the top sharing for the posts
https://www.screencast.com/t/EV7SJEjna
And lower in that file is a section with the bottom sharing of the post
https://www.screencast.com/t/cXKawQ2l3SRS
You will have to make modifications according to where you want them to display, top or bottom. To change the language for the Facebook like in the bottom sharing enter the code exactly like this
https://www.screencast.com/t/RCIUxAqBO8F
https://www.screencast.com/t/zY1y16MXVC
https://www.screencast.com/t/2puNN5QuU

This is the code used locale=bg_BG&
There you can remove the twitter button for the section you want, by commenting or deleting the code
https://www.screencast.com/t/nkhl0Fkjjs
Or you could simply hide it with css
https://www.screencast.com/t/yq9ent8qrKg

.single #twitter-widget-1 {
display: none;
}

You could make the modifications to this file in a child theme if you don’t want to make them after each theme update. The respective file can be modified through a child theme.
Here is a guide about cresting a child theme and how to use it
https://forum.tagdiv.com/the-child-theme-support-tutorial/

Thanks

Simion C.
tagDiv Staff

Hi,

Yes it seems the class used has changed, sorry about that. Please try it like this

@media (max-width:767px){
.entry-crumbs{
display:none!important;
}
}

The code must be entered in Theme panel->Custom Css section.

Thanks

Simion C.
tagDiv Staff

Hi,

That happens because of the width available. When a sidebar is used the post content is smaller, and therefore uses a smaller image size or thumbnail. With no sidebar the post content can use all the available space and display the content differently. This affects the post content elements like the gallery for example. And the images used also influence the result.
If the gallery does not provide the results you want, you could search for a gallery plugin that maybe has more settings and options, that you can use to style it the way you want.

Thanks

Simion C.
tagDiv Staff

Hi,

If you want to display pages instead of posts in the blocks you can do it in the block filter settings. Here is a tutorial about all the available block settings and options
https://forum.tagdiv.com/block-settings-guide/

Thanks

Simion C.
tagDiv Staff

Hi,

It would be better to try and use images that will fit properly for best results. I could give you a code to make the background color white like you want, like this for example

.td-big-grid-post .td-module-thumb {
background-color: white;
}

Try entering it in Theme panel->Custom Css and see if it what you want.

Thanks

Simion C.
tagDiv Staff

Hi,

I don’t think I understand what you are asking. If you want to use the the video animation in a post content you could try it and see if it works properly.

Thanks

Simion C.
tagDiv Staff

Hi,

It seems you have reviews for the posts. If posts have reviews this will be displayed on the block modules replacing the other meta data. The reviews are present on your page but they are hidden
https://www.screencast.com/t/ruUv8QWKmWN
If you would like to remove the reviews form the blocks and display the date instead, you will have to make a modification in the file mentioned in this topic by Bogdan
https://forum.tagdiv.com/topic/hide-review-rating-from-blocks/

Thanks

Simion C.
tagDiv Staff

Hi,

The theme stylesheet can be minified to improve speed. There are online css minification tools that you can use for this purpose. There are many topics here on the forum with useful information and advice to improve page speed. Like this one for example
https://forum.tagdiv.com/topic/tip-how-to-easily-minify-your-css-without-breaking-your-site/

Thanks

Simion C.
tagDiv Staff

Hi,

You could remove the Latest articles only on mobile if you are using the mobile theme, with this code
https://www.screencast.com/t/fSUg7l4fa6W
Just enter it in Theme panel->Mobile theme Custom Css code

.td-pb-article-list .block-title span {
display: none;
}

Thanks

Simion C.
tagDiv Staff

Hi,

I have inspected your website, but I see no problem with the Sign in/Join modal
https://www.screencast.com/t/oavMK240akP
https://www.screencast.com/t/2qTsh42tPXT

Thanks

Simion C.
tagDiv Staff

Hi,

Please check the theme system status and make modifications if needed, according to this guide – https://forum.tagdiv.com/system-status-parameters-guide/
Deactivate all your plugins except tagDiv composer, clear any caching installed and create a new page again, then try to edit it using the composer. If it is still not working you can try a theme reinstall using this method
https://forum.tagdiv.com/install-via-ftp/ and test again while having only the tagDiv composer activated.
Please let us know if it works properly like it should.

Thanks

Simion C.
tagDiv Staff

Hi,

I believe the WordPress logo image can be found in the installation folder
https://www.screencast.com/t/yo3mromeqGPg
You could remove this image and place your own in that same folder. The image you want to use should be of the same dimensions, the same image format and also have the same name. Try it like that and see if it works properly.

Thanks

Simion C.
tagDiv Staff

Hi,

If you are using the mobile theme you can create and set a different menu for mobile. If the plugin is not active the same menu content from desktop will be displayed. Here you can find more about creating a menu
https://forum.tagdiv.com/main-menu/
And about the mobile theme as well
https://forum.tagdiv.com/the-mobile-theme/
So if you want you can create a menu and use that for mobile. It would be helpful if you could provide a link to your website, so we can inspect the issue if you have one with the menu.

Thanks

Simion C.
tagDiv Staff

Hi,

First disable all your plugins except the ones provided with the theme, clear any caching installed and check to see if the problem is still happening. It could be a plugin that is inserting that huge volume of text in the excerpt
https://www.screencast.com/t/2XrBKxbddK
Also check or remove any code entered in the theme custom code sections from theme panel, or added directly to the theme files. If you are using a child theme switch to the main theme, maybe this is causing the problems.

Thanks

Simion C.
tagDiv Staff

Hi,

I have already tried the code in the child theme and it is applying like it should on my end, and so it should for you. So the problem is not the child theme or the code. Try entering other custom codes and see if they work. Maybe you have caching on the website, you could try clearing the cache. Or maybe simply the child theme is not active, in the themes section.

Thanks

Simion C.
tagDiv Staff

Hi,

Yes you should go ahead and ignore that activation message. There is no need to activate the Visual composer plugin with a key. You can use all the features available in the version provided in the theme package. More about this here
https://forum.tagdiv.com/how-to-update-visual-composer-plugin/

Thanks

Simion C.
tagDiv Staff

Hi,

It would require quite some code to make them look exactly like that. You can try entering this code in Theme panel->Custom Css (color and other properties can be changed if you want to)
https://www.screencast.com/t/YoYroQYydI

.home .td_module_4 .td-post-category {
position: relative!important;
background-color: transparent;
margin-right: 0;
padding-left: 0;
padding-right: 0;
text-transform: uppercase;
letter-spacing: 2px;
color: #4db2ec;
margin-bottom: 2px;
font-size: 11px;
text-align:center;
}

Thanks

Viewing 25 posts - 17,951 through 17,975 (of 20,681 total)