yogeshyadav20
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hide Editor on pagesHi there
add_action('admin_head', 'remove_content_editor'); /** * Remove the content editor from ALL pages */ function remove_content_editor() { remove_post_type_support('page', 'editor'); }
add this code
Thanks
For more details and alternate solution, follow this article
Hi There
If you want to remove /category/ from the url, follow these two steps:
1. Go to Settings >> Permalinks and select Custom and enter: /%category%/%postname%/
2. Next set your Category Base to .Thanks
Forum: Fixing WordPress
In reply to: Deletes Post ContentHi There
1. Check Settings > General in your site’s Dashboard. Does the date and time look correct?
If not, you’ll need to contact your hosting provider’s support, as the server’s clock has been set incorrectly.
2. Clear WordPress cache
3. define(‘WP_MEMORY_LIMIT’, ‘500M’);
in your wp-config.php filethanks
Forum: Fixing WordPress
In reply to: Unwanted “e–ua-blink” class added to body after migrationHi there,
your given URL is not workingForum: Fixing WordPress
In reply to: My tables are not mobile responsiveHi @subbchtl
@media(max-width: 480px){ .entry-content .table-wrapper { overflow-x: scroll !important; overflow-y: hidden !important; white-space: nowrap !important; } }
Appearance ->customize ->Additional CSS paste above CSS code her
and let me know when you have done
thanks
Forum: Fixing WordPress
In reply to: CSS not affecting main navigation bar or menu itemsHi There
.scheme_original .menu_main_nav > li > a { margin: 0; padding: 0; }
and
.menu_main_nav > li + li:before { content: 'none'; }
Thanks
Forum: Fixing WordPress
In reply to: My tables are not mobile responsivedear, you can’t share your account details here
Forum: Fixing WordPress
In reply to: My tables are not mobile responsiveplease update CSS once again, it’s not reflecting
Forum: Fixing WordPress
In reply to: My tables are not mobile responsiveHi There
add this CSS if your are looking something like attachment
https://www.awesomescreenshot.com/image/16975840?key=eb6161122a6b5573077aab1fc18a03ea@media screen and (max-width: 480px){ .entry-content .table-wrapper { overflow-x: scroll; overflow-y: hidden; white-space: nowrap; } }
thanks
- This reply was modified 3 years, 3 months ago by yogeshyadav20.
Forum: Fixing WordPress
In reply to: Logo and header copy do not show on mobile versionHi There
@media only screen and (max-width: 767px) .responsive .logo img { display: none; } }
replace with
@media only screen and (max-width: 767px) .responsive .logo img { display: block; } }
Forum: Fixing WordPress
In reply to: Logo on my wordpress website not showingHi There it’s showing, see the attachment
https://www.awesomescreenshot.com/image/16956874?key=9ffdec762b74d635a2385ce1965053e5
Thanks
Forum: Fixing WordPress
In reply to: Woocommerce Dropdown Menu Not Showingyou can override that using !important, like
.elementor-invisible {
visibility: visible !important;
}Forum: Fixing WordPress
In reply to: Woocommerce Dropdown Menu Not Showing@jdembowski follow these steps
You can do this both way, but simple to do is login in your dashboard
click on Appearance -> Customize -> Additional CSS
and paste your CSS there
Forum: Fixing WordPress
In reply to: Product page is stuck on left side of the screen@media(max-width:768px){
.thb-product-detail .medium-6 {
max-width: 100%;
}
}add this CSS also
- This reply was modified 3 years, 3 months ago by yogeshyadav20.