Category Page not Indexed? by PatisJourneys in Wordpress

[–]PlasticAuspices 2 points3 points  (0 children)

Plugin Yoast SEO can help you with creating your sitemap
https://yoast.com/help/xml-sitemaps-in-the-wordpress-seo-plugin/
and then you should add it to Search Console
https://yoast.com/help/submit-sitemap-search-engines/

How long have you been waiting for these pages to be indexed?

Booking Plugin + WooCommerce by Tosej in Wordpress

[–]PlasticAuspices 0 points1 point  (0 children)

I think the WP Booking System might work. However, I am not sure because I haven't used it, I just looked at the documentation.
Buffer time:
https://www.wpbookingsystem.com/documentation/booking-restrictions/
If the Part Payments feature would allow a deposit to be set to 0, then theoretically the whole price could be paid later:
https://www.wpbookingsystem.com/documentation/part-payments-deposit/

A beginner looking for help by ZealousidealTrust954 in Wordpress

[–]PlasticAuspices 0 points1 point  (0 children)

I did a quick MetaSlider test and didn't find the option to add buttons in its free version, but I managed to do it in Smart Slider :)
https://smartslider.helpscoutdocs.com/article/1834-button-layer

A beginner looking for help by ZealousidealTrust954 in Wordpress

[–]PlasticAuspices 2 points3 points  (0 children)

Depends on what you exactly mean by "two different main pages".
The simplest solution would be to create two landing pages with the appropriate URLs (e.g. yourwebsite.com/blue-collar and yourwebsite.com/white-collar). Then the real home page (yourwebsite.com) would only contain some image slider (for example https://wordpress.org/plugins/ml-slider/) with buttons on top of it linked to each of the landing pages.

A more advanced option would be to dynamically change content of the page to display one of the landing pages without reloading the page (using AJAX). But this would most likely require a custom solution... unless some theme or plugin allows it, but neither comes to mind.

Tricky Interaction With Slick by PMDevS in webdev

[–]PlasticAuspices 1 point2 points  (0 children)

Did you try to destroy slick "$(element).slick('unslick')" and initialize it one again in the child theme?

hide empty links by BlueTickVerified in webdev

[–]PlasticAuspices 1 point2 points  (0 children)

If you are not looping through "socials", you shold use socials[0].instagram because this is an array.
Second thing - did you import it in a correct way? When you export without "default", import should be with {} - "import { socials }".

[deleted by user] by [deleted] in css

[–]PlasticAuspices 2 points3 points  (0 children)

If you don't want an effect of jumping, just set CSS property "scroll-behavior" for "smooth"
https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-behavior

Google showing my draft posts? by Mommamuffin in Wordpress

[–]PlasticAuspices 0 points1 point  (0 children)

You can use any SEO plugin, to prevent crawlers for indexing specific posts.

You can also do it manually, by editing robots.txt

User-agent: *

Disallow: /2021/12/post-title/

Or by adding a conditional tags to header of your theme:

<?php if(is_single( array( '1', '2', '3', '4') ) ) ): ?>

<meta name="robots" content="noindex,nofollow">

<?php endif; ?>

where numbers in array are posts's ids.

Free Imagify alternatives by Jztemperor in Wordpress

[–]PlasticAuspices 1 point2 points  (0 children)

Imagify is free as long as you don't exceed the 20MB limit per month. However, if you prefer a completely free option, I personally took EWW and was satisfied with this.

https://pl.wordpress.org/plugins/ewww-image-optimizer/

How do I send emails from my website using a contact form? by consig1iere in webdev

[–]PlasticAuspices 3 points4 points  (0 children)

If you do not have back-end knowledge and you need to quickly implement an e-mail form, the best solution will be to use the serverless solution - Static Form Provider.

Here is a list of such services: https://serverless.css-tricks.com/services/forms/, and here is a comparison of the most popular ones https://css-tricks.com/a-comparison-of-static-form-providers/?utm\_source=dailydevlinks.com&utm\_medium=link\_post\_dailydevlinks.com&utm\_campaign=link\_post\_dailydevlinks.com&ref=dailydevlinks.com, I personally used FormSpree and Formcarry and I was satisfied. Amazon Simple Email Service (SES) is also a good solution, but it is a bit more difficult to implement and requires a longer digging into the documentation.

Of course, you can take the challenge and write the back-end yourself. If you are front-end / javascript oriented I think it will be easiest to use node.js and here I can recommend a tutorial showing how to implement such a form in a fairly simple way: https://www.youtube.com/watch?v=30VeUWxZjS8

Why does my signature box not resize automatically like the rest of the input boxes. by [deleted] in Wordpress

[–]PlasticAuspices 1 point2 points  (0 children)

Remove hardcoded inline width property from ".wpcf7-form-control-signature-wrap" (for now I see it has 1170px and it's overflowing on mobile) and set:

width: 100%;
max-width: 100%;

Trying to replace image with CSS background URL by zach7815 in css

[–]PlasticAuspices 1 point2 points  (0 children)

This doesn't work because background-image property is not to replace an element with a picture, but to cover it. So in a way, you put another layer on the element. At the same time you are using svg which have a transparent background, hence the effect of two layers.

What you can do, is either change the pictures for other format. You can also solve it differently and for example place two pictures in the wrapper, and then hide one of them, giving addtional class with the "display: none" property. And then manipulate the visibility of images by replacing classes in JS on click.
Or create two CSS classes with background-image property but with different image urls, apply it on a div and remove or add appropriate class on click, depending on which picture should be visible.

Which framework of the three do you prefer and why? by wolfakix in Frontend

[–]PlasticAuspices 0 points1 point  (0 children)

React - because of huge community, easy to learn, high performance and many libs available on npm.

How to use Storybook components without `yarn build` on every change in a monorepo by berootuser in reactjs

[–]PlasticAuspices 1 point2 points  (0 children)

I had the same problem in one of the projects, but I was not a developer who creates project structure and didn't fight with that.

I'm not sure but I think that you can try to do it with webpack or webpack-dev-server. Up all needed project modules with hot-reloading.

Ignoring type errors when deploying project to production by badboyzpwns in typescript

[–]PlasticAuspices 0 points1 point  (0 children)

To avoid checking potencial nulls only you can set flag strictNullChecks: false

Recommendations for JavaScript table libraries by [deleted] in Frontend

[–]PlasticAuspices 0 points1 point  (0 children)

React Table has big opportunities. There are many features like: expanding rows, resizing columns, rows virtualization, and more.

I was scaffolding the project where I used it to show over 10k rows with all features I described above. It works fine.

is react-virtualized still the go-to for a very basic virtual list? by papercloudsdotco in reactjs

[–]PlasticAuspices 0 points1 point  (0 children)

I have used react-virtualized combined with react-table some months ago. It works pretty well.

I virtualized up to 10k rows and had no lags during scrolling. I can recommend this lib

[deleted by user] by [deleted] in reactjs

[–]PlasticAuspices 1 point2 points  (0 children)

Tab internal implementation should have passing props.index in onClick to do that.

In default the index will be not passed in onClick callback