Hi,
Yes it is possible. Check the page settings when the Latest articles template is selected
– https://www.screencast.com/t/5Pf3Ihb4
There you can see all the settings this page template has available.
Thanks
Hi,
Selecting a category in the filter tab here
– https://www.screencast.com/t/JHQT6dQsz
Will affect only the posts that appear in the block initially. It will not do anything else. The ajax filter offers an option to place categories (similar to a menu) on top of the block. This will allow users to filter the block if they want to. In the ajax filter you could display for example sub-categories of the main category chosen as the filter, to sort the posts (by adding IDs manually for better control).
That would be the functionality in the matter.
Thanks
Hi,
The theme uses these functions for the next/prev posts
– https://codex.wordpress.org/Function_Reference/get_previous_post
– https://codex.wordpress.org/Function_Reference/get_next_post
Located here in the theme – https://www.screencast.com/t/kN8hHgcM
You would have to experiment and make tests with the parameters the function accepts based on what you are trying to achieve, and check the results. More here
– https://developer.wordpress.org/reference/functions/get_next_post/
Thanks
Hi,
I have tried the same code you are using, the HTML tags are not interpreted in my case as well
– https://www.screencast.com/t/XUyKlrSpz
Removing the esc_html from the code seems to interpret the HTML code
– https://www.screencast.com/t/yCMqLbYbAB
– https://www.screencast.com/t/O56mqxBOA
You could try it like that.
Thanks
Hi,
The issue with the mobile plugin menu functionality could be caused by plugins, theme modifications or customization, these are to blame in most cases. I would suggest as a quick test to deactivate all non-theme plugins, then clear all caching. Check if the mobile plugin works as it should.
The theme will count the post views by actual page views, each time the page is viewed it will be added to the counter. Try refreshing the post page and check if the number changes accordingly. If you have caching then enable this option in the theme panel
– https://forum.tagdiv.com/ajax-view-count/
Thanks
Hi,
That is not normal behaviour, the socials should be hidden when there is not enough space available only. By default they should be visible in normal circumstances. If there is a problem, please provide a link to your website so we can inspect the issue.
Thanks
Hi,
Check the theme installation guides as well
– https://forum.tagdiv.com/install-via-ftp/
– https://forum.tagdiv.com/install-via-wordpress/
Let us know if you have further problems installing or using the theme.
Thanks
Hi,
That would not be difficult to do. Take a look at the demo ads for example
– https://www.screencast.com/t/6xD9X8PQg
First there is a class set to control for which devices the ad will be shown
– https://forum.tagdiv.com/using-other-ads-non-adsense-ads/
Then a link with the destination you want is set, and an image source. That is all that is needed to display an image of your choosing linking to a desired location. Use the examples in the guide if you want to control the devices for which the ad will appear. You could for example set different ads for each device if required
– https://www.screencast.com/t/mY7ZiZSTac
Thanks
Hi,
Indeed it seems the thumbnails are not created properly. Please try to regenerate the thumbnails
– https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
This process will recreate all the necessary thumbnails, the issue will be solved.
Thanks
Hi,
The background for the login modal can be changed in the theme panel. An image can be set in the background section
– https://www.screencast.com/t/NZs2rrCk
Colors can be set in the theme colors section
– https://www.screencast.com/t/kVwpHkpAKRJ
Please let us know if you have further questions.
Thanks
Hi,
With the multi-purpose plugin that would not be difficult. This offers multiple row settings
– https://www.screencast.com/t/5iydm2mJK2x
As well as adding many elements that can be used with the composer
– https://www.screencast.com/t/nsgp1Csh
Buttons for example have an option to scroll to class
– https://www.screencast.com/t/itGrOLZpx
They will scroll to a chosen class existing on the page when clicked. So depending on how you want to design the page in question, I am sure you will find the suitable elements for it. Here is a video demonstration of some of the multi-purpose elements
– https://www.youtube.com/watch?v=C0ARTSimnUY
Thanks
Hi,
That would be the initial style of the quotes, set by the theme. They can be controlled on the frontend with the theme panel settings you mention.
But in the post edit screen they will be the same initial style, as predefined here
– https://www.screencast.com/t/DqvEe8p86ja
So only through modifications there you would be able to affect the quotes in the backend. There would no theme options or setting to change theme when creating the post, at the moment.
Thanks
Hi,
Please deactivate all other caching plugins if you have others installed, leave only super cache active if you want to start using this plugin.
It could be a conflict between multiple caching configurations. So check if there are such plugins installed or maybe caching services provided by the server.
Thanks
Hi,
If there is an error, in almost all similar cases this was related to the server firewall or security configuration. It blocks or denies the admin-ajax request.
In this case you can contact the hosting provider and explain the situation, provide them with a screenshot of the error (usually a 403 error on the admin-ajax). They should be able to fix it easily.
Thanks
Hi,
1. That sounds like the smart sidebar option. While scrolling down the page, as soon as the end of the sidebar is reached, it will remain fixed. That is what the smart sidebar does.
If this option is not enabled the sidebar content will be fixed, in the initial position. It will remain there regardless of scrolling down the page. In case there is a problem, please provide a link to the page in question so we can inspect it.
2. I don’t quite understand the square shape you are referring to, if you could provide a screenshot of it, or a link to the page where it is present, it would be helpful.
Maybe you are referring to the comment count box
– https://www.screencast.com/t/uebVoSiRgx
I could try to give you a solution if that is what you are referring to, specify how exactly you want it to be.
Thanks
Hi,
The column content is a multi-purpose element, added when the multi-purpose plugin is active along with the tagDiv composer. Check if the plugin is active in order to be able to use the many available multi-purpose items.
The solution Bogdan provided is based on the column content element
– https://www.screencast.com/t/As8rsjDhxmY
This is many options for styling, use them to style it as needed. The shortcode you mention would be a call to action element, tagDiv composer also has a similar item
– https://www.screencast.com/t/cMMF3NQo
So you could use that element, it all depends on your requirements. These multi-purpose elements have many design options and possibilities, they may not be exactly similar to Visual composer items, they are not meant to.
Thanks
Hi,
So you would like tot display a text below the author box in the post page, in the same style of the block headers. There would be a method to do that. It will require you to enter it directly in the post template file used.
Each post template has a corresponding loo-single file (Ex. post template 2->loop-single-2).
Edit the post template you want to do this for, in this example I use post template 2, this is a do_shortcode that is needed
<?php echo do_shortcode ('your code here'); ?>
Set a title element on a page and configure it as you wish
– https://www.screencast.com/t/oWqjw6Lyiudx
– https://www.screencast.com/t/hE3oDFGAD
Then enter it in the post template file (below the author box if that is where you want to show it)
– https://www.screencast.com/t/NNjdPeby
– https://www.screencast.com/t/nfhhnD7HS
– https://www.screencast.com/t/qvUaeoULH8J
The result – https://www.screencast.com/t/2bVAD95pN5
Thanks
Hi,
The sidebar is stick from what I can see, that means the option is enabled in the theme panel. What that does is that when the end of the sidebar is reached while scrolling, it will always remain in view.
I don’t quote understand what you are asking however, the smart sidebar can be enabled/disabled only, for all the website. It should not be enabled if you plan to use Adsense in the sidebar content.
Thanks
Hi,
You can install the demo you like, then gradually replace the content with your own. Start from the top for example, upload your own logo, set your own menu
– https://forum.tagdiv.com/logo-favicon/
– https://forum.tagdiv.com/main-menu/
– https://forum.tagdiv.com/mega-menu/
Edit the homepage with the tagDiv composer, remove/modify/add elements as you want
– https://forum.tagdiv.com/tagdiv-composer-tutorial/
– https://forum.tagdiv.com/block-settings-guide/
Each block and grid can be configured to display the posts you want, there are multiple filtering and sorting options available.
Please let us know if you have more questions or you need help with something.
Thanks
Hi,
I have inspected the website, for me it is loading very fast. The images are loading fast as well. When it comes to page speed in general, there is always room for improvement. We recommend this caching plugin
– https://forum.tagdiv.com/cache-plugin-install-and-configure/
These are some topics and tutorials which you could read and try the suggestions mentioned
– https://forum.tagdiv.com/topic/score-100100-pagespeed-with-newspaper-wordpress-theme/
– https://forum.tagdiv.com/topic/newspaper-theme-speedify-your-website/
– https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/
– https://forum.tagdiv.com/cache-plugin-install-and-configure/
– https://forum.tagdiv.com/cloudflare-cdn/
– https://forum.tagdiv.com/how-to-make-the-site-faster/
– https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/
There are many others here on the forum that you can follow, from experienced theme users.
To display socials in the footer social account links have to be entered in the theme panel social networks
– https://www.screencast.com/t/owIWb7hT
They should be displayed once entered there, in the footer as well as the mobile menu.
Thanks
Hi,
The live search uses module MX2 – https://www.screencast.com/t/841t735XenoV
So you could modify the module to show a different thumbnail
– https://www.screencast.com/t/Nz0drSd1y
Note that making this modification will affect every location where the module is displayed (block 18, block 19, gallery) not just the live search.
Thanks
Hi,
This is unusual, if the multi-purpose plugin is active then all the row options should be added. I would suggest as a fist step to deactivate all other plugins, leave only them plugins active. Check if the row settings and multi-purpose elements are available.
If there is still a problem please send us an email at contact@tagdiv.com and provide admin login information, we will take a look.
Also include a link to this topic in the email.
Thanks
Hi,
Only font awesome icons can be used in the menu at the moment
– https://forum.tagdiv.com/how-to-add-icons-in-menu/
Other icons could only be inserted with customization maybe. Block titles also do not have this option at the moment. Only block header styles are available
– https://demo.tagdiv.com/newspaper/block-header-1/
There are some custom solution here on the forum if you want to try
– https://forum.tagdiv.com/topic/some-edit/
– https://forum.tagdiv.com/topic/icon-on-blocks-title/
Thanks
Hi,
No need for any kind of activation or license, please ignore the activation messages
– https://forum.tagdiv.com/newsmag-how-to-update-visual-composer-plugin/
We will provide updates for the page builder along with theme updates.
Thanks
Hi,
@vpvijayanand@gmail.com That is unusual. So you are able to change the image in the page edit screen and it is displayed there, but if you save the page and view it the image is not displayed.
Try making other changes on the page, see if these save properly.
It could be a form of caching, if you have a caching plugin or server provided service, clear it fully. Then check the results.
Thanks