Hi,
I’ve checked again and it seems that photon doesn’t fully compress them – http://screencast.com/t/Yhppnc6yp
Even if they come from cdn this may still delay the page load speed. My point is that the images can be compressed even more.
The page is loading properly now, there’s less delay and the css loads on time, i don’t see any broken layout anymore. – http://screencast.com/t/CiZ6WGgUh
Thank you!
Hi,
The problem is in the code, you set the block (on 2 columns) to generate 5 modules/row – http://screencast.com/t/hFJqiSnI5d
I’ve used custom css to change the default 33.3% width to 20% to clear this out.
Here’s an explanation on how the code works – http://screencast.com/t/8u1x8Vki3
Hope this helps.
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
I’ve changed it, thanks for noticing this. – http://screencast.com/t/kOblkkJYqvi
Have a nice day!
Hi,
The metaboxes are set here – http://screencast.com/t/bMkfuzvj – you could change the template used for custom post types.
Thank you!
Hi,
You have to paste the entire code provided on your analytics account, if you paste only the id it will appear on top of the page like it does in your picture.
The code starts with the <script> tag and it ends with </script>
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
The syntax is described in the official documentation – https://codex.wordpress.org/Function_Reference/update_post_meta
Try the following code: – http://screencast.com/t/B88Se5VOc
// save from td_subtitle to td_post_theme_settings->td_subtitle
$td_subtitle = array('td_subtitle' => get_post_meta($post_id, 'td_subtitle', true));
if ($td_subtitle != '') {
update_post_meta($post_id, 'td_post_theme_settings', $td_subtitle);
}
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
We made some tests on our side with WP Super Cache and it behaved better that W3TC. If W3TC works better for you then use it.
Take a look in the error.log file to see if there’s something strange, also check the traffic logs.
Thank you!
Hi,
The restrictions are set by the plugin and you removed them for certain pages. Unfortunately we didn’t do any tests with this plugin so i cannot say what filter is missing, sorry. Try to ask on the plugin developer for details on this, also check the plugin documentation, you may find some clues in there.
Thank you!
Hi,
Do you refer to the socials added by the demos for the Social Counter? Only the youtube id comes from us, the others are set to Envato. – http://screencast.com/t/o1qB26szv
The demos are there to provide a start, you can easily change the ids by editing the main page – http://screencast.com/t/hxqOL4RxMycs
If you’re referring to something else please provide more details.
Thank you!
Hi,
Add the following css in Theme Panel -> Custom CSS: – http://screencast.com/t/RJS42yxAR
.td-category-header .td-pulldown-filter-display-option {
display: none;
}
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
1. You just create the page, find the page id and copy it on the mega menu. The page content will appear in the Mega Menu.
2. You could use css to hide uber menu on mobile devices, we use this on the theme top menu. You just have to find the class used on it’s container and use media queries, ex:
@media(max-width: 767px) {
.ubermenuclass {
display: none;
}
}
If you can’t find it please provide the site url and i’ll take a look.
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
Your images are uncompressed, because of this it takes a lot for the page to load. Try to regenerate all thumbs and compress the logos(use Photoshop or similar to reduce the image size) – http://screencast.com/t/1P6FvnKj4m
For the featured images follow this guide (chapter 3) – https://forum.tagdiv.com/how-to-make-the-site-faster/
Thank you!
Hi,
The MegaMenu is not a plugin, it’s integrated into the theme. Try this solution – https://forum.tagdiv.com/topic/incorporate-userpro-plugin-into-loginsign-in-topbar/
Thank you!
Hi,
This id is generated on the spot from the module id – http://screencast.com/t/arArb9HOrpS – http://screencast.com/t/Z03LqTanqgyV
If the module name is td_module_1 the code removes the “td_” in front and ads “tds_category_”.
I’ve added some info on the documentation, sorry for the confusion – http://screencast.com/t/SNISEcQN5d5P
Thank you!
Hi,
You have to add it inside the loop.php file – http://screencast.com/t/6YLFcO3V – http://screencast.com/t/LfA5kbiMNG3C
To make it display only on category pages or only after 2 or 3 posts you have to create conditions. If you don’t know how i suggest that you look for a professional developer to help you with this task.
echo td_global_blocks::get_instance('td_block_ad_box')->render(array('spot_id' => 'custom_ad_1'));
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
The issue may come from a plugin. Try to disable all plugins, enable only Visual Composer and check again.
Next i suspect some of the html used on your custom page template may be broken, this may cause the admin bar not to display. Check all code again and see if there are any errors.
Thank you!
Hi,
I suspect there’s a js issue, it may come from plugins. 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 who causes this issue.
You can also try to disable the image animation in Theme Panel and see if this issue is still there – http://screencast.com/t/uM53rlVz
Thank you!
Hi,
Yes you can, read more about it in the official documentation – http://codex.wordpress.org/Create_A_Network
Thank you!
Hi,
I suspect it’s the admin bar css, check it in style.css – http://screencast.com/t/T5u62eBqeB
Thank you!
Hi,
We’re sorry to hear that you had issue with our theme. We make a lot of tests on each update before releasing it, unfortunately it’s impossible to replicate all conditions. There are many servers and each come with different settings.
On most cases the layout issues are caused by cache or cdn, it may still deliver an old version for some of the theme files(ex. style.css). The demos download a few images from our servers, this process should run smooth but in some rare cases the connection it too slow and results in a connection timeout. Try to install it again or try installing another demo, see if there’s a difference in behavior. Let me know how it goes.
We’re looking for an alternative to this.
If the above solutions are not working please send an email at contact@tagdiv.com , paste a link to this conversation and provide wp-admin access so we can take a look.
Thank you!
Hi,
I’ve replied on the other topic.
Thank you!
Hi,
The messages are processed in order from the oldest ones to the newest.
1. You have to use the Revolution Slider block – http://screencast.com/t/m91IsAtj7
For sidebar use their widget – http://screencast.com/t/ADxP7N9T
Make sure you have the plugin latest version installed. – http://screencast.com/t/4IecgMStru2p
2. Not sure what you mean, please provide more details.
3. Please check the plugin documentation – http://revolution.themepunch.com/documentation/#installation
4. Do you refer to the theme slider or revolution slider? please provide more details.
5. Just edit the block and delete the title – http://screencast.com/t/UQ7i0jJ3U0G
6. Make sure that the Social Counter plugin is installed and active – http://screencast.com/t/trOFJ7vH
7. Not sure to what block do you refer, please provide more details.
Thank you!
Hi,
I suspect there may be a js conflict which appears on mobile devices only. Try to disable all plugins except for Visual Composer and see if the issue is still there.
Thank you!
Hi,
1. You have to edit the modules used on the Big Grid you want to modify : – http://screencast.com/t/sCwRQvUnffk
Then edit those modules and add the excerpt line – http://screencast.com/t/xJLYpM7oAfY
Custom css is required to integrate the newly added element.
2. You have to add a new post format, check the official documentation on this – https://codex.wordpress.org/Post_Formats – the theme code is located here – http://screencast.com/t/4BW58okTz4V
For the image slider you have to use a plugin, you could try Revolution Slider , see if it’s possible to configure it the way you want – http://revolution.themepunch.com/documentation/#installation
Thank you!