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 remembered a similar case a while ago, the solution was to comment a few lines of code in the composer plugin and in a theme file
https://www.screencast.com/t/hhSQSlaa
https://www.screencast.com/t/l9Zzfj3ISy3
This would be the second case where this is happening. The respective user did not mention after this solution was suggested, if the problem was solved or not. Please give it a try and monitor the situation further.

I believe it is on our list for investigation, but it is highly rare to happen and may take a while to identify possible causes. Sorry for the inconvenience.

Thanks

Simion C.
tagDiv Staff

Hi,

So you want to remove the demo stylesheet? Kind of unusual. Why would you want to do that exactly? Some demos contain a custom stylesheet with design for various elements which is not possible to do by other means. Removing the stylesheet will remove the custom design.

However if that is what you want to do, use a code like this in either main theme or child theme functions file

function dequeue_demo_style() {
wp_dequeue_style( 'td-theme-demo-style' );
wp_deregister_style( 'td-theme-demo-style' );
}
add_action( 'wp_print_styles', 'dequeue_demo_style', 1002 );

The demo stylesheet should not be loaded anymore after you enter the code.

Thanks

Simion C.
tagDiv Staff

Hi,

What would you like to put above the featured image? Are you referring to single post pages or modules? For example when using cloud post templates you can easily add content around the featured image
https://www.screencast.com/t/1mHmateff
In default post templates it would require modifications to the post template files
https://www.screencast.com/t/7QFkD9BOiYB8
The respective element you want to display can be placed above or below the image code.

In modules it would require modifications to the desired module
https://www.screencast.com/t/FxOQ8AQb

Thanks

Simion C.
tagDiv Staff

Hi,

From what I can see you are using the default WordPress blog page, with module 15 to display the posts. Module 15 will show the whole post content.

Some smart list templates can display ads – https://www.screencast.com/t/ulEiXrsix
For example styles 6 and 7 display the ad like this
https://demo.tagdiv.com/newspaper/whitewater-rafting-day-trip-new-york-east/
https://demo.tagdiv.com/newspaper/10-landscapes-wont-even-imagined-exist/

But there are no ad spots above and below the smart list pagination. The website you are referring to seems to use a plugin slider
https://www.screencast.com/t/0F4C0EQV2ki
Maybe that has options to display ads like that.

The pagination you are referring to is the smart list pagination. Module 15 you use for the blog page displays all the post content in the homepage
https://www.screencast.com/t/de5Ys1Xy
So if there are smart lists in the post, they will appear in the homepage, since the whole post content appears. But I see you removed it with CSS at the moment.

Thanks

Simion C.
tagDiv Staff

Thank you for your kind words, the best of wishes to you as well. Happy holidays!

Simion C.
tagDiv Staff

Hi,

Replied via email.

Thanks

Simion C.
tagDiv Staff

Hi,

Use these two functions for example, they seem to work for single product and archives
https://wordpress.stackexchange.com/questions/218348/translating-add-to-cart-woocommerce-button
http://prntscr.com/m01j4v

Thanks

Simion C.
tagDiv Staff

Hi,

So while saving the page in the composer the save animation keeps spinning? There is an issue currently with the mobile theme plugin, which causes this to happen.
The content or settings in the page will be saved, but the animation will be unresponsive and there will be no success message.

We try to fix issues that are identified as quickly as possible. We make many tests before releasing updates containing new additions or fixes, but sometimes issues still happen. Sorry for the inconvenience.

Thanks

Simion C.
tagDiv Staff

Hi,

1. Why exactly can’t the WPBakery page builder be used anymore? It is provided in the theme package and we test it periodically, usually when it is updated
https://forum.tagdiv.com/how-to-update-visual-composer-plugin/
There is no need to active the WPBakery plugin, only purchased versions from the plugin author will have a license key. The bundled version with the theme doesn’t have to be activated.
What are the problems you are having with the WPBakery page builder?

2. Here are some guides – https://forum.tagdiv.com/tagdiv-composer-tutorial/
Block settings guide – https://forum.tagdiv.com/block-settings-guide/’
The tagDiv composer is a front-end builder only. It’s possibilities were greatly increased by the addition of the cloud library plugin
https://forum.tagdiv.com/tagdiv-cloud-library-plugin/

If you have more questions please let us know.
Thanks

Simion C.
tagDiv Staff

Hi,

Maybe contact the ad provider and mention that the ads are not loading, the codes may not be valid or used properly. I see some errors regarding adsense ads in the website currently
http://prntscr.com/m019sh
Those look like Adsense ads, usually 403 errors are caused if the account is not yet approved by Google
https://support.google.com/adsense/answer/76228?hl=en
https://support.google.com/adsense/answer/7584263?hl=en&ref_topic=1391540
https://support.google.com/adsense/answer/9724?hl=en
https://support.google.com/adsense/troubleshooter/7049023?hl=en

Also if you use Adsense don’t place the ads in sticky sidebars, that would be a violation of their terms and their could be penalities
https://www.screencast.com/t/HYbizghtmm

Simion C.
tagDiv Staff

Hi,

That thumbnail seems alright, it is used by the module 5 you have selected for the search results page in the theme panel
https://www.screencast.com/t/djNhMMk1k
What exactly is the problem you are having with this thumbnail? Some more information would be helpful.

Thanks

Simion C.
tagDiv Staff

Hi,

Please check if the WP-debug is set to false in the WP-config file, then check if the warnings are removed
https://forum.tagdiv.com/requirements-for-newspaper/
Let us know if there still is a problem after doing this, or you have more questions.

Thanks

Simion C.
tagDiv Staff

Hi,

The post templates cannot be removed from there by a setting. You could try some CSS like this
https://www.screencast.com/t/r7aUJi0RH
It will target the default post template “Single template”, enter it in the Gutenberg stylesheet here
https://www.screencast.com/t/mAYyjvv1vDn
Then force refresh the post edit page a few times, it should work.

.td-post-option-general .td-small-wrapper-o a[title$="Single template"] {
display: none;
}

Thanks

Simion C.
tagDiv Staff

Glad it is fixed, that was a known issue reported by many users, we tried to fix it in the quickest time possible.

We add each new feature and fix in the update changelog on themeforest, also in the theme package update log, so the users know what has been changed
https://www.screencast.com/t/QreNmcBdR2P

Simion C.
tagDiv Staff

Choose the image that you want and name it “favicon.ico”, then upload it in the root website directory. It will be picked by AMP and displayed, it seems to work in my case.

Simion C.
tagDiv Staff

Hi,

Some footer styles come with predefined content (defined in the footer template code)
https://forum.tagdiv.com/footer-templates/

You can select an empty (blank) footer template and display your own widgets. Or even set a footer page
https://www.screencast.com/t/Xo5ZWqxaZW

There are footer pages designed by us which can be imported through the cloud library plugin and set in the theme panel
https://affiliate.tagdiv.com/#/load/Footers

Thanks

Simion C.
tagDiv Staff

Hi,

That is possible with some CSS, something like this fro example http://prntscr.com/lyy5sl

Here is the code used in the example

.td-more-articles-box {
right:auto;
left:-384px;
}
.td-front-end-display-block {
left: 0;
}

Merry Christmas to you as well, all the best wishes.

Thanks

Simion C.
tagDiv Staff

Hi,

So when the page is refreshed there are problems with the post loop element? I could take a look, provide a link to the website and I will inspect it.

Thanks

Simion C.
tagDiv Staff

@Sergionline What exactly are the AMP problems you are having? I checked a few of your posts, they are valid from what I can see – https://www.screencast.com/t/5wSleAEYk6

Simion C.
tagDiv Staff

Hi,

From what I can see lazyload is active in the website you provided, and the maps are loading fine, at least the ones I checked are
http://prntscr.com/lyxs4g
http://prntscr.com/lyxs9e
http://prntscr.com/lyxsgi
http://prntscr.com/lyxsma
We haven’t made any testing between the theme and events and maps, maybe there are problems that happen in some cases.

Thanks

Simion C.
tagDiv Staff

Hi,

What version of theme are you using? There have been some issues when using shortcodes in a previous theme version
https://forum.tagdiv.com/topic/shortcode-in-text-element-convertered-to-html/
The shortcodes were rendered, that could potentially be the cause of the problem in your case.
The latest theme update contains the fix for this issue, fix that was made in 9.2
https://www.screencast.com/t/Ll5oXhkY2qxx

Thanks

Simion C.
tagDiv Staff

Hi,

Yes, that will be the proper way to do it. The full theme packages contain a plugins folder, there you will find the WPBakery page builder as well
https://forum.tagdiv.com/whats-included/
https://forum.tagdiv.com/how-to-update-visual-composer-plugin/
The latest theme package contains the latest WPBakery version – 5.6.

Thanks

Simion C.
tagDiv Staff

Try to create a favicon.ico in the root directory of the website, seems that the image is chosen. If there is no such favicon.ico create one and upload it there by FTP.
For example in my case – https://www.screencast.com/t/vU9SRWyAjKA
Result in AMP – https://www.screencast.com/t/XOSy8og7TQW

Simion C.
tagDiv Staff

Hi,

Currently the post cloud templates can be applied to individual posts (in the post edit screen) or in general to all posts (the setting in the theme panel).

I believe there will be an option introduced in the future, there will be a setting to choose and set a post template for all the posts belonging to a specific category, at once. But at the moment that is not possible.

As a side note please try not to reply in your own topic multiple times before we reply, this will only delay the response from us, by refreshing the topic date. We will answer from oldest to newest.

Thanks

Simion C.
tagDiv Staff

Hi,


@mehedi57
The links in the post content will be underlined when hovered with the mouse
https://www.screencast.com/t/lJv4pr0Al5BH
If you want them to be underlined when they are not hovered as well, maybe try as suggested in this topic
https://forum.tagdiv.com/topic/how-to-get-underline-in-external-links/
Experiment with the codes provided there, here is an additional guide
https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/

Let us know if you need more help.
Thanks

Viewing 25 posts - 4,701 through 4,725 (of 20,681 total)