Hi,
If you installed the example plugin provided in that tutorial, and made the modification like in the screenshot, it should work properly. Add the code exactly as shown, and do not make any other modifications in the block php file.
By default it looks like this
– https://www.screencast.com/t/eooCHzeR
Enter the code as shown
$buffy .= '<div class="td-block-title-wrap">';
$buffy .= '</div>';
– https://www.screencast.com/t/O4UFs8I7AW8
It should work if you add the code correctly
– https://www.screencast.com/t/lbwI2sDGlL
Thanks
Hi,
Well there are many topics that I can find related to this connection issue. For some increasing the autosave interval may be a solution. For others it is a problem caused by a plugin
– https://wordpress.org/support/topic/regular-connection-lost-saving-has-been-disabled-until-youre-reconnected/
– https://wordpress.org/support/topic/connection-lost-saving-has-been-disabled-until-youre-reconnected-10/
– https://wordpress.org/support/topic/connection-lost-saving-has-been-disabled-until-youre-reconnected-were-backin-4/
It seems there is no specific solution, or an exact cause.
Thanks
Hi,
That is the only way at the moment, since the tagDiv composer does not yet have a dedicated element for this purpose. I believe in Visual composer the Maps element is set to 100% width, you could make this modification in the actual iframe code
– https://www.screencast.com/t/kkKnBLhl0Zr
Thanks
Hi,
Only one Facebook account can be added to an instance of the social counter. If you place the social counter element in different pages or sidebars, you can configure it each time with other accounts if you want to
– https://forum.tagdiv.com/tagdiv-social-counter-tutorial/
Thanks
Hi,
Try entering this code like shown in the screenshot, in your custom block file
– https://www.screencast.com/t/l0EPhsy5UHo
Thanks
Hi,
If you would like to display those sharing buttons on the modules, you will have to edit the module files that the block is using
– https://forum.tagdiv.com/theme-blocks-modules/
Edit the module that is needed and used by the blocks you are using, and try inserting the code there presumably after the excerpt field
– https://www.screencast.com/t/o71IkyYTvHYe
For the top and bottom sharing of the post in the post page, you have to edit the corresponding loop file to the post template style that you are using. These loop files are found in the main theme folder. Try replacing the default sharing code on the post, with the code you were provided
– https://www.screencast.com/t/Ppanpg4FBnUg
Thanks
Hi,
It seems that you do not have the theme active at the moment, on your website
– https://www.screencast.com/t/WYcRALalzv6
The default WordPress theme is active. Please activate the theme and then we will inspect the issue with the modal feature.
If you have followed the steps exactly as described in the guide, there should be no problem with the modal image feature.
Thanks
Hi,
There are 12 header styles that you can choose from, each one has it’s own design
– https://forum.tagdiv.com/header-styles/
There are also options to stretch the header elements, in the theme panel
– https://www.screencast.com/t/dzLlRsYiGn9
Thanks
Hi,
Yes that post belongs to those three categories. But the category tag displayed on the module will be only one, that of the primary category of the post. By default the primary category is the first one alphabetically.
Without the code this is how that post is displayed on the block
– https://www.screencast.com/t/bzCg8Oli
You wanted to hide the Gallery tag on the module, the code does that. Like I previously mentioned, if a post has multiple categories you can control which category tag will appear on blocks by manually setting a primary category
For example this post has three categories
– https://www.screencast.com/t/8ao6NkRfd
Without setting a primary category manually, the first one alphabetically is displayed
– https://www.screencast.com/t/YUNMwHg0
Setting a primary category has this result
– https://www.screencast.com/t/1Y8vqSFyZ3JG
– https://www.screencast.com/t/bb0WQ0hqHrXd
The post will still be part of those categories, but the tag displayed in the one you choose.
The module only picks the primary category tag, hiding the Gallery tag will not make one of the other category tags to display
– https://www.screencast.com/t/U3m0hVvtA
Thanks
Hi,
That is how the Recipes demo was designed. It is meant to have that margin on the top, with a specific media condition
– https://www.screencast.com/t/lxCOzu66h
You can remove it by entering this code in Theme panel->Custom Css
– https://www.screencast.com/t/m6sKd5wff
@media (min-width: 1180px) {
.td-recipes.td-boxed-layout #td-outer-wrap {
margin-top: 0;
}}
Or by editing the demo stylesheet directly and removing it form there
– https://www.screencast.com/t/kxwepDsELUif
Thanks
Hi,
That is why one should always provide more details about the problems or questions. It is always helpful, quicker and more accurate solutions are given.
You can post an image using the forum, or simply pasting a link to a shared image
– https://www.screencast.com/t/uOj1xYipitO4
Thanks
Hi,
The date displayed in the blocks can only be disabled globally. There is no setting for specific block. You could maybe hide it for all the blocks and display it just for these blocks with a code like this
.td_block_wrap .td-post-date,
.td-post-author-name span {
display: none;
}
.td_block_9 .td-post-date,
.td_block_9 .td-post-author-name span,
.td_block_17 .td-post-date,
.td_block_17 .td-post-author-name span{
display: inline-block;
}
It may require more modifications to it, but you can test it and see if it works properly.
I have tested the category filtering with the popular (all time) post sorting, and it is working properly. The block does not display posts from the not included category, even if they are more popular. Make sure you have post views enabled in the theme panel, this sorting will not work if post views are disabled
– https://forum.tagdiv.com/block-settings-guide/
Thanks
Hi,
Maybe that plugin is simply incompatible with the theme in some level. Or it could be a setting of the plugin configuration that is causing it. You could try to search for similar issue with it, or maybe search the plugins support forum and also ask the plugin developers for advice.
Thanks
Hi,
Please follow the solution provided in this topic, if you want to add more custom ads
– https://forum.tagdiv.com/topic/how-can-i-customize-my-ads/
Thanks
Hi,
All the blocks that you could use in Visual composer are present in the tagDiv composer as well. Other specific Visual composer elements are not present however. The tagDiv composer is not meant to be a copy of Visual composer.
More elements will be added to this front-end editor in future updates exclusively, that is why it is recommended to use tagDiv composer to create your pages
– https://forum.tagdiv.com/visual-composer-tagdiv-composer-transition/
– https://forum.tagdiv.com/tagdiv-composer-tutorial/
Please specify what exactly you have problems with creating your page, and we will try to help you.
Thanks
Hi,
This is how the Read more button link is implemented in a module that features it
– https://www.screencast.com/t/U9anLMNaAo
Block 4 uses module 2, you could copy the the code from module 11 inside this one, like this
– https://www.screencast.com/t/gmV6RzxD7
The result would be like this
– https://www.screencast.com/t/wNrd9ETGU7
Now you could add some margin for the button, since it has none
– https://www.screencast.com/t/EbRbD8M9SPR
The code must be entered in Theme panel->Custom Css
.td_module_2 .td-excerpt {
margin-bottom:15px;
}
Thanks
Hi,
The modules that form the blocks can only display what they are meant to, like the date, category tag, author, excerpt etc. The process of handling these predefined elements is done automatically. This is an example of how a module structure looks
– https://www.screencast.com/t/J7PyfrlD
It gets the post information and displays it, the module will not display anything else.
Thanks
Hi,
If you mean the widget titles, the font properties for these can be changed in the theme panel
– https://www.screencast.com/t/2OCqHMB7sYK6
Other elements from the footer can be changed in the footer section
– https://www.screencast.com/t/kxy08MEDq
More information about the theme font customization options here
– https://forum.tagdiv.com/font-customization/
Thanks
Hi,
You could achieve something like that by setting a margin for the body, and the background will display above the header as well. Like this example
– https://www.screencast.com/t/nDyaErBbvYgX
This is the code used in the example (you can modify the margin value as you want). If you decide to use it, enter it in Theme panel->Custom Css section
body {
margin-top: 300px;
}
Thanks
Hi,
There is no option in the theme for this, but you can try a code like this one
– https://www.screencast.com/t/e9kMlrpD1
It will increase the font size just for the socials displayed in the top menu (you can set the size you want in the code)
.td-header-sp-top-widget
.td-social-icon-wrap
.td-icon-font {
font-size: 18px;
}
Enter it in Theme panel->Custom Css section.
Thanks
Hi,
There is a solution that you can try and see if it works for you
– https://forum.tagdiv.com/topic/facebook-comments-2/
Though you could simply use a plugin to achieve this as well.
Thanks
Hi,
If you activate the mobile theme plugin, that has it’s own stylesheet. This can be found in the mobile folder, in the main theme directory
– https://www.screencast.com/t/q0Tstsh0Xd
There are no plans at the moment to implement RTL in the theme, I could not say when this will be available.
Thanks
Hi,
That is the category of the post. The modules will display the post category if it is enabled in the theme panel
– https://www.screencast.com/t/04VDR0VH
If you have a post in a category called “Recipes” for example, this category tag will be displayed on blocks for that post. If a post has multiple categories and you want to control which one is displayed on the blocks, you need to set a primary category for the post
– https://forum.tagdiv.com/primary-category/
You can create any categories you need and assign posts to them
– http://www.wpbeginner.com/glossary/category/
Here you can find more information about the category settings and options available in the theme
– https://forum.tagdiv.com/how-category-settings-work/
Thanks
Hi,
Please follow these guides for more information about speed optimization
– https://forum.tagdiv.com/system-status-parameters-guide/
– https://forum.tagdiv.com/how-to-make-the-site-faster/
– https://forum.tagdiv.com/cloudflare-cdn/
There are many topics here on the forum as well, from which you can learn valuable advice. Here are some examples that you can read
– https://forum.tagdiv.com/topic/score-100100-pagespeed-with-newspaper-wordpress-theme/
– https://forum.tagdiv.com/topic/newspaper-theme-speedify-your-website/
Thanks
Hi,
I don’t think I fully understand what exactly you want to modify about the shadow. If you could provide some additional details about this it will be very helpful.
Thanks