Zartab Farooquee
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to hide my site- Use a Maintenance Mode Plugin: Install a plugin like WP Maintenance Mode to hide your site with a maintenance page.
- Password Protect the Site: Use the Password Protected plugin to require a password for site access.
- Edit .htaccess (if accessible): Add this to
.htaccess
for password protection:
AuthType Basic
AuthName “Restricted Site”
AuthUserFile /path/to/.htpasswd
Require valid-userAny of these methods will make the homepage and other content private.
Forum: Fixing WordPress
In reply to: Fixing critical PHP issueUpdate Plugins/Themes: Ensure all plugins and themes are up to date.Identify the Cause: Deactivate plugins one by one to find the source of the issue.
Close Session: If you find the source, add
session_write_close();
after anysession_start();
calls in its code.Editwp-config.php
: Add this at the start of the file:if (session_status() === PHP_SESSION_ACTIVE) {
session_write_close();
}
- This reply was modified 2 weeks, 2 days ago by Zartab Farooquee.
Forum: Fixing WordPress
In reply to: WordPress PasswordDisable Security Plugins: If you have access to the WordPress dashboard, try temporarily disabling any security plugins to see if that resolves the issue.
Forum: Fixing WordPress
In reply to: Error while updating pluginsIncrease the memory limit
define(‘WP_MEMORY_LIMIT’, ‘256M’);
Forum: Fixing WordPress
In reply to: Extra space on the right side (just on mobile)body { overflow-x: hidden; } add this css
Forum: Fixing WordPress
In reply to: Hiding side bar / full page content stopped workingGo to Appearance > Customize and look for layout settings specific to pages or posts. Sometimes theme updates can reset settings and Recent plugin updates could be causing conflicts with your theme’s layout options. Temporarily deactivate plugins to see if the issue resolves
Forum: Fixing WordPress
In reply to: Unable to access bbPress forum pages though the content still thereResave Permalinks:
- Go to Settings > Permalinks and save changes to refresh permalink settings.
Forum: Fixing WordPress
In reply to: Previous & Next Block – Hide background colorYou can use a :empty selector
.button-previous-and-next:empty {
display: none;
}
Forum: Fixing WordPress
In reply to: Enlarge image.pdfemb-viewer{
max-width: 100%;
}
add this Css
Forum: Fixing WordPress
In reply to: I Cannot Install Sidebar WidgetGo to Appearance > Customize > Posts/Pages Layout and choose the post type where you wish to include a sidebar. Find the Default Page Layout for your post type, and select the option for a right or left sidebar.
You can edit the sidebars in the admin dashboard by navigating to Appearance > Widgets and editing the default sidebar of your choice.
- This reply was modified 2 months ago by Zartab Farooquee.
- This reply was modified 2 months ago by Zartab Farooquee.
Forum: Fixing WordPress
In reply to: About page widthYou can add this css in Appearance > Customize > Additional CSS
body {
width: 100%;
margin: 0;
padding: 0;
}
#page {
max-width: 100%;
}
Forum: Fixing WordPress
In reply to: Page styling – bug or feature?Use Additional CSS in the Customizer: This way, the styles remain local to each page without causing conflicts with future updates.
body.page-id-123 {
background-color: #e0e0e0; color: #111;
}
Forum: Fixing WordPress
In reply to: Problem with categoriesFor the the category pages issues you need to create a child theme to modify the category.php template as per your need and future update to the parent theme (oblique) don’t effect our changes.
Process to create a Child theme
Go to
wp-content/themes/
and create a new folder named something likeoblique-child
.Inside the
oblique-child
folder, create a file namedstyle.css
/*
Theme Name: Oblique Child
Theme URI: https://your-site-url/
Description: Child theme for the Oblique theme
Author: Your Name
Author URI: https://your-site-url/
Template: oblique
Version: 1.0.0
*/———————————————–
Create functions.php in same folder
<?php function oblique_child_enqueue_styles() { wp_enqueue_style(‘parent-style’, get_template_directory_uri() . ‘/style.css’); } add_action(‘wp_enqueue_scripts’, ‘oblique_child_enqueue_styles’);
—————————————————-
Copy category.php from
oblique
to Oblique Child theme and change into theme.- This reply was modified 2 months ago by Zartab Farooquee.
Forum: Fixing WordPress
In reply to: Blogs visible but categories not workingAdd these code in wp-config.php
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, false);
And tell me the error, what is it?
Forum: Fixing WordPress
In reply to: Domain ChangeHave u define a new url in wp-config.php?
define(‘WP_HOME’, ‘https://completeathletebaseball.com’);
define(‘WP_SITEURL’, ‘https://completeathletebaseball.com’);