Gabriel Tadeu
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Count Plus] Only Youtube counter is zeroI already enable all Youtube related in Google Console…
Forum: Plugins
In reply to: [Social Count Plus] Only Youtube counter is zeroHi Claudio,
I just saw your video and even after create the API Key I can’t see the Youtube subscribers… I’m using the same API Key for Google+ and is working fine, but for retrieve the Youtube subscribers, don’t. Even if I use the your channel ID (UCWGz8KbT5IE7PxhSN1jjimw) the return is 0.
Have any idea what is the problem?
But after the first fail, the CDN can try another attempt in the next request?
Because like I said, for me using the direct link the images always was accessible to me in the browser, but when used the CDN URL in the browser they don’t appear, showing the message: We cannot complete this request, remote data could not be fetched.Besides of that, I know how good a CDN can be, but you know if possible a way to make the resizes images in my own server? Like change the WP CDN URL to a Timtumb or something, to avoid future gaps…
I asking that because it’s not the first time I saw some images don’t loading correctly, this time the problem was really big, like only 1 photo loaded correctly.
Hello Ryan,
Now works! I guess for some reason when the CDN try to reach at first time the photo isn’t available or to heavy (I really don’t know, just a guess) and the server don’t make the request until the next XX hours. This is a possibility?
Because if you try to see this link (without password) you will se all images now are ok, but if you compare with my previous screenshot the same photos was returned 504.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Prove your humanity:The field appears when you’ve activated Jetpack’s Protect module, and when Jetpack can’t connect to the Protect API when someone tries to log in.
Like, the service was down? How can I know more about Protect API works?
The “prove your humanity” string is not translateable yet, but it will be added to the list of strings in the coming few weeks.
If you can tell me when will ne avaiable to translate, I’ll be glad to help.
Thanks for all information!
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Prove your humanity:Hello Jeremy,
I have the same translation problem in PT-BR (Even my WordPress is set in another language, the field shows in english). How I can help and translate the strings in Brazilian Portuguese?
Few months ago I found a website with most of common strings used in WordPress, do you have anything similar to Jetpack strings?
And one question: What is the rules to show the field? Because I never saw it and my client ask me why I put this new field, I don’t know explain in which circumstances the “prove your humanity” will appears.
Well well, I tried in another custom post and works! Probably the problem is because I manipulate many things in my custom posts ‘projetos’.
This is my functions.php: http://pastebin.com/2r47QSWb
http://cl.ly/image/3w1P1H2N3m3o/mkt.gif
This gif shows exatcly the problem. (Sorry but my WP is in portuguese).
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Tiled GalleriesI’m afraid I was wrong: removing the margin won’t help, since the images are actually automatically resized via javascript on each page load. The margins are also added dynamically, so I’m not sure you will be able to remove them.
But why the javascript put 4, 5 pixels in right side? Even when I try cheat and put $content_with bigger but doesn’t work either. The weird thing is before dom ready (before javascript put gutter between images) the total size is right:
Before js: http://i.imgur.com/erTJ1Uj.jpg
After js: http://i.imgur.com/MZFy57M.jpgForum: Plugins
In reply to: [Custom Post Template] Use only for Custom Post TypeThis is probably not the best way but works: I reset $post_types array or update first position.
function my_cpt_post_types( $post_types ) { $post_types = []; $post_types[] = 'projetos'; return $post_types; }or
function my_cpt_post_types( $post_types ) { $post_types[0] = 'projetos'; return $post_types; }