- ApiPractical example – How to add a new Block and Module
- Apitd_api_block::delete
- Apitd_api_block::update_key
- Apitd_api_block::update
- Apitd_api_block::add
- ApiAPI – Blocks – Introduction
- Apitd_api_thumb::update_key
- Apitd_api_thumb::update
- Apitd_api_thumb::add
- ApiAPI – Thumbnail – Introduction
- Apitd_api_category_top_posts_style::update_key
- Apitd_api_category_top_posts_style::update
- Apitd_api_category_top_posts_style::add
- ApiAPI – Category top section style – Introduction
- Apitd_api_module::update_key
- Apitd_api_module::update
- Apitd_api_module::add
- ApiAPI – Modules – Introduction
- ApiUsing the Theme API in plugins
- ApiThe Theme API
Hi,
I am using Block3 on my homepage. How can I add Facebook and Twitter under each photo like this? What php file do I edit? Click here… Block3 with Facebook & Twitter 
Thank You
Hi,
Could try using NextGEN Facebook plugin http://wordpress.org/plugins/nextgen-facebook/
Have a look at the List of Features http://screencast.com/t/mTjlPtlfJ5K
Or try using Colum Posts plugin http://wordpress.org/support/plugin/column-posts
And try this solution http://wordpress.org/support/topic/facebook-like-button-in-excerpt?replies=6
Hope this helps
Thanks
Hi,
Should work http://screencast.com/t/BekBMiwAD
Please make sure you add and have both custom CSS I gave you in Theme Panel > Custom CSS. I will add them again here:
@media (max-width: 767px){
.header-logo-wrap img {
display: block !important;
}
.header-logo-wrap {
display: block !important;
}
}
Thanks
I’m using a plugin to help with mobile called “TTT Device”
I’m not sure if it will help you but it help me a lot you can find it via wordpress @ http://wordpress.org/plugins/ttt-devices/
Give it time like 24hrs ..also did you cache ur site after installing the plugin..
ok, my staging is now running on the same setting, and I got worse results than before.
It seems to me that the plugins and this config helps on desktop however mobile results good much worse. My problem with: 65% mobile visitors
Shared my results in the pagespeed thread.
Are you using mod_pagespeed or any serverside settings?
-
This reply was modified 12 years by
Manuel Fink.
@Manuel Fink my settings as follow..
1.Loads javascript files from Google Libraries
2.Defers parsing of javascript files.
3.Removes query strings from static resources
4.Load CSS asynchronously
5.Minify all CSS styles
6.Insert all CSS styles inline to the footer
Remove junk header tags
I’ve choose all of them…
@thomaspe i run in to a problem like that as well so i did not choose…
1. Moves scripts to the footer to improve page loading speed.
Because the speedbooster that comes with the theme already does that for us…just play with the settings and what work keep on and what not work keep off.
NO,Cloudflare does that for me so i don’t need plugin also that speedboost have a opition to help you with minification ur css files..
SPEEDBOOSTER >>>>Minify and inline all CSS styles and move them to the footer to eliminate external render-blocking CSS and optimize CSS delivery.
Are you using any plugin for minification?
Are you using any plugin for compression?
@Manuel Fink yes that speed booster and no i’m using tagDiv speed booster as well because it work along side with the other plugin…
@Steven with “speed booster” you mean “speed booster pack” (https://wordpress.org/plugins/speed-booster-pack/) by tiguan?
You deactivated tagDiv speed booster?
And which settings did you activate?
-
This reply was modified 12 years by
Manuel Fink.
Speed Booster didnt play well with my child-theme. Unfortunately.
It always displays the blueish original layout.
-
This reply was modified 12 years by
thomaspe.
Hi @Manuel the best plugin right now is “Speed Booster” the owner done some awesome updates today and made the plugin more powerfull so i’m only using that one along side the “Leverage Browser Caching plugin”.
@thomaspe i recommend you to use the “Speed Booster” plugin as well which work very well with the theme.
Speed Booster
Main Plugin Features
Eliminates external render-blocking javascript and css in above-the-fold content.
Moves scripts to the footer to improve page loading speed.
Loads CSS asynchronously to render your page more quickly and get a higher score on the major speed testing services.
Minify and inline all CSS styles and move them to the footer to eliminate external render-blocking CSS and optimize CSS delivery.
Lazy loads images to improve page load times and save bandwidth.
Changes image compression level to keep file sizes smaller.
Loads javascript files from Google Libraries rather than serving them from your WordPress install directly, to reduce latency, increase parallelism and improve caching.
Defers parsing of javascript files to reduce the initial load time of your page.
Removes query strings from static resources to improve your speed scores.
Removes extra Font Awesome stylesheets added to your theme by certain plugins, if Font Awesome is already used in your theme.
Removes junk header tags to clean up your WordPress Header.
Displays page loading time in the plugin options page.
Displays the number of executed queries in the plugin options page.
Displays the Peak Memory Used in the plugin options page.
Hi Steven, could you please share which plugins you finally ended up using with which settings? thx
Talking about “Async JS and CSS”:
Which exceptions are needed to get the mega menu sliders and ajax working properly?
Thumbnails are not showing all of sudden from number of categories, tags and block widgets.
Here is the example: http://www.screencast.com/t/rhuIs5bSf
Could you pls help to fix this issue at the earliest?
My website is: http://www.igeeksblog.com
Thx Lucian, i’ve tried a whole bunch of plugins but none of them would do it.
So if anyone has a code or plugin suggestion i’m a taker 🙂
Hi,
Please add this custom CSS in Theme Panel > Custom CSS:
@media (max-width: 767px){
.header-logo-wrap {
display: block !important;
}
}
Thanks
thanks Lucian
however that isn’t correct – it not custom ad 3 its ARTICLE TOP AD and using the code you gave me adds another ad 3 block above the header text with the words in the loop-single.php shown under.
thanks
Andrew
@enterpr1se take those files you have out and add what i posted below…
jquery.min.js
external.min.js
site.min.js
Thx, but it’s incompatible with responsive lightbox.
I tried add CSS and JS by lightbox into “Async JS and CSS” exceptions list, but it still not working.
Do I miss something?
The files I added to exceptions list are
jquery.prettyPhoto.js
front.js
prettyPhoto.css
Hi,
I have checked your site and saw that you don’t have any menu, this is the reason way you don’t have any logo on your mobile. On mobile the logo drops down in the menu bar, so if you don’t have a menu bar you don’t have a logo.
To fix this add this custom CSS in Theme Panel > Custom CSS:
@media (max-width: 767px) {
.header-logo-wrap img {
display: block !important;
}
}
Thanks
I used:
function remove_plugin_metaboxes(){
remove_meta_box(‘td_review_metabox’, ‘post’, ‘normal’);
remove_meta_box(‘td_post_theme_settings_metabox’, ‘post’, ‘normal’);
remove_meta_box(‘td_post_video_metabox’, ‘post’, ‘side’);
}
add_action( ‘do_meta_boxes’, ‘remove_plugin_metaboxes’ );
Thank you.