Hi,
Thanks for your suggestions, i’ve added them on our list. If more people will make similar requests we will implement them, we have a lot of features on the list and we have to chose carefully which one gets implemented next. The theme in it’s current state doesn’t interfere with the user roles, an alternative would be to use a plugin which adds such functionality.
For the automatic posts unpublish you could also try a plugin, ex – https://wordpress.org/plugins/post-expirator/
Thank you, Emil G.
Hi,
I’ve checked your post and you’re right, on iPhone 5 it doesn’t work. I’ve tried to replicate this on my side but i can’t, it works on all devices including iPhone 5. I suspect it may come from a plugin conflict or something you have on your page and it’s missing on my side. Try to disable all plugins, enable only Visual Composer and see if the issue is still there.
If this doesn’t help please send an email at contact@tagdiv.com , include a link to this conversation and provide wp-admin access so we can take a look.
Thank you!
Hi,
Last time i’ve checked your site it was running smooth, no delay in page render. I guess you made some changes, please provide details about those changes.
The images are still not properly compressed – http://screencast.com/t/GC98gBOA7 – try this method – http://screencast.com/t/HIla2bM7oc – you can find it on chapter 3 – https://forum.tagdiv.com/how-to-make-the-site-faster/
The browser leverage cache is not set – http://screencast.com/t/jLjJnh4zD9 – try the solution provided on chapter 2 – https://forum.tagdiv.com/how-to-make-the-site-faster/
Thank you!
Hi,
I’m not sure what you mean, please provide more details, some images pointing at the issue may also help.
The links provided lead to the main page, please post them again, use the direct link – http://demo.tagdiv.com/newspaper/
Thank you!
Hi,
I’ve checked your post on google Structured Data Testing Tool and everything seems fine – http://screencast.com/t/spkwt60YnwGa – google ultimately decides if the post is considered a review and if the rating appears in their searches. You may have to wait some time for them to properly scan your post and display the ratings on searches.
I see you have some js errors on the console – http://screencast.com/t/xRbrg8fdZ9DY – i suspect they come from a plugin conflict, try to disable all plugins, enable only Visual Composer and see if the issue is still there. If it’s gone enable the rest of the plugins one by one until you find the one that’s causing this issue.
Thank you!
Hi,
Try to exclude the theme js file, if you use SpeedBooster the theme loads the minified version – http://screencast.com/t/ETfXtTSxlgN – The js which comes with some plugins may return an error if you minify it, you may have to try each one until you find the cause of this.
Thank you!
Hi,
I suspect the server interprets it as a link and that’s why you get the 404 error. You have to check the server configuration. It may also come from CDN, check the following discussion – http://stackoverflow.com/questions/17279643/why-would-css-data-uris-be-logged-as-404-requests
Thank you!
Hi,
The easiest way would be to make the modification inside the main theme and apply it each time you update. If you want to make it from the child-theme you have to overwrite the category template and copy the get_sibling_categories method inside the file. Modify the code to make sure it works, then change the call from parent::get_sibling_categories to self::get_sibling_categories
Thank you!
Hi,
SpeedBooster is configured to move the default fonts at the page bottom – http://screencast.com/t/BbicZXTeALb
You have to edit the file and add conditions for the custom added fonts, check this guide – https://forum.tagdiv.com/how-to-make-the-site-faster/
Google may also penalize your score when you have multiple resources, you have to check on page source to see if the css was actually moved at the page bottom.
Thank you!
Hi,
If you set a custom font and then you make changes to it’s path you have to save the settings in Theme Panel -> Theme Fonts, the theme will generate a new css.
If you use a cache clear it. If the issue is still there try to delete the cache plugin and see if it works.
If this doesn’t help please send an email at contact@tagdiv.com , include a link to this conversation and provide wp-admin access so we can take a look.
Thank you!
Hi,
Unfortunately some of the settings will not work, ex. changing the post template, you have to build a template for your CPT, then modify it and add conditions to load a different template when one is selected in the post settings area. This is not a simple task so i cannot provide an easy fix, sorry. The post default settings were not designed to work with CPT, we’ll try to improve this on out future updates.
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
Please send an email at contact@tagdiv.com , include a link to this conversation and provide more details and wp-admin access so we can take a look.
Thank you!
Hi,
Yes it does:
– speedbooster moves the css and js at the end of the page, this removes render blocking and improves the score on pagespeed;
– the cache plugin creates a copy of each post/page and delivers it from the memory;
– the cdn makes a copy for each image, css and other heavy resources and delivers them from high speed servers which are geographically closer to the site visitor area. The servers are spread around the world, this improves the page load speed.
Thank you!
Hi,
I’ve checked your site but the ad is not there, did you disable it or it appears only to certain areas?
I suspect that the ad comes with some html or css which breaks the layout. We can only check it when the ad is enabled and the error is there.
Thank you!
Hi,
On the first error – http://screencast.com/t/KTCSvcFmvY – you could try this solution – https://ardamis.com/2011/06/02/fix-for-php-fatal-error-get_header-in-wordpress/
You can also try to make the folder unavailable by playing with the permissions – https://codex.wordpress.org/Changing_File_Permissions – http://codex.wordpress.org/Hardening_WordPress#File_Permissions
Thank you!
Hi,
The space is there because there’s no height set on the image container. On posts which come with no image the excerpt and the other elements move to the top area. I’ve uses custom css to add height to the image container and you can see how it looks now – http://screencast.com/t/pH0oCBs8R2i
I think you need some sort of masonry block, unfortunately the theme doesn’t have one. A solution may be to create a new block but it’s not an easy task so i suggest that you look for a professional developer to help you with this task. An alternative would be to test the masonry grid available in Visual Composer – http://screencast.com/t/PFZA4lstRg – https://wpbakery.atlassian.net/wiki/display/VC/Grid+Builder
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
A solution may be to create a custom post type and build a template which includes the recipe schema markup.
Unfortunately i can’t provide a quick solution for this, after you build your template test the post on https://developers.google.com/structured-data/testing-tool/ – and adjust until you fix all errors.
If you don’t know how to do this i suggest that you look for a professional developer to help you with this task.
Thank you!
Hi,
You have to use the no-repeat parameter and some size if you want to stretch it ex:
.td-banner-wrap-full {
background: white url("http://xyz.png") no-repeat;
background-size: 100% 100%;
}
Check this guide for more details – http://www.w3schools.com/cssref/css3_pr_background-size.asp – http://www.w3schools.com/css/css_background.asp
The logo on header style 10 is set to appear on one row. It’s position is set with css. – http://screencast.com/t/wUjskDTyhTjW
I’m not sure exactly what you’re trying to do, if you can’t find the right solution please provide more details.
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
Please check the custom css or custom js or other custom elements added in Theme Panel area, it may have an error in it. Also check the footer.php file, if you made modifications on it the code may be broken – http://screencast.com/t/uVCA03gLTj
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
I’ve checked your page but i see not comment counts, i guess you managed to remove them. The css is:
.td_block_slide .td-post-comments {
display: none;
}
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
You need a more precise css, try this:
.td_block_slide .td-module-meta-info {
display: none;
}
Thank you!
Hi,
Yes, you can doit via child-theme, check the documentation here – https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thank you!
Hi,
1. The sidebar content can be edited from Appearance -> Widgets – http://screencast.com/t/DZus5CK6Z
2. I’ve tested the facebook social link on my side and it works, make sure that the url is full and there are no mistakes in it’s syntax – http://screencast.com/t/eD8I7YU1xXgv
3. I suspect you’re using a “mobile theme” plugin, disable it and see if the issue is still there. It may be the mobile theme module in Jetpack – http://jetpack.me/support/mobile-theme/
Thank you, Emil G.
Hi,
Please provide the url so we can take a look. Also provide details on how you tested, if you tested with browser window re-size you have to reload the page to load the ads corresponding to the window current width.
Note that the theme ad system was built for adsense and custom html ads (image+link) – https://forum.tagdiv.com/header-ad/ – http://screencast.com/t/uaS5GpvDOo
If you use another type of ad the theme code doesn’t make adjustments on it, you have to make modifications on the code or look for a plugin which handles this type of ad.
Thank you!
Hi,
Please provide a link so i can take a look.
Thank you!