Obje
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Image not displaying on mobileSure, I’ll do that.
Thanks for your help !Forum: Plugins
In reply to: [Autoptimize] Image not displaying on mobileCan I send you a private link of the website so you can see it? Without searching to resolve it of course!
Forum: Plugins
In reply to: [Autoptimize] Image not displaying on mobileHi,
Thanks for the quick reply.
I don’t have Jetpack installed on my website so I realize my second point is useless…Hi,
Thank you for this info.
The Tree View option was already enabled but with no changes on the media library. I’ve disabled and re-enabled the option and now the sidebar appears ??
Thanks a lot for your plugin.Quick edit : Performing the mass assignment doesn’t seem to work in grid view (the drag and drop part) with Google Chrome Version 84.0.4147.89. But it works fine in list view.
O
- This reply was modified 4 years, 8 months ago by Obje.
Forum: Fixing WordPress
In reply to: How to edit/remove “Recent Works” title infront of the pageGlad it helps !
Cheers,
JForum: Fixing WordPress
In reply to: How to edit/remove “Recent Works” title infront of the pageHi Nacmaxz,
Looking at your code it seems you use WP Bakery as a page builder and I’m almost sure you can hide the title of your section without hardcoding it.
If not, as @bcworkz pointed out, you can achieve to hide it adding some css code into the customizer. To do so, go to your admin panel > appearance > customizer. Into “Additional css” you can write the following code :
.slider-container .title { display:none; }
J
Forum: Fixing WordPress
In reply to: How to edit/remove “Recent Works” title infront of the pageHi nacmaxz,
If you can target the element displaying “Recent Works”, you can just add the following code :
.your-element { display: none; }
- This reply was modified 4 years, 9 months ago by Obje.
Forum: Plugins
In reply to: [Gutenberg Blocks - ACF Blocks Suite] Read more customizationHi Munir,
Thank you, I will do that.
Forum: Developing with WordPress
In reply to: Body class cleaningHi Joy,
Thank you for your reply.
The only reason I do that is to keep my code as clear as possible.
Having classes like :
“home page-template-default page page-id-90 single-author singular not-logged-in weaver-desktop weaver-mobile-smart-stacked” doesn’t make any sens to me when “home” is the only class I need to target my homepage with css.So that’s why I’d like to delete all unusued classes, but when a new page is added by the administrator, keep the ability for WordPress to add dynamically page-slug-of-the-page .
Forum: Plugins
In reply to: [Gutenberg Blocks - ACF Blocks Suite] Read more customizationHi Munir,
Thanks for your quick reply. Yes exactly.
Forum: Developing with WordPress
In reply to: Move Custom Post Type files into dedicated folderHi bcworkz,
Thank you for your replyForum: Plugins
In reply to: [Lightbox with PhotoSwipe] URL customizingOk I see. Thank you for this information.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] URL customizingHi Arno,
Thanks for your quick and complete answer and it seems challenging to get it done.
So – the whole thing would involve a lot of technical challenge and I don’t see the point what you want to achieve with this.
My concern was to create simple url to share a photo (website.com/page/theansweris42 seems more relevant than website.com/page/#&gid=1&pid=12 to illustrate H2G2). I guess it could be better for SEO also, no?
Thank you.
Forum: Fixing WordPress
In reply to: Custom Post Type & Taxonomy – Custom fields in archive templateBuddy,
You saved my day !
Thanks a lot
Forum: Fixing WordPress
In reply to: Custom Post Type & Taxonomy – Custom fields in archive templateThanks a lot for your help.
<?php get_header(); ?> <div class="projects"> <?php if ( is_tax('color','blue' ) ) {?> <div class="test" style="color: blue">Hello</div> <?php } elseif ( is_tax('color','red') ) {?> <div class="test" style="color: red">Hello</div> <?php } ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <article class="projet"> <?php the_post_thumbnail( 'thumbnail' ); ?> <h1 class="title"> <a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a> </h1> <div class="content"> <?php the_content(); ?> </div> // this part fails <p><?php the_field('price', $term); ?></p> </article> <?php endwhile; ?> <?php endif; ?> </div> <?php get_footer(); ?>
‘price’ is the custom field I’ve created into ACF and I assigned it to “Taxonomy term” => “Colors” (label name)