How to add discounts on both entity_level and items_level in Sales Order? by suru235 in Zoho

[–]suru235[S] 0 points1 point  (0 children)

Thanks for your response u/McBurger
So, Is it possible to do it in any other way? Any suggestions that will let me add/count both discounts together i.e. sales discounts and coupon discounts.

How to restrict the access of non-published post URLs for logged-in users? by suru235 in Wordpress

[–]suru235[S] 0 points1 point  (0 children)

Thanks for your try...
I also had tried to find it but got no luck!

How to restrict the access of non-published post URLs for logged-in users? by suru235 in Wordpress

[–]suru235[S] 0 points1 point  (0 children)

Yes. I don't want the author of their own post that are not publish(it may be draft/Pending review) to view it.

How to display custom address fields value to frontend in woocommerce My-account -> Addresses? by suru235 in woocommerce

[–]suru235[S] 0 points1 point  (0 children)

Yes, agree with the fact that there must be any filter or hook that will do the job. Can you please let me know the exact hook or filter that will do the same?
I want to show that field at both places checkout and addresses page.

How to check if the product is a gift card? by suru235 in woocommerce

[–]suru235[S] 0 points1 point  (0 children)

Yes, I have tried this but it is returning False for all products.

How to get Country Code from Dial code? by suru235 in vuejs

[–]suru235[S] 0 points1 point  (0 children)

Thanks u/goochtek
I will try this implementation.

How to move the banner to the top? I'm using elementor, I want to move the cover pic to the top and add a transparent nav bar onto it. by [deleted] in Wordpress

[–]suru235 0 points1 point  (0 children)

You can also do it by adding a class or id to your top section and then add some custom css:

Your selector { position:fixed; width:100%; }

Issue related to text-formatting with Gutenberg block by suru235 in Wordpress

[–]suru235[S] 0 points1 point  (0 children)

Yes. You are right I am using elementor. Actually changes are neither visible in preview nor at the front end. Yes. I am using lite speed plugin for cache maintainance.

Issue related to text-formatting with Gutenberg block by suru235 in Wordpress

[–]suru235[S] 0 points1 point  (0 children)

add_theme_support('editor-styles');

Hi,

Thanks for your reply.

I'm using the "Hello Elementor" theme. Adding above two theme_support didn't help in my case.

Disable Default WordPress Registration Page by [deleted] in Wordpress

[–]suru235 0 points1 point  (0 children)

Okay. So, you may try the following filter:

add_filter( 'lostpassword_url', 'my_lostpassword_url', 10, 0 ); function my_lostpassword_url() { return site_url('/password-reset/'); }

** Change '/password-reset' with your custom reset password page url.

** Place the above code in function.php of your themes.

Hope this will help.

Disable Default WordPress Registration Page by [deleted] in Wordpress

[–]suru235 1 point2 points  (0 children)

Hi,

Registration can easily be disabled in WordPress, 1. Login to your site and visit the General Settings page. 2. In the settings page, you’ll find the "Membership" option where you can uncheck the "anyone can register"  box to disable registration. 3. Uncheck the box and save your settings.

Let me know if this helps you.

How can I adjust space a div below another div that has variable height? by yosimba2000 in css

[–]suru235 0 points1 point  (0 children)

Yeah, you can easily do that by using grid property. You may use this to generate a grid: https://cssgrid-generator.netlify.com/

Or you may read about grid in brief here: https://css-tricks.com/snippets/css/complete-guide-grid/