tiago fabre
Forum Replies Created
-
Forum: Plugins
In reply to: WC integration with service themestoo dumb question XD
Forum: Fixing WordPress
In reply to: wp customizer api dropdown-pagesThank you guys!
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] I lost the admin urlSolved after change htacces to default and reset my password on database…
Forum: Plugins
In reply to: [WooCommerce] Checkout Page not workingsame problem with me
Forum: Plugins
In reply to: [WP Super Cache] Selective interval cachineyes, it needs to be developed…
What do you really want to do? why normal cache dont work for you ?Forum: Fixing WordPress
In reply to: Unwelcome users (administrators) on my sitetry to do everything in this checklist, and you will be secure…
https://rafaelfunchal.github.io/wordpress-security-checklist/items/Forum: Themes and Templates
In reply to: wp customizer api dropdown-pageswrong category… sorry
Forum: Fixing WordPress
In reply to: wp customizer api dropdown-pagesForum: Hacks
In reply to: Display Sub-Categories (if Exist) on Parent Category otherwise display posts!Hello, I hope that link could help you.
https://wordpress.org/support/topic/loop-inside-sub-categories-loop?replies=4
Forum: Plugins
In reply to: [WP Super Cache] Selective interval cachineyou replace/add data (others pages) with that:
http://wptheming.com/2011/12/ajax-themes/Forum: Plugins
In reply to: [WP Super Cache] Selective interval cachinemaybe you can cache data with ajax…
http://api.jquery.com/jquery.ajax/
http://gosukiwi.svbtle.com/the-right-way-of-caching-ajax-requests-with-jqueryI think you cache every pages and request along the time with ajax (jquery ajax), it will work…
Forum: Themes and Templates
In reply to: [Cerauno] I LOVE this theme….however, I'd love it even more if…if nothing happen it is because the css selector is wrong.
check how it works here:
http://www.w3schools.com/cssref/css_selectors.aspbut looking your code i found the error:
.site-main {
float: none;
padding-left: 30;
width: 70%;
}it should be 30% instead 30
Forum: Themes and Templates
In reply to: [Cerauno] I LOVE this theme….however, I'd love it even more if…the theme I am making is based on
http://ironsummitmedia.github.io/startbootstrap-clean-blog/and I want to make a parallax system just like this:
http://preview2.artlessthemes.com/Forum: Themes and Templates
In reply to: [Cerauno] I LOVE this theme….however, I'd love it even more if…you can use padding left
padding-left: 30%; width: 70%;But I dont know if it is the best theme to start. There is better solutions to customize themes, start with bootstrap is great, it has a Grid system awesome, and works easely for every screens
http://getbootstrap.com/examples/grid/I am making a theme just like this, and I pretend to depoly it this week, if you wanna be my tester… You can tell me what you need and I put in the theme…
Forum: Themes and Templates
In reply to: [Gridsby] Shrink header when scroll downyou can add a property in css to resize logo only when the header has “smaller” class (used on example)
.smaller > h1 > a > img{ height:30px; }if dosn’t work try to check the path of the logo img using css selectors:
http://www.w3schools.com/cssref/css_selectors.asp