Oscprofessionals
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Product Category not displaying productsHello @adorkablii ,
This is strange even I am have not seen such error text before. You have to debug few things.
1. Unpublished all plugins you are currently using to check which kind of plugin conflict there.
2. File site please check any unwanted files or folders present there.Forum: Fixing WordPress
In reply to: Massive margins for main menuHello @bfrankphoto ,
Just add this code at the bottom of style.css file. This will be resolve your issue.
@media only screen and (min-width: 960px) { .main-navigation a { padding: 9px !important; } }
- This reply was modified 2 years, 9 months ago by Oscprofessionals.
- This reply was modified 2 years, 9 months ago by Steven Stern (sterndata).
Forum: Fixing WordPress
In reply to: Critical ErrorHello,
You should access the server error log to identify if there are PHP errors.These errors can be due to PHP deprecated functions in code or can be due to some other reasons.
If you post the error logs we will be able to comment further.Also make sure that your PHP version is compatible with your word press version.
Your custom plugins and community plugins should be checked for version compatibility.Fastest way for this is to look at server error logs.
Forum: Fixing WordPress
In reply to: Theme is not responsive on mobile anymoreHello,
This is the error that we find and many more :Could not load content for https://premiummeat.ro/wp-content/themes/bubulla/assets/js/swiper.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
We recommend you to first sort out all console errors.
You should make sure to clear cache server and browser both and then check.
Forum: Fixing WordPress
In reply to: Critical ErrorHello @lilesme07 ,
There are many possibilities.
Few which I thinks is related to
1. Your server PHP version is not upgraded.
2. Your DB MySQL and Your Server My SQL version is not same.This is the major chances you main page is showing blank currently.
Forum: Fixing WordPress
In reply to: Theme is not responsive on mobile anymoreHello @god999,
You site is showing to many errors in console because of Facebook code. This error is in loop. remove the code and check your site again.
Forum: Fixing WordPress
In reply to: Hamburger Menu not showing up on mobileI can see there is default issue with elementor page builder you have applied display not to the header.
Please add this CSS to the style.css at the bottom
@media only screen and (max-width: 600px) { .elementor .elementor-hidden-mobile, .elementor .elementor-hidden-phone { display: block !important; z-index: 9999 !important; } }
Forum: Fixing WordPress
In reply to: Project category folder not loading on certain browserHello @lenomotherfit ,
This is basically issue happens with many MAQ users. There might be basic conflicts related to CSS or JS.As I can see on Iphone xr your site is working properly. this issue can be possible with any specific browser version of Safari.
Forum: Fixing WordPress
In reply to: Broken websiteHello @mugpie07 ,
As of WP 4.2, they have made it mandatory or they will issue these messages but everything will still work.
You can get rid of the messages by editing your wp-config.php and changing the line
HTML Code:define(‘WP_DEBUG’, true);
and changing it to
HTML Code:define(‘WP_DEBUG’, false);
This will be addressed in a future release.`
Forum: Fixing WordPress
In reply to: Portfolio ProblemsHello @floorball72 ,
As I can see in to your website you are using Hervin theme. And this theme is professionally build for portfolios only.
If go in to theme site demo you can see all the portfolios are loading properly.
Here is link.It means there is some setting available to show all projects . You can communicate directly with theme support they can help you for the same.
Forum: Fixing WordPress
In reply to: Litespeed .htaccess getting malware constantlyHello @markode ,
Is your client default wordpress totally upgraded ?
Just do some basic things to secure your website.1. First upgrade your WordPress version.
2. Change the salt code of wp-config file, any unwanted html files or demo files cleans them from main root.
3. Install Security plugins like sucuri or wordfence.
4. make your DB permissions and Folders permission to set 644 read only so no one can make any changes to your site or upload to your site.
5. Upgrade the plugins
6. Change the WP prefix to any other alternate so no one can easily enter using WP prefix.- This reply was modified 2 years, 10 months ago by Oscprofessionals.
Forum: Fixing WordPress
In reply to: “Start of Main Content” box appears one each pageHello @elcheva ,
You can apply temporary fixes by applying simple CSS.
copy and paste the CSS at the bottom of you style.css for now.
.screen-reader-text.screen-reader-focus-location {
display: none;
}Forum: Fixing WordPress
In reply to: Image Not Showing In Media LibraryHello @arvindwp ,
Can you please the folder permissions are given proper.
As I can see the Image URL is showing empty. Means there is no Image available in this folder https://naitik.org/wp-content/uploads/2022/01/Naitik-Site-Identity-logo-1.png.
Forum: Fixing WordPress
In reply to: Visit Site – Wrong Page1.Did your clear your word press cache.
2. Did you clear your browser history.
3. Check in data base for old domain hard coded link.
4. Check in code for old domain hardcoded link
5. Check your htaccess.
also try this :
create a simple hellp.html page and upload on new site and type this URL on your browser.If this takes you to new site then server settings are ok and that implies issue is with code or data base.Hope this helps.
Forum: Fixing WordPress
In reply to: Filter Disable update not work!if you don’t want WordPress to show update notifications for akismet
use this filter
function filter_plugin_updates( $value ) {
unset( $value->response[‘akismet/akismet.php’] );
return $value;
}
add_filter( ‘site_transient_update_plugins’, ‘filter_plugin_updates’ );