Hi,
1. Try to disable the theme default comments from Theme Panel -> Posts Settings – http://screencast.com/t/tstX6wfng4
2. Add the following css in Theme Panel -> Custom CSS:
.td_block_slide .td-post-views {
display: none;
}
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
1. Please provide a link to a post containing a smart list and one on which the justify parameter doesn’t apply. I’ll check them and i’ll get back with a solution.
2. For galleries try the following css: – http://screencast.com/t/chbE4mKG
.tiled-gallery .gallery-row {
margin: 0 auto;
}
Thank you!
Hi,
Make sure you have the latest version of Speed Booster installed, you have to edit the plugin file (wp-content/plugins/td-speed-booster) – http://screencast.com/t/eb6Vtboer5
The code displayed in your image is located in the theme – http://screencast.com/t/uQ9ibQ6pl
Thank you!
Hi,
1. I’ve checked your post and the featured image seems to be properly displayed – http://screencast.com/t/schr5mg5cQbg
A part from the image bottom section gets lost because the height is limited and the aspect ratio must be maintained.
Please provide more details about this, maybe i’m missing something.
2. Try the following css (add it in Theme Panel -> Custom CSS):
.home .td-crumb-container {
display: none;
}
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
We recommend using WordPress SEO by Yoast. – https://wordpress.org/plugins/wordpress-seo/
Thank you!
Hi,
I’ve tested it on my side and it works fine – http://screencast.com/t/ohMMfx5Fs – http://screencast.com/t/8gdNOO1R4t – http://screencast.com/t/YOtJB26i – http://screencast.com/t/oVsAOsBqn4F – http://screencast.com/t/25E15WGMlSL
Please provide details on how you modified the code on your side.
Thank you!
Hi,
Block 18 uses modules 10, mx2 and mx8. – http://screencast.com/t/S80wXB1Nztny
The section you want to modify is module mx8, you can find it here – http://screencast.com/t/lNVXlHXZ1BV6
You can see how the excerpt is added on the other modules – http://screencast.com/t/1gp9rBu4v
Custom css may be required to position the newly added excerpt.
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
Yes, you can place it at the end of the functions.php file.
The shortcode is – http://screencast.com/t/ywl8VeRS
Make sure that the double quotes and the other signs are similar to the default ones, if possible use a code editor like Notepad++. If you decide for different position the do_shortcode() line should look like this:
<?php echo do_shortcode('[related_posts_by_tax posts_per_page="4"]'); ?>
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
From your image I suspect that there’s an issue with the single quotes format – http://screencast.com/t/phGkV4AF
Copy the ones used on the default code, if possible use a code editor like Notepad++ to edit that file.
Thank you!
Hi,
Unfortunately there’s no easy solution for this, you have to look for a plugin or a function-hook on the web. An example can be found here – https://wordpress.org/support/topic/redirect-search-result – if it doesn’t work look for another solution.
Thank you!
Hi,
MS Word and other similar editors come with format data. WordPress should automatically clear this format data and the theme doesn’t interfere with this process. Try to paste the text on a text file in Notepad (this should remove the format data) and then copy it from the text file and paste it in wordpress, see if the issue is still there. You can also check if this issue appears with a wordpress default theme.
You can also try this option – http://screencast.com/t/yVvSMA2toS
Thank you!
Hi,
1. I’ve checked the css on my side and it works fine – http://screencast.com/t/VVbjmbNSFVV
Try to add !important at the end and see if it works on your side:
.td-post-text-content p{
text-align: justify !important;
}
2. The smart lists have a fixed image width which is set from css, this css overrides the settings made in the backend. Use custom css to modify the default one – http://screencast.com/t/OAWoAyQMDqy2
.td_smart_list_3 .td-slide-smart-list-figure {
width: auto;
}
3. Do you refer to the smart lists navigation arrows? use custom css to change their color: – http://screencast.com/t/gFkzVrYg
.td-icon-right, .td-icon-left {
color: red;
}
If you refer to something else use the browser inspector to find the classes used on those items and create a similar css to change their color.
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
1. I’ve added your suggestion on our list, if more people will request this we will implement it. We have a lot of features on the list and we have to chose carefully which one is implemented next.
2. You mean to add an option on blocks which allows to manually select a list of posts? something like this can be achieved with the current system, just add a certain tag on the desired posts and use the tag filter to display those posts – http://screencast.com/t/m5kdWbtzd8lv
We plan to add more futures to the block settings area in a future update, we may extend the filters and sort options.
Thank you!
Hi,
Sorry for the delay, we take each message from the old ones to the newest. If you bump the message it will go among the latest and the reply time will be increased.
I’ve checked your site and it seems you have some js errors in the console – http://screencast.com/t/vmAV1uusyqRS
The smart sidebar is uses js and those errors may interfere with it’s functionality. I suspect the errors come from a plugin conflict or a custom code added. Try to disable all plugins, remove all custom code and if you use a cdn disable it. Enable only Visual Composer and see if the issue is still there. If it’s gone enable the other plugins one by one and see which one is causing this issue.
Thank you!
Hi,
The theme blocks are built to work with categories, it may be possible to modify them to display rss data but it’s not an easy task. My advice is to look for a professional developer to help you with this task.
I’ve added your suggestion on our list, if more people will request this we will implement it.
Thank you!
Hi,
1. There are option for left and right quotes in the “Formats” section – http://screencast.com/t/toXQltPg
2. You have to modify the theme grid (inside style.css) or use custom css, unfortunately this is not an easy task because you have to adjust each element to match the newly set width – http://screencast.com/t/uO3KU68vJL14
Ex. – http://screencast.com/t/605CFywzP7
@media (min-width: 1200px){
.single .td-main-content-wrap .td-container, .td-boxed-layout #td-outer-wrap {
width: 1168px;
}
.single .td-main-content-wrap .td-container .td-pb-span8 {
width: 844px;
}
.single .td-main-content-wrap .td-container .td-pb-span4{
width: 372px;
}
}
I suggest that you look for a professional to help you with this task.
Thank you, Emil G.
-
This reply was modified 11 years by
Emil G.
Hi,
In Newspaper you can control the excerpts from Theme Panel -> Excerpts – http://screencast.com/t/9O2FJ3ClC
If you use the default blog page and the articles are displayed in full you can change this behavior from Theme Panel -> Template settings – by setting another module for the Blog page – http://screencast.com/t/ORIwhn8Zk
Or you could create a custom page using the desired blocks and set it as a homepage from Settings -> Reading – http://screencast.com/t/mLFL3gl9uq
Thank you!
Hi,
The text-transform:uppercase parameter comes by default in the theme style.css, i see you made a custom css and changed it.
The shortcodes were removed, html is used now to allow a backend replica of the frontend. Try this – http://screencast.com/t/6tYLIdK2xVvq – and for new ones use the default quote (which is quote center) – http://screencast.com/t/vhErvX6ymR5
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
You can doit by using the Font Awesome 4 Menus plugin – https://wordpress.org/plugins/font-awesome-4-menus/ – http://fortawesome.github.io/Font-Awesome/icons/ – http://screencast.com/t/nQpB9jB7xR4 – http://screencast.com/t/PdG3PGrVkAaX
Thank you, Emil G.
Hi,
Try the solution presented here – https://forum.tagdiv.com/topic/touchy/#post-56478
You’ll be able to set a different menu (with a different order) for the mobile view.
Thank you!
Hi,
You have to create a condition like this: – http://screencast.com/t/V9KL3CxHtRE – the condition can be added on the other ad lines(depending on which one you want to disable) – http://screencast.com/t/WH8vXMkQk – http://pastebin.com/dKCv4qVU
$td_post_settings = get_post_meta($this->post->ID, 'td_post_theme_settings', true);
$display_ad = 0;
if(!empty($td_post_settings['td_post_template'])){
if($td_post_settings['td_post_template'] == "single_template_11"){
$display_ad = 1;
}
}
//add the top ad
if (td_util::is_ad_spot_enabled('content_top') and is_single() and ($display_ad == 0)) {
$content = td_global_blocks::get_instance('td_block_ad_box')->render(array('spot_id' => 'content_top')) . $content;
}
Thank you!
-
This reply was modified 11 years by
Emil G.
Hi,
The theme doesn’t come with RTL support, sorry. My advice is to hire a professional to help you with this, look for one on places like – http://studio.envato.com/
You could read more about RTL implementation here – https://codex.wordpress.org/Right-to-Left_Language_Support
Thank you!
Hi,
Yes, you can create it manually, it should look like this – http://screencast.com/t/xGX8lJmtlC8
You have to look for a plugin, an example would be – https://wordpress.org/plugins/restrict-author-posting/ – but note that i didn’t do any tests with this one, if it doesn’t work look for an alternative.
Thank you!
Hi,
You mean to change the category used on that section? the theme doesn’t have such an option, you have to make modifications on the code. The function which controls this section is located here – http://screencast.com/t/o6ZBNm0TY – the block used on this area is located here – http://screencast.com/t/n0uEBtVShuAO – Those are not easy modifications, my advice is to hire a professional to help you with this task.
Thank you!