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,

This should not happen if the page was built and edited using a single composer. Either Visual composer or tagDiv composer, not both. From what I see Visual composer was used to create the page.
Deactivating the tagDiv composer plugin should not have any negative effect in this case. It is recommended to deactivate it if Visual composer is used. Single images will not work properly if both are active, these work differently on each composer.

Thanks

Simion C.
tagDiv Staff

Hi,

All the plugins are provided in the theme package. After extracting the theme package archive, there will be a folder called plugins
https://www.screencast.com/t/Gmir2ynKNStf
There you will find the Visual composer plugin as well. The folder you are mentioning would be inside the theme itself
https://www.screencast.com/t/zVlnKg8Ws
That is related to the required theme plugins here
https://www.screencast.com/t/iWshFhEuJOX
Visual composer can no longer be installed from there.

Thanks

Simion C.
tagDiv Staff

Hi,

Please send us an email at contact@tagdiv.com and provide admin login information, we will investigate the issue. Also paste a link to this topic in your email.

Thanks

Simion C.
tagDiv Staff

Hi,

I don’t think I understand what the final result should be. On pages there is no need to use the HTML element to create a sidebar, that may not work properly as it can be seen. The sidebars can be created in the page with the elements you want using the chosen composer.

Thanks

Simion C.
tagDiv Staff

Hi,

If you use the desktop logo on affix menu it will still be resized, making it somewhat smaller. I could give you a code that will make the menu remain the same when sticky
https://www.screencast.com/t/cQ315Bgwm
Increasing just the logo size to normal size will not look properly, this would be a solution in this case

@media (min-width: 768px) {
.td-header-wrap .td-affix .td-main-menu-logo img {
max-height: 60px !important;
}
.td-affix #td-header-menu {
min-height: 60px !important;
}
.td-header-wrap .td-affix .sf-menu>li>a {
line-height: 60px !important;
}}

Thanks

Simion C.
tagDiv Staff

Hi,

Sorry for misunderstanding. For those elements there is no theme panel setting at the moment. However a code like this will make all the ajax filter items as you like, for all the blocks
https://www.screencast.com/t/MrczIKOn

.td-subcat-filter .td-subcat-list a {
color: black;
text-transform: uppercase;
}

If you want only blocks 3 and 5 to be affected it would be like this

.td_block_3 .td-subcat-filter .td-subcat-list a,
.td_block_5 .td-subcat-filter .td-subcat-list a {
color: black;
text-transform: uppercase;
}

Please let me know if the code needs modifications, or it is not what you wanted.

Thanks

Simion C.
tagDiv Staff

Hi,

It could be related to pagination. I found this topic
https://wpartisan.me/tutorials/wordpress-database-queries-speed-sql_calc_found_rows
Category pagination can be modified for each category or in general, but not disabled
https://forum.tagdiv.com/how-category-settings-work/
The theme requirements are mentioned here for the best results
https://forum.tagdiv.com/requirements-for-newspaper/
Also check these server and WordPress parameters seen in the theme system status
https://forum.tagdiv.com/system-status-parameters-guide/

Thanks

Simion C.
tagDiv Staff

Hi,

That is unusual. Maybe the theme did not install properly. Please try and reinstall then theme manually
https://forum.tagdiv.com/install-via-ftp/
Also check the theme system status and make modifications to the parameters mentions in this guide if necessary
https://forum.tagdiv.com/system-status-parameters-guide/
You could ask your hostingn provider to make them for you, they might have a recommended method for this. Then check if everything works as intended.

Thanks

Simion C.
tagDiv Staff

Hi,

There were three possible causes identified for this to happen. All described in this topic
https://forum.tagdiv.com/topic/errors-happened-during-tdciframedata-init-bindviewsmodelswrappers-14/
If your issue is not related to any of these suggestions, please send us an email at contact@tagdiv.com and provide admin login information. We will take a look.

Thanks

Simion C.
tagDiv Staff

Hi,

Please check in Appearance->Widgets, the sidebars may be empty. WordPress usually clear all sidebars and places the widgets in the inactive section. Check if that is the case, and move them in the sidebars
https://www.screencast.com/t/Ja7S7blMWQZK

Thanks

Simion C.
tagDiv Staff

Hi,

That is not one of the thumbnail sizes generated by the theme, there is no such thumbnail size 534×364
https://forum.tagdiv.com/theme-thumbs/
This size could be created by a plugin for some reason, it seems to appear in the page source for module mx4, besides the one created by the theme
https://www.screencast.com/t/F9Bh6kINrx
There should be no other size except the one used by the module
https://www.screencast.com/t/sdn1i6WkYJ

Thanks

Simion C.
tagDiv Staff

Hi,

On mobile you can display a different logo, than on desktop. Therefore you could create a logo more optimized for mobile devices and upload that instead
https://www.screencast.com/t/5oslMp1dAGIm
You should try using the recommended logo size for mobile for best results
https://forum.tagdiv.com/logo-favicon/

Thanks

Simion C.
tagDiv Staff

Hi,

That would be the name of registered the custom post type. I see that the custom post type name you use is ‘label’ => ‘Giocatori’ so that will be the sub-menu name as well. You could try the example solution provided here
https://wordpress.stackexchange.com/questions/66102/custom-post-type-menu-namee
Modify your code accordingly, I have tried it like this
https://www.screencast.com/t/OzzxyYjMW
https://www.screencast.com/t/s7vuOlf3gv

Thanks

Simion C.
tagDiv Staff

Hi,

The big grid styles can be seen here in the demo
https://demo.tagdiv.com/newspaper/big-grid-1/
On hover there is only a zoom effect, the gradient you mention is always present. This gradient color could be changed with some CSS. Like this for example, for the default big grid style
https://www.screencast.com/t/hvAEtKIY
This is the code used, enter it in Theme panel->Custom CSS if you decide to use it
https://pastebin.com/WUJi7twf

Thanks

Simion C.
tagDiv Staff

Hi,

I could give you a code to make table use 100% of the available post content space, the result would be like this
https://www.screencast.com/t/SAnt61zifg
Additionally you could increase the first column containing the list
https://www.screencast.com/t/cY7YcQLw
This is the code for the table width

.td-post-content table {
width: 100%!important;
}

This for the first column, use it if you wish (you may modify it)

.td-post-content table td:first-child {
width: 105pt!important;
}

These codes will affect all the posts that have tables inside the content. Enter them in Theme panel->Custom CSS code section.

Thanks

Simion C.
tagDiv Staff

Hi,

That is unusual, I have not seen similar issues her on the forum. So the revolution slider plugin activation is causing the images to not be visible. Please try to deactivate all other plugins if possible, except the theme plugins and the slider. Check if the images display properly.
Usually image problems like the one you mention are caused by plugin conflicts. Check with the browser inspector for errors in the console when the slider is active. Let us know the results.

Thanks

Simion C.
tagDiv Staff

Hi,

There were three possible causes for this to happen. All described in this topic
https://forum.tagdiv.com/topic/errors-happened-during-tdciframedata-init-bindviewsmodelswrappers-14/
Check the Yoast SEO plugin settings and cache plugin settings. Do not edit pages built with a different composer. Try creating a new page and see if the error is still present.
Let us know the results.

Thanks

Simion C.
tagDiv Staff

Hi,

The Newsmag theme does not yet have this feature. I don’t understand exactly what you would like to do. There is an option to set a video background don rows, by video ID. In the row any element can be placed. Add a text element if that is what is needed.
Be sure to check the new multi-purpose elements added in the update as well.

Thanks

Simion C.
tagDiv Staff

Hi,

According to Instagram, for WordPress the URL can simply be pasted in the post content text editor, and it should display properly
https://www.instagram.com/developer/embedding/
https://www.screencast.com/t/CPZja861gMOM
https://www.screencast.com/t/inF8miUL
The URL must not be hyperlinked and should be placed on a line by itself. If that is how they were made, there should be no problem.

Thanks

Simion C.
tagDiv Staff

Hi,

If you use Visual composer, then deactivate the tagDiv composer. When both editors are active such issues can happen.

Thanks

Simion C.
tagDiv Staff

Hi,

Please check with the browser inspector, in the network tab, as you try to open the text editor. See if there are any forbidden or denied processes
https://www.screencast.com/t/UOU2b5oZk2Z
Let us know the results.

Thanks

Simion C.
tagDiv Staff

Hi,


@pmerlihan
I believe at the time of inspecting the website I checked, the latest version of the theme was installed, but I could be wrong.

However we will make further investigations in this matter and fix the issues found, in a theme update. This will happen as soon as possible.

Thanks

Simion C.
tagDiv Staff

Hi,

The image should resize as you want if you set the image size to contain
https://www.screencast.com/t/gUuxHeZvBHHN
Try it like that and check the results.

Thanks

Simion C.
tagDiv Staff

Hi,

The speed booster plugin will move the stylesheet and javascript loading to the bottom of the page. This should improve the website speed by simply activating the plugin
https://forum.tagdiv.com/how-to-make-the-site-faster/
Activating it should not cause the header menu to be black, that is unusual.
The plugin status will appear in the theme status section, it will not be active if it detects plugins that are not part of a predefined list. This is implemented because the booster could cause some plugins to not function correctly. The check could be disabled with the solution provided in this topic
https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/

Thanks

Simion C.
tagDiv Staff

Hi,

The breadcrumbs should be displayed if enabled in the theme panel
https://forum.tagdiv.com/breadcrumbs/
Check if they are enabled there and they will appear.

Thanks

Viewing 25 posts - 14,076 through 14,100 (of 20,681 total)