- TutorialsDefault Block Settings Guide
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsOffset Feature
- TutorialsWhat is Ajax preloading?
Just a suggestion here. I was playing with the ajax in visual composer, and found that it could not see my custom taxonomies. My solution was to delay the mapping of blocks, by altering functions.php
Problematic area, around line 883:
if(function_exists('wpb_map')) {
//map all of our blocks in page builder
td_global_blocks::wpb_map_all();
}
My alternative, using a filter to delay the mapping:
function my_wpb_map(){
if(function_exists('wpb_map')) {
//map all of our blocks in page builder
td_global_blocks::wpb_map_all();
}
}
add_filter('admin_init','my_wpb_map');
Thanks for a great theme!
Greetings!
First: I LOVE this theme! It is so powerful and has so many choices that I continue to find cool new ways to present my website every day I play with this theme. Thank you!
Now to my question: I’m trying to make my Blog page show snippets of blogs, just like you have in your demo for the Feature > Pages > Blog. I’m trying to use Block 9 instead of the default WP blog formatting of showing three full blogs.
I’ve set up my blog page with Block 9, but instead of seeing the blogs in the format of Block 9, my blog page keeps showing the default WP blog formatting (with the current setting of showing 3 full blogs).
Ugly! I want yours!
How do I adjust the Blog page code so that it appears like your Demo page > blog? http://demo.tagdiv.com/newspaper/blog/
Here is what I would like (note Block for Blog postings): http://screencast.com/t/voZt4eg7Kf
Here is the code in my Blog page with the correct Block 9: http://screencast.com/t/WahOYKtWn
Here is what I continue to be disappointed in seeing for my blog (WP default): http://screencast.com/t/4uOOxD9Th
It appears to me that WP is overwriting my desire to use Block 9 with the default WP setting, how do I fix that?
Thanks in advance for your help!
Hi,
Yes, use this css: http://screencast.com/t/ewFQG2NZCizf
.td-mega-grid .td_block_mega_menu .td-next-prev-wrap {
display: none;
}
Thanks
Hi,
Glad you have figured it out!
Please let me know if you have any other theme related issues!
Thanks for the message!
Hi,
You can do this via css, please use this custom css in theme panel > custom css: http://screencast.com/t/cVb4s9kYX6hL
This will hide the sub footer on all pages except homepage.
.td-sub-footer-wrap {
display: none;
}
.home .td-sub-footer-wrap {
display: block;
}
Thanks
Hi,
You can use this css to fix that: http://screencast.com/t/ASoUOvbXg
.blog-stack .td_block_wrap .block-title a, .blog-stack .block-title span, .blog-stack .block-title label {
padding-top: 6px;
padding-bottom: 6px;
}
Thanks
Never mind, seems I can use a block element to do the same thing and it has styling.
Wow, so many options on this theme
Hi,
Newb question probably but is there a reference for how to style elements/blocks on home page etc. I have added the WP Recent Posts element but it has no styling format like the social widget. I just wanted to match it and add a few more elements. Just cant seems to find anything in search of all docs.
Here’s my website
http://aikidohombu.com/
Cheers,
Rusty
Erm true but the thing is, most people will get tired of it and at the end they will deactivate it 😛 I have tracked most of my visitors and as my site, is a tech site, most of the visitors are geek. So everyday, 4k visitors use AdBlock out of 6k visitors (total visitors). 🙁
That’s why I developed it 😉 And shared it with the tagDiv community as I think some folks would try it out.
Thanks for the comments, though 🙂
My impression off top of my head is that those who adore adblocker will use it no matter what, and a nag popup will likely only cause more “ire” and lower likelihood of return to site. On the other hand, a reminder that the site can only exist from ad revenue would likely be a good thing, although having that along with the “stories you might like” flyout might be too much flying for some.
Most of us love revenue. But there is a evil thing called “AdBlock” or “AdBlock Plus” which removes advertisements from a website. I have created a plugin for the Newspaper theme which will display a simple warning/pop-up on the bottom-right-hand side of the website and can be closed.
Don’t worry, cause it will only show if the “AdBlock” is “enabled”. That means, it won’t show to general users.
Features:
1. Responsive
2. Built for Newspaper
3. Cookie support (will display after every 6 days if closed)
4. Free support at this thread (if tagDiv doesn’t have any problems with it 😉
5. The warning message can be changed as well. Go to Settings>Blockr Options
The plugin is available for download for free from Dropbox: http://bit.ly/10WxZOz
Would love to hear your feedback guys 😉
Hello,
I’m trying to add the following code to my homepage but with no luck:
<?php echo do_shortcode(' | vrijeme čitanja: < [est_time]');?>
So, the idea is to add the estimated reading time to the homepage posts loop right after the post title and date published. I’m using Page Builder – with title template & Block 6 in Visual Composer. Any idea how to get this done?
Regards,
Also, perhaps an ad-blocking browser extension is detecting those links for you?
Hi again,
There is something I am probably missing here, so kindly explain it as if for a beginner…
I read your thumbs and image resolutions:
https://forum.tagdiv.com/modules-and-blocks/
I then made some 326×235 images as featured images,
and a 300×100 Logo.
However – when doing the GTmetrix again – I get a very long list of
“The following image(s) are missing width and/or height attributes.”
including images with these sizes 326X235, the 300×100 logo, as well as images of 326X406, 100×65, 745X483 and more.
–> I thought all these are the programmed image sizes of the theme? How come they are missing?
Kindly advise…
Thanks!
Bran
Hi,
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/
From the media settings the theme only uses the “thumbnail” size which it’s used on search module.
It’s fine, that is how the theme dose with images. 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
Hi,
I believe that your code is wrong, please read here about this: http://www.advancedcustomfields.com/resources/displaying-custom-field-values-in-your-theme/
You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
Thanks
Hi,
@Mr C
1. Please follow this topic, should find there the css you need to remove the white spaces on page: https://forum.tagdiv.com/topic/remove-white-space-between-blocks/#post-21229
2. I have checked your site and seems like you managed to add the leaderboard ad: http://screencast.com/t/IO5XkA7ki5N6
Please let me know if did refer to something else.
@monicacortes
Depends on the method you chose to update your theme. For example if you update using a patch you can check the changed files log and if changes haven’t been made to those files should work. Still the best way to update your theme is to make a back-up of your current theme and then update and overwrite the files via FTP so you would have to do the changes once again.
We will consider this though, and if more people request this we will try to implement it in future updates.
Thanks for the message!
Hi,
I have tested this css on your site and it should work fine: http://screencast.com/t/PViBiSOg44fI
Please make sure you paste this in the custom css filed in theme panel and save changes, I have added an extra class to help targeting better:
#buddypress .standard-form .register-section input[type="text"], #buddypress .standard-form .register-section input[type="password"] {
display: block!important;
margin-bottom: 10px!important;
background-color: yellow!important;
border:2px dotted #00f!important;
}
Thanks
Hi,
Please use this custom css: http://screencast.com/t/RitcVp6qg43
.single .aligncenter, .category .aligncenter {
text-align: center;
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 6px;
margin-bottom: 6px;
}
Thanks
Hi Lucian!
You are misunderstanding my question. My idea is that when I create a Custom Fields plugin by ACF for Field Name is ‘nguon’. I want to show ‘nguon’ in td_block_3 whenever a new post, I have tried many ways, it operates at a loop-single but it does not work in td_block_3. Please guide me so that it can work in td_block_3.
http://www.screencast.com/t/zkeHLKRw
http://www.screencast.com/t/uWttWQ1Ejt
ex code not working:
<?php echo get_post_meta($this->post->ID, ‘nguon’, true);?>
$nguon->get_post_meta($this->post->ID, ‘nguon’, true);
or
Thank you!
Hi, I am trying to change the default style for buddypress text and pass input fields,
but I can’t seem to be able to override the default ones
this is what I tried to do:
#buddypress .standard-form input[type="text"], #buddypress .standard-form input[type="password"] {
display: block!important;
margin-bottom: 10px!important;
background-color: yellow!important;
border:2px dotted #00f!important;
}
but even though I put !important it is still overriden
any ideas how to achieve it?
thanks
Well the browsers it don’t support is old ones…if you want to support all browers then you need a to upgrade your Free account to a PRO / BUSINESS / ENTERPRISE..
the Free plan only support
Desktop Browsers
Internet Explorer 7 and later
Firefox 2
Opera 8 with TLS 1.1 enabled
Google Chrome:
Supported on Vista and later by default
OS X 10.5.7 in Chrome Version 5.0.342.0 and later
Safari 2.1 and later (requires OS X 10.5.6 and later or Windows Vista and later)
Mobile Browsers
Mobile Safari for iOS 4.0
Android 3.0 (Honeycomb) and later
Windows Phone 7
This a free service and so far they support a lot of browers just not the old ones like Windows XP SP2 and Android <3.0,
And it’s good it don’t support old browsers because that’s what hackers and scammers etc use any way to get in ur site..
Hi,
Please use this css like this:
.home .block-title a {
pointer-events: none;
cursor: default;
}
Thanks
Hi,
Unfortunately that is not possible at this time as the block don’t have an unique id and because of this there is no way you can target each block from your sidebar and set a different block title background color.
If you like you can do this for different blocks, like this: http://screencast.com/t/1aTLciGVl
Sorry about this, we will consider this for future updates.
Thanks
I was speaking about the “category names” over my blocks on my home page i’ll like to remove the link from them so they don’t direct to the category when someone click them..