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,

That is not the Speedbooster that you need to modify. The required file is td_wp_booster_functions.php located as shown, in the main Theme folder->includes->wp_booster. Please check the screenshot carefully
https://www.screencast.com/t/fssgPR1v93BM

Thanks

Simion C.
tagDiv Staff

Hi,

At the moment there is no option for saving templates, unfortunately. Something like this may be added in future theme updates, but I could not say for sure when exactly this will happen. Please note that the tagDiv composer will receive more options and features in these updates.

Thanks

Simion C.
tagDiv Staff

Hi,

By default there is no option to remove the current post, from the recent posts widget. You could try the solution mentioned in this topic
http://techqa.info/wordpress/question/103570/how-to-hide-a-post-from-%27recent-posts%27-widget?
And instead of post Id’s use get_the_ID() and see if it works properly. Try the code in the theme functions.php file.

Thanks

Simion C.
tagDiv Staff

Hi,

Maybe you are not creating the page or sticky sidebar properly. In this example I have first added a Big grid on a page
https://www.screencast.com/t/Lr1gWzrW
Then I have added a new row and choose the needed row layout
https://www.screencast.com/t/qoF4MRUY
https://www.screencast.com/t/yIZtJKEz
Placed some content in the resulting columns
https://www.screencast.com/t/CEnOTIHCWm1B
In order for the sidebar block to be sticky you now need to add the class to the sidebar row, like this
https://www.screencast.com/t/2vMzetdxwD
This is mentioned in the last section of this guide
https://forum.tagdiv.com/smart-sidebar-2/
Please let me know if you have any more questions or need further help.

Thanks

Simion C.
tagDiv Staff

Hi,

I see that you want to use different fonts for the text logo and tagline. These fonts will not apply if they are not loaded by the theme. If they were set through the theme panel for a section or item, they would appear for the header as well.
You could either use those fonts somewhere on the website, and then the code would apply. Like in this example
https://www.screencast.com/t/6rO2D4Xr8c
https://www.screencast.com/t/qvAziPRKDV
Or simply upload custom fonts in the theme panel, and use them wherever you like. Check the custom font section in this guide
https://forum.tagdiv.com/font-customization/
Simply upload the woff font by following the instructions and use it
https://www.screencast.com/t/rgZCPbRf
https://www.screencast.com/t/GwwSCF2y
Additionally you can create different codes depending on device for different results, using the Advanced Css section in the theme panel. You can set a general font with the code you have, but don’t use a general font size.
Instead create different codes for the size depending on device, like this for example
https://www.screencast.com/t/E1Cx33tv8

Thanks

Simion C.
tagDiv Staff

Hi,

The woff font that you mention is the theme’s internal font used for various icons, throughout the website. Like here for example
https://www.screencast.com/t/ba2Dg9cSpx
Removing it would lead to this result
https://www.screencast.com/t/wvyTUTSE
I have inspected your website but I do not see the fonts being called twice, in the page source. I see that you removed the default fonts from the theme
https://www.screencast.com/t/LQXhM3yWiQ
If you would like to remove the google fonts call from the theme try commenting this code in this file
https://www.screencast.com/t/9TjPpbkgm4
For me the website is loading very fast, in a matter of a few seconds.

Thanks

Simion C.
tagDiv Staff

Hi,

For the link in the author box located in in the author page, you could use a code like this to modify the font size
https://www.screencast.com/t/gjwOFtIbJh

.author .td-author-url {
font-size: 15px;
}

That is the Author box/Authors box element from the page editor. It is available to be used on pages, and as a widget in the sidebar
https://www.screencast.com/t/nUhc8yFO02
https://www.screencast.com/t/DcV7wg8gm

Thanks

Simion C.
tagDiv Staff

Hi,

Glad you could solve the issue and activate the theme. Thank you for posting the solution, this may be useful to other users as well.

Thanks

Simion C.
tagDiv Staff

Hi,

We will take a look if you have sent us an email at contact@tagdiv.com and your login information. Please paste a link to this topic in your email as well, so we can identify you.

Thanks

Simion C.
tagDiv Staff

Hi,

Well that seems not to be possible, unless maybe with a plugin if there is one for this purpose. The link property that will cause it to open in different tab, is removed as soon as you update the profile. I found these topics about it
https://core.trac.wordpress.org/ticket/12056
https://geek.ng/2012/02/using-target_blank-and-other-html-in-worpress-authors-bio.html

Thanks

Simion C.
tagDiv Staff

Hi,

After further investigations it seems that this particular demo tat you have has a problem with the background ad functionality in the latest theme update. I have added the problem on our list, and it will be fixed as soon as possible. As a quick fix I could provide you a code that should make the background ad work, in theme version 8.
Please update the theme and enter this code in the Theme panel->Custom Css

@media (min-width: 1180px) {
.td-magazine.td-boxed-layout #td-outer-wrap {
width:auto;
}}
.td-boxed-layout .td-main-content-wrap {
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12);
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12);
}

I have tested this code and it is working for version 8. We are very sorry for this problem, and any inconvenience this might have caused for you. Please let us know if you still encounter issues in this matter, so we can provide you with a different solution.

Thank you for understanding!

Simion C.
tagDiv Staff

Hi,

You could upload your custom fonts in the theme panel and give them a name
https://www.screencast.com/t/2707XvNzyT
Then these fonts will be available for selection in the font sections and you can use them where you wish. More information here
https://forum.tagdiv.com/font-customization/

Thanks

Simion C.
tagDiv Staff

Hi,

If you mean the option from the MCE editor
https://www.screencast.com/t/sMFDeX2Z2cxv
I have tested this option and it is working normally for me. The link is opening in a different tab. When you add this property to the link, it should be visible when inspecting it
https://www.screencast.com/t/2u3An88jA7r

Thanks

Simion C.
tagDiv Staff

Hi,

If you need to, you could override that 10px margin with a code like this
https://www.screencast.com/t/4iVTfA5g

#twitter-widget-1 {
margin: 0!important;
}

Thanks

Simion C.
tagDiv Staff

Hi,

Yes that could be possible. If you could provide more details about where exactly you want to hide it, I will try to give you a solution.

Thanks

Simion C.
tagDiv Staff

Hi,

You can configure the website meta and also social sharing information with the Yoast SEO plugin. More information here
https://yoast.com/wordpress-seo/
https://yoast.com/wordpress/plugins/seo/titles-and-meta-descriptions/
https://yoast.com/meta-descriptions/
https://yoast.com/social-media-optimization-with-yoast-seo/

Thanks

Simion C.
tagDiv Staff

Hi,

Sorry for misunderstanding. That is a weird issue you are having, the video should be displayed in full-screen. It would be very helpful if you could provide a link to your website where this is happening, so we may inspect it further.

Thanks

Simion C.
tagDiv Staff

Hi,

Please provide more details bout what exactly you want to achieve, so I may understand better and give you accurate answer.

Thanks

Simion C.
tagDiv Staff

Hi,

I meant that entering manual links with the target property, in the author description field like this will not work
https://www.screencast.com/t/SdE4JpTW
Upon saving the profile it will be removed
https://www.screencast.com/t/IHai8sVOYfa
I thought this is what you were trying to do. If I misunderstood please correct me.

Thanks

Simion C.
tagDiv Staff

Hi,

I cannot access your website at the moment
https://www.screencast.com/t/VSWBn1vzF
As you mentioned, the theme does not support RTL. Modifying the theme to display properly in this situation may prove a difficult task. The theme elements are not optimized to display the best results under these circumstances. Some are directly dependent on direction.
If you decide to request a refund, you can do so and we will approve it. There probably are different themes that are RTL ready and would be better suited for this purpose.

Thanks

Simion C.
tagDiv Staff

Hi,

The mobile theme is optional and meant to improve the performance of a website, by displaying a different variant. It comes with predefined templates for the homepage, posts, categories etc. It will not display pages built with composers, or that contain particular widgets or other complex elements. Adding content for the mobile pages is limited to the mobile editor at the moment
https://forum.tagdiv.com/the-mobile-theme/
There will be no downside if you are not using the mobile plugin. The main theme is perfectly capable to display the best results on all devices.

Thanks

Simion C.
tagDiv Staff

Hi,

Please try to deactivate all your other plugins, clear any caching installed then activate the mobile theme plugin. It should activate and work properly. It could be a conflict between plugins. This is usually the case
https://forum.tagdiv.com/topic/mobile-theme-activation-error/

Thanks

Simion C.
tagDiv Staff

Hi,

Those elements are predefined and are displayed when selecting Footer template style 1
https://forum.tagdiv.com/footer-templates/
The Editor picks and Popular posts are created using Block 7
https://demo.tagdiv.com/newspaper/block-7/
The Popular category is a simple widget
https://www.screencast.com/t/4IaBixDB5
Other footer templates are blank, and require you to add widgets in the respective footer sections
https://www.screencast.com/t/hIAE4qQAt9u
That is where you can add widgets to the sidebars you have created as well.

Thanks

Simion C.
tagDiv Staff

Hi,

Please try and reinstall the theme using this method
https://forum.tagdiv.com/install-via-ftp/
Then try again while having only the plugins provided in the theme package active. If you have a child theme, switch to the main theme. All the parameters mentioned in the guide should be modified according to the documentation, please check that again.
After all this, if the theme panel is still not saving properly, please send us an email at contact@tagdiv.com and provide there admin login information. We will take a look and maybe identify why this is happening.
Also paste a link to this topic in your email. I will edit your previous reply and remove the login information because this is a public forum. You should not post sensitive data here on the forum.

Thanks

Simion C.
tagDiv Staff

Hi,

The infinite loading pagination is available only for blocks
https://www.screencast.com/t/9sBbunsx3Vd
https://forum.tagdiv.com/block-settings-guide/
And as a global or per category setting for the category pages
https://www.screencast.com/t/NEiot8clnX
https://forum.tagdiv.com/how-category-settings-work/
If you are not using the mobile theme plugin, the same content that you have on desktop will be displayed on mobile devices as well. When the mobile theme is enabled, this comes with predefined layouts for the homepage, post page etc. More information here
https://forum.tagdiv.com/the-mobile-theme/

Thanks

Viewing 25 posts - 17,526 through 17,550 (of 20,681 total)