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,

I believe the contributor can only edit posts before they are published/approved by the admin, while pending review
https://www.screencast.com/t/SfUsGKZbPc5
After being approved and published by the admin, the option to edit disappears, the contributor can only view them
https://www.screencast.com/t/vTsd8VyrVLuN
I will add this on our list, the option to edit should not be displayed on the modules for contributors since they cannot edit posts. Sorry for any inconvenience caused.

Thanks

Simion C.
tagDiv Staff

Hi,

Please provide a link to your website where the image is displayed, so we can take a look at the issue.

Thanks

Simion C.
tagDiv Staff

Hi,

There is no setting to remove that option from the admin bar. It could only be removed by editing the composer plugin files
https://www.screencast.com/t/bG6AammI
Comment or remove that code and it should not appear anymore.

Thanks

Simion C.
tagDiv Staff

Hi,

You can style the blockquotes using theme options
https://demo.tagdiv.com/newspaper/blockquotes-pullquotes/
https://forum.tagdiv.com/post-formats-for-tinymce/
Font properties of the blockquotes can be changed in the theme panel as well
https://www.screencast.com/t/r1yG8Qu5
You could even set a color and background color while creating the quote
https://www.screencast.com/t/7clZ0lI9euh
Only then if you require additional customization you would need to use CSS. Use the browser inspector to identify the elements and create or adapt the code
https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/

Thanks

Simion C.
tagDiv Staff

Hi,

That is unusual. There should be screen options there. Check other sections and see if the same issue is present. Check in a page for example
https://www.screencast.com/t/Uv5FBzuFf
Usually this kind of issues when they happen, they are caused by a plugin. You could try deactivating all plugins except theme plugins and see if this has any effect.

Thanks

Simion C.
tagDiv Staff

Hi,

Please provide some more details about how are you adding the code. I believe you are referring to the section that is displayed below the website footer.
There is no theme ad section created to display an ad below the footer, so it should not be displayed there.

Thanks

Simion C.
tagDiv Staff

Hi,


@mahadzira
If you have installed the black demo, changing the background color on post pages to white would have this result
https://www.screencast.com/t/DFvNgqJw24O
All white elements will not be visible anymore because of the demo was designed. If you want to customize the demo, you can make the modification in the demo stylesheet directly
https://www.screencast.com/t/BXtIB0KpVO
If you could provide a link to a post on your website, I will try to give you some pointers.

Thanks

Simion C.
tagDiv Staff

Hi,

Yes, that is the case. Category pages can only be customized through the theme panel, at the moment. The composer can be used on normal pages.

Thanks

Simion C.
tagDiv Staff

Hi,

Adding an additional menu would require theme files modifications, the theme supports two header menus, top and main menu
https://forum.tagdiv.com/main-menu/
The menu items will fall on a second row by default if there are too many menu items.
There are some solution in these topics if you would like to implement am additional menu in the header
https://forum.tagdiv.com/topic/second-menu-2/
https://forum.tagdiv.com/topic/additional-menu-option/

Thanks

Simion C.
tagDiv Staff

Hi,

Changing the whole menu design would require customization, but it would be based on the same functionality. You could make modifications to it with CSS, and change the appearance. Use the browser inspector in order to do this
https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
For example such a code will add similar borders
https://www.screencast.com/t/Utj1xs2C

.td-mobile-main-menu .menu-item {
border-bottom: 1px solid black;
}
.td-mobile-main-menu .td-icon-menu-right {
border-top: 1px solid black;
}

You can further customize the menu as you wish.

Thanks

Simion C.
tagDiv Staff

Hi,


@e_roubos
If the single image is not providing the expected results, you could enter the desired image in a text element and check the results with that method
https://www.screencast.com/t/6gLTrQp8cDj

Thanks

Simion C.
tagDiv Staff

Hi,

I found this useful guide about what to do in this case
https://www.rebelytics.com/crawl-errors-google-search-console/
I believe you should disallow access to the wp-content folder either through htacess or robots, it seems that is the general recommendation. Some useful resources here
https://productforums.google.com/forum/#!msg/webmasters/SK2BsweaF-0/UuZrsK3Fq00J
https://yoast.com/ultimate-guide-robots-txt/

Thanks

Simion C.
tagDiv Staff

Hi,

It seems to direct to Facebook at the moment
https://www.screencast.com/t/wS1wIn07D5o
https://www.screencast.com/t/ZelG2uU5dGq
If the link to the account is entered properly in the theme panel social networks field, there should be no problems.

That is the footer menu, you can create your own menu and set it in the theme panel
https://www.screencast.com/t/yQxwFSww4

I could give you a code to increase the top padding on the logo tagline, for mobile. Try entering this code in Theme panel->Custom code->Advanced CSS in the phones section

.td-logo-text-container .td-tagline-text {
padding-top: 10px;
padding-bottom: 2px;
}

Thanks

Simion C.
tagDiv Staff

Hi,

You can use any color you want in the code, that is just an example. Create your color in the same rgba format or use any color format you want. If you want to keep the current color format, try this color generator
https://www.hexcolortool.com/
Replace the color example according to your needs.

Thanks

Simion C.
tagDiv Staff

Hi,

That would be the case if you have the mobile theme plugin active. The mobile pages will not display page content built with the composer. Mobile page content is restricted to the mobile editor
https://www.screencast.com/t/wo5YaxMrzJlo
Please note that the mobile theme plugin is not required, you can simply deactivate it, then the same content from desktop will be displayed on mobile
https://forum.tagdiv.com/the-mobile-theme/

Thanks

Simion C.
tagDiv Staff

Hi,

Thank you for your appreciation.
1. Please provide a link to your website so we can inspect the issue. If you have the actual Whatsapp application installed on the mobile device you are testing with, there should be no problem.

2. The titles can be customized with the Yoast SEO plugin
https://www.screencast.com/t/WTpQTObCcD
https://kb.yoast.com/kb/yoast-wordpress-seo-titles-metas-template-variables/

Thanks

Simion C.
tagDiv Staff

Hi,


@BruceInLouisville

1. If the page contains no page builder elements (blocks, grids etc) regardless of composer used, the page title will be displayed. The page title will appear if the page contains content added through the default MCE editor.
A solution would be to enter this code in Theme panel->Custom CSS when using default page template

.page-template-default .td-page-title{
display:none;
}

2. You could target specific pages with the actual CSS code. So for example you would like to remove the page title on one specific page, with the code mentioned above
https://www.screencast.com/t/OCrsCnUuJ13s
https://www.screencast.com/t/187t2cwS5


@pildat

The author can be removed for pages in block settings
https://www.screencast.com/t/H70ufYfxy
And for posts in post settings
https://www.screencast.com/t/3D0eMOXyxqZ

Thanks

Simion C.
tagDiv Staff

Hi,

The theme provides the tagDiv composer and Visual composer. The tagDiv composer (front end drag and drop builder) can only be used on pages
https://forum.tagdiv.com/tagdiv-composer-tutorial/
In future updates there will be a considerable amount of options and settings added, only for the tagDiv composer, take that into consideration before choosing a page builder. Only one page builder should be used for the website.
Visual composer is recommended to be used only on pages, although it can be used on posts too
https://forum.tagdiv.com/how-to-use-visual-composer/
Category pages can be customized through the theme panel
https://forum.tagdiv.com/how-category-settings-work/

Thanks

Simion C.
tagDiv Staff

Hi,

We try our best to reply as soon as possible. Please take into consideration the support hours and time differences. Try to post the details in one instance, replying in your own topic will only delay the response. We answer from oldest to newest.
The theme has a top menu and a main header menu available, so there is an option to display two separate menus.
If you want something similar to that example, where there are multiple lines of menu items on above the other, you could try some header styles that display the top menu above or below the main menu (header style 5 or 12 maybe)
https://forum.tagdiv.com/header-styles/
The website you mention has a similar implementation. There is a top menu and a main menu with logo
https://www.screencast.com/t/Da7vjlhy
https://www.screencast.com/t/WHB1dqbp
The section below the main menu seems to be a trending now element, no connection to the menus.

Thanks

Simion C.
tagDiv Staff

Hi,

So you are setting a logo in the theme panel, and it is not displayed on the website. That could be caused by caching, try clearing all caching installed.
Or what happens is that you set the logo in the theme panel, and the setting is not saving. If that is the case please check while saving, in the browser inspector console to see if there are any errors
https://www.screencast.com/t/ahYQ49sd3

Thanks

Simion C.
tagDiv Staff

Hi,

It seems a required file from the composer is possibly not found on the server, try deactivating and deleting the composer and install it again. Then check if it works properly.
There is a somewhat similar topic here
https://forum.tagdiv.com/topic/wheel-of-death-using-tagdiv-composer-on-new-install/
The conclusion being that the hosting was denying access to composer files.

Thanks

Simion C.
tagDiv Staff

Hi,

I have tried the Visual composer gallery, there is no image blurring applied on the images I selected from what I can see. I chose images of different sizes, small ones to big ones, with the same settings as you mention
https://www.screencast.com/t/W9zTyiZna2
The results are here
https://www.screencast.com/t/juVWDRno
https://www.screencast.com/t/Dl8RXoqQFid
https://www.screencast.com/t/QeqwhZqR
The image processing is done entirely through Visual composer, there are no settings to choose in the image gallery in terms of quality.
If a smaller image is used in it, it will not stretch it to become blurry, it will be displayed as it is. If there are bigger images there should be no problem.
If you could provide a link to this gallery on your website, we will inspect it.

Thanks

Simion C.
tagDiv Staff

Hi,


@douglassoldan
Please try the suggestions provided above, check the configuration of the theme system status first. Ask your hosting provider to make modification if needed, according to the values presented in the guide.
Then check if the issue is still present. To rule out a plugin conflict deactivate all plugins except theme plugins and try again.
If there is still an issue 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,

The MCE editor is added and can be used on category descriptions, if you have the Yoast SEO plugin installed. But it could be enable differently, there are solution online that you could try. Or simply install Yoast SEO and it will be available.
For different excerpt lengths on the same module types, you will have to set them manually for each post.
The excerpt field should be visible in each of the post edit screens, if it is not please check if it is enabled in the screen options
https://www.screencast.com/t/afXKfbTGnEO2

Thanks

Simion C.
tagDiv Staff

Hi,

It is how I thought, there have not been any tests made up until this point, in this matter. As a pointer please check this screenshot, it may be useful to you for testing
https://www.screencast.com/t/sZra4aXDVMae

Thanks

Viewing 25 posts - 14,376 through 14,400 (of 20,681 total)