rohitmukati
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Since Update to 6.4 Woocommerce checkout not workingHii @tsurom
This issue may be due to php version first backup your side and then update your php version use latest php version 8.0 or above.Forum: Fixing WordPress
In reply to: Complete Crash after PHP 8.0 updateHello @vidabierta
In wp-config.php add define( ‘WP_DEBUG’, true ); in this file then you show what is issue.Forum: Fixing WordPress
In reply to: Toggle Icon ColorHii @visitsanjuanpuertorico
I saw on home page also menu icon is in black color.Forum: Fixing WordPress
In reply to: Scroll to top button does not show in mobile viewHii krisck
Can you share link of website where you face this issue.
Hello @durremirza
It code may be in archive.php and if ypu have not knowledge of code just use css given in below<span style="background-color: rgb(255, 255, 255); color: var(--text-primary); font-family: consolas, "lucida console", "courier new", monospace; font-size: 12px; white-space: nowrap;">}</span><span aria-label="CSS selector" class="selector" style="box-sizing: border-box; min-width: 0px; min-height: 0px; color: var(--text-disabled);"><span class="simple-selector selector-matches" style="box-sizing: border-box; min-width: 0px; min-height: 0px; color: var(--text-primary);">ul.cat_menu</span></span><span class="sidebar-pane-open-brace" style="box-sizing: border-box; min-width: 0px; min-height: 0px; color: var(--text-primary);">?{</span>- <input class="enabled-button" type="checkbox" aria-label="display none !important" style="min-width: 0px; min-height: 0px; font-size: 10px; background-color: var(--sys-color-cdt-base-container); color: inherit; visibility: hidden; float: left; margin-right: 0px; vertical-align: top; position: relative; z-index: 1; width: 18px; left: -40px; top: 1px; height: 13px;"></input><span class="styles-clipboard-only" style="box-sizing: border-box; min-width: 0px; min-height: 0px; display: inline-block; width: 0px; opacity: 0; pointer-events: none; white-space: pre;"> </span><span aria-label="CSS property name: display" class="webkit-css-property" style="box-sizing: border-box; min-width: 0px; min-height: 0px; color: var(--webkit-css-property-color,var(--sys-color-token-property-special)); margin-left: -38px;">display</span><span class="styles-name-value-separator" style="box-sizing: border-box; min-width: 0px; min-height: 0px; display: inline-block; width: 14px; text-decoration: inherit; white-space: pre;">: </span><span aria-label="CSS property value: none !important" class="value" style="box-sizing: border-box; min-width: 0px; min-height: 0px;">none !important;</span>
Forum: Fixing WordPress
In reply to: admin error after updateHello @janbrokes
Follow this documentation it will help you for this errorForum: Everything else WordPress
In reply to: Mobile View has White spaceI checked it you use Lite cache so clear cache and check it it will be fine.
Forum: Everything else WordPress
In reply to: Mobile View has White spaceHello @jantsa1313
This problem may be due to some sections having too much width, check the bottom of the page you will see a scroll.
For more detail can you share page link ??Forum: Fixing WordPress
In reply to: Very slow websiteThere are so many free plugins available. You can try anyone from below list:
1.Smush
2.WP-Optimize
3.SiteGround Optimizer
4.Autoptimize
5.EWWW Image Optimizer
6.Imagify
7.ShortPixel
8.Compress JPEG & PNG images
9.reSmush.it
10.Optimole
11.Optimus
12.Image Optimization for SEO
13.WP Compress
14.Robin Image OptimizerForum: Fixing WordPress
In reply to: “User by Role” numbers hidden@bliss2 yes i read what you wrote then i check your code that you use in that mistake in inverted commas before and after wp_is_large_user_count so onces use code that given by me and then it is not work let me know
Forum: Fixing WordPress
In reply to: “User by Role” numbers hiddenHello @bliss2
Add this code in ?functions.php
add_filter(‘wp_is_large_user_count’, function () { return 20000; }, 10, 0);
it will work in your have some error.Forum: Fixing WordPress
In reply to: How do I set a default theme?Hello @easygoingpat
You can add default theme “Twenty Twenty-Three”
Steps for add theme
If you want to add the default theme that comes with WordPress, it’s pretty easy to do. Go to?Appearance > Themes > Add New. Then you can browse the official repository to find a theme Twenty Twenty-Three. Once you’ve found it, click?Install.Forum: Fixing WordPress
In reply to: Wp-admin not workingHello @mate01
I am checking your site its work fine with SSL.Hello,
Please head to WooCommerce > status > tools. Look for the option Update database.
Also, please navigate to WooCommerce > status > scheduled actions > pending. Run the pending actions and allow some time, then check again if the issue persists.
Forum: Developing with WordPress
In reply to: Hide One or More Nav Menu Item from Logged out userHello @gamicord
Try this code this will work for you.
Code is belowfunction hide_menu_conditional($items, $args) { // Check if the USer is logged in if (!is_user_logged_in()) { // If the user is logged in , find the menu item with the title 'Store Manager' foreach ($items as $key => $item) { if ($item->title == 'Store Manager') { // Remove the menu item unset($items[$key]); break; } } } return $items; } add_filter('wp_nav_menu_objects', 'hide_menu_conditional', 10, 2);
- This reply was modified 1 year, 2 months ago by rohitmukati.