- TutorialsDefault Block Settings Guide
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsOffset Feature
- TutorialsWhat is Ajax preloading?
Hi,
Please replace the content of td_module_3.php file with this one: http://pastebin.com/NwCLhqim
Result: http://screencast.com/t/Ziy9mqgI
Thanks
Thanks for the code Lucian, unfortunately I have different header colors set for my block – they arent one single color. How do I go about it then?
Have a look – http://www.droidgoblin.com
Hi,
You can do it via css, use the following custom css to achieve something like this: http://screencast.com/t/yiYJTxUtdid
.td_block_wrap .block-title {
background-color: #4db2ec;
}
.td_block_wrap .block-title span {
padding: 2px 10px 2px 10px;
}
Hope this helps!
Thanks
I ended up deleting the counter. Honestly, the biggest problem with the social counter is it doesn’t refresh in parallel. It is called on each page load event that isn’t cached and then if there is a problem with the API connecting to any of the services it causes a massive delay in page response.
I would suggest avoiding the counter until Radu and Lucian can fix the code so it runs parallel to page load, not as a render blocking element. Even though the code appears to be based on Ajax it is NOT running in parallel. (or asynchronously)
Hi Lucian!
I used your code, but it still does not work
<?php
$gia_ban = get_post_meta($post->ID, ‘gia_ban’, true);
echo @$gia_ban[‘td_source’];
?>
http://www.screencast.com/t/cpBysE7JplSq
Hey Lucian,
How can I have the Default Title Style (in block and widgets) extend across the entire block instead of being limited to the word length?
Thanks Christopher ,
do you have samples on how to do pagebuilder blocks which remove the side bar?
Is there a regular way to do custom posts?
Udi
You likely need to try using the pagebuilder blocks to make a custom page; or perhaps create custom widgetized areas via normal practice in wordpress, or perhaps hiring a custom developer to work outside the parameters of the theme.
I did as you said. I still had the error because I forgot
else {
All I did was editing function php. I use default fonts on site, I did no change in theme panel. That means I use default, so no google ? It works. 🙂 Thank you !!!
I got rid of some js codes, from g+, stat counter, etc. now I have 94/100 or 95/100.
Prioritize visible content
Your page requires additional network round trips to render the above-the-fold content. For best performance, reduce the amount of HTML needed to render above-the-fold content.
The entire HTML response was not sufficient to render the above-the-fold content. This usually indicates that additional resources, loaded after HTML parsing, were required to render above-the-fold content. Prioritize visible content that is needed for rendering above-the-fold by including it directly in the HTML response.
None of the final above-the-fold content could be rendered even with the full HTML response.
This error only. Any more idea how to fix ? I have:
– W3 TOTAL CACHE
Page cache: enable, disk enhanced.
Minify : AUTO
– HTML minify settings: all checked except Line break removal
– JS: ENABLE … ADDED 3 js scripts from site, using minify and NON BLOCKING USING ASYNC.
– CSS: no
Database cache – enabled.
Browser cache enabled.
– Async JS and CSS
Load Javascript asynchronously
Load CSS asynchronously
Minify CSS
– Speed Booster Pack
All general options
55% image compression
Load CSS asynchronously
Minify all CSS styles
NO tagDiv speed booster (INACTIVE)…
Thanks for the previous video on site. I hope my settings help others. If anyone can help with my last issue, I would be gratefull.
Hi,
Try it like this:
<?php
$td_post_theme_settings = get_post_meta($post->ID, 'td_post_theme_settings', true);
echo @$td_post_theme_settings['td_source'];
?>
Thanks
Hi,
Thanks for the suggestion and sorry for the inconvenience. I have added your request on our todo list but because we have over 160 feature requests we have to pick very carefully what we implement. If more people request this feature we will do it.
Thank you for your understanding!
Hi,
Move the get_category() function like this: http://screencast.com/t/WSUECFCQk ..in the post template you want to make this changes, this example is for the post template #2 but you can do the same for the other.
You also need this custom css to adjust it, use this to customize the font and color: http://screencast.com/t/qVhOzyhqJ
.meta-info {
clear: left;
padding-top: 20px;
font-family: 'Sacramento', sans-serif !important;
color: #000000 !important;
font-size: 30px !important;
}
.meta-info .td-block-author a {
font-family: 'Sacramento', sans-serif !important;
color: #000000 !important;
font-size: 30px !important;
}
.meta-info .entry-comments-views {
font-family: 'Sacramento', sans-serif !important;
color: #000000 !important;
font-size: 30px !important;
}
Thanks
Hello . I have a weird issue with the big slider. While it shows the full titles on the small block on the side. The title of the article on the main – big image is weirdly cut down. You can see it here : http://www.theskykid.com/
What can I do to fix that ?
Hi !
Why I Add code
<?php echo get_post_meta($this->post->ID, ‘source’, true); ?>
on Module td_block_3 but it does not work?
Found the answer in another post that this isn’t possible.
Would like to see the “Classic Blog” style become a block in an upcoming release. It is a good way to help transition an existing blog site over to the magazine style format.
Great, it helped! Thank you very much!!!
Try an !important tag:
color: #444444 !important;
But if it’s conflicting with another one it still won’t work and you’ll have to find the source of the #fff…
Hi.
Great theme… was searching for a long time and knew this was the one for our site redesign.
Right now we are running Thesis 1.8.6 setup in a more or less traditional blog format. The home page lists the most recent 8 stories in the blog format, then include 3 rows of 2 story segments for 6 more older stories.
Eventually we will have a magazine format, but want to ease readership slowly into this.
1. Is there a way using PageBuilder rather than getting into the nasty editing of PHP to replicate the blog style with smaller excerpts at the bottom?
2. Is there a way to change the pagination? In Thesis it gives us “Previous Entries” and/or “Newer Entries” rather than a list of page numbers and total number of pages.
Thanks!
Hi,
Please use this custom css and change this values as you like: http://screencast.com/t/SiUzFWedJ9
.page .td_block_wrap {
padding-bottom: 10px;
}
.page .td_mod_wrap, .td_mod2 {
margin-bottom: 15px;
}
Thanks
Hi!
Could you tell me please how might happen that my block title color changed while i’m still having this code in css?
.block-title a, .block-title span, .block-title label {
background-color: transparent;
color: #444444;
}
Here color: #444444; in fact color: #ffffff;…
Hi,
You will have to add it to td_wordpres_booster.php file like this: http://screencast.com/t/6ihhPhxFcWk
Thanks
Hi,
Unfortunately module 7, as an extension of module 1, can’t be used as a block and you will need custom modifications to it so it can be used as a block. At this post module 1 and 7 can be used only on loop templates.
Unfortunately we cannot offer custom work as we work hard on the development, updates, fixes and support. You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
@mike
You can achieve a similar result with for this using block 3 on 2 columns: http://screencast.com/t/ebPjKaqT6ld6
You can see this on our demo: http://demo.tagdiv.com/newspaper/block-3/
Thanks
-
This reply was modified 11 years by
Lucian.
Hi,
Thanks Christopher!
@Branstone
WordPress has some default cropping sizes http://screencast.com/t/ifk8fE1HYk and we added more sizes inside the functions.php file – http://screencast.com/t/2QaaubXnqxL
Those sizes are used on modules and sliders (including the Big Slider), you can read here about the thumbs used on modules and sliders https://forum.tagdiv.com/modules-and-blocks/
You can read here more about WordPress hard and soft cropping: http://www.davidtan.org/wordpress-hard-crop-vs-soft-crop-difference-comparison-example/
You could try to registers a new image size, you can read hare more about this: http://codex.wordpress.org/Function_Reference/add_image_size
Hope this helps!
Thanks
Just a note: Its sufficient telling me “roughly” where I have to “register” the module (does not require a detailled description), than I will figure this out on my own.
