fernandorigotti
Forum Replies Created
-
Thanks for your reply, @missveronicatv
But it doesn’t solve my problem.
Actually, my issue is that the plugin is sending cache control headers to browse not to cache any page.
Forum: Plugins
In reply to: [Web Stories] Issue changing publisher logoI didn’t know about that. Thanks, Pascal!
Forum: Plugins
In reply to: [Glue for Yoast SEO & AMP] Not tracking in GoogleSame here. Seems Glue isn’t working with latest AMP for WP update.
Thanks!
Forum: Plugins
In reply to: [WP REST API (WP API)] Get all categories (with slugs, ids and details)How to get all categories? With /wp-json/wp/v2/categories I can get only 10 categories.
Forum: Plugins
In reply to: [WP REST API (WP API)] Get all categories (with slugs, ids and details)I have the same issue here.
I am havign the same problem. This is my template:
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-3 box"> <?php $cats = get_the_category(); $cat = $cats[0]; $parent = $cat->parent; if($parent !== 0) { $parentz = get_category($parent); $parent_name = $parentz->name; $parent_url = $parentz->slug; } else { $parent_name = $cats[0]->name; $parent_url = $cats[0]->slug; } $author_id= get_the_author_meta('id'); $user = "user_".$author_id; $avatar = get_field('avatar', $user); $thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), 'grid-thumb' ); $url = $thumb['0']; ?> <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>"> <img src="<?php echo $url; ?>" alt="<?php echo esc_attr( get_the_title() ); ?>" class="img-responsive cem"> </a> <div class="info"> <span class="canal"> <a href="/<?php echo $parent_url; ?>" title="Ver todas dicas de <?php echo $parent_name; ?>"><?php if(is_post_type('galeria')) { ?> <i class="fa fa-camera"></i> <?php } elseif(is_post_type('video')) { ?> <i class="fa fa-video-camera"></i> <?php } ?> <?php echo $parent_name; ?></a></span> <p class="titulo-chamada"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p> <div class="autor"> <div class="col-xs-7 col-md-9"><img src="<?php echo $avatar['sizes']['autor']; ?>" class="img-responsive pull-left img-circle avatar" alt="<?php the_author(); ?>"><?php the_author_posts_link(); ?></div> <div class="col-xs-5 col-md-3 text-right"><?php if( function_exists('zilla_likes') ) zilla_likes(); ?></div> </div> </div> </div>What’s wrong?
Forum: Plugins
In reply to: [mobble] w3 total cache plugin conflict with mobble plugin?Any news about this issue?
What file/folders permissions I need to create a gallery and upload images? I have permission 755 on wp-content/gallery
No, the folders were not created
Yes, the wp-content/gallery have 0755 permission.
I am using “Pot Name” structure. I tried to change to “Default” and also didn’t work.
Forum: Plugins
In reply to: [Enhanced Custom Permalinks] PHP errorI need help to solve this too.
Thanks dcooney. I will wait for improvements about this in next updates. I’m sure that you going to do the best work.
The problem was with an unclosed login form in header.php
Thank you