Sundar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Javascript and CSS broken in wp-adminAfter page refreshing and if it looks OK, after re-login, set ‘SCRIPT_DEBUG’ to ‘false’.
Thank you.
Forum: Fixing WordPress
In reply to: Javascript and CSS broken in wp-adminHello,
Please add the following defines in wp-config.php and test the pages / scripts.
define(‘FORCE_SSL_LOGIN’, true);
define(‘FORCE_SSL_ADMIN’, true);
define( ‘CONCATENATE_SCRIPTS’, false );
define( ‘SCRIPT_DEBUG’, true );Thanks,
Forum: Fixing WordPress
In reply to: Deprecated: Function create_function() is deprecatedHi,
In PHP 7.2.0, the “create_function()” is deprecated. So you should use Anonymous Function instead.
For example instead of something like this:
$callback = create_function('', 'echo "'.str_replace('"', '\"', $section['text']).'";');You should create function like this:
$callback = function() { echo str_replace('"', '\"', $section['text']); };* Update all plugins & active theme with latest version release.
Thanks!
Forum: Fixing WordPress
In reply to: blank page on customizr preview screenPlease switch to default “Twentytwenty” theme and check the customize section, so that you can find if any issues with theme library and functions.
Forum: Everything else WordPress
In reply to: remove website from Google searchHi,
Please follow these steps below,
1.Log into Webmaster Tools.
2.On the Dashboard homepage, click “Site Configuration” from the left side menu panel.
3.Click on “Crawler Access” and then select “Remove URL”
4.Click on “New removal request”
5.Type the full URL of the page you want to remove from the search results. Then click “Continue” ( URL is case sensitive).
6.Click “Yes, remove this page”.
7.Click “Submit Request”.All done!
ThanksForum: Requests and Feedback
In reply to: Image Border/ShadowHi,
Please follow the steps to make updates.
– Go to your active theme directory find nwb.css file
– And search for the following CSS style and remove it.
.entry-content img { box-shadow: 0px 0px 2px 4px #aaa; }Thanks.
Forum: Developing with WordPress
In reply to: I am unable to display my new widget areaHi,
Add this code in your sidebar.php file
<?php if ( is_active_sidebar( 'header_1' ) ) : ?> <?php dynamic_sidebar( 'header_1' ); ?> <?php endif; ?>Thanks.
- This reply was modified 5 years, 8 months ago by bcworkz. Reason: code fixed
Forum: Fixing WordPress
In reply to: Problems with installing pluginsHi,
Please check and update “plugins” directory file permissions and then try to upload / add new plugin from WordPress admin section.
Thanks!
Forum: Fixing WordPress
In reply to: Please help with this fatal errorHi,
I have checked the noted issues. Sometimes it’s possible that one or more WP core files are missed from the setup. Download a fresh copy of WordPress from wordpress.org, unzip locally, and upload the files and sub directories in the resulting WordPress directory to your site.
Thanks.
Forum: Fixing WordPress
In reply to: buttons: change text-transform to “non”, no uppercaseHi,
If you have a cache plugin or server cache. You need to purge it’s cache contents and then test the CSS result. Hope this helps!
Thanks
Forum: Fixing WordPress
In reply to: blank page on customizr preview screenHi,
It may due to Plugin Conflict or Error:
A plugin conflict or code error can cause Customizer Preview to stop loading or part of it to stop working properly. Please follow these steps below,
1. If you have a cache plugin or server cache. You need to purge it’s cache contents and disable it.
2. De-active all your plugins.
3. Clear your browser history and visit your Appearance -> Customize to see if it works.
4. Re-activate one plugin at a time & test it.
5. Clear your browser history and visit your Appearance -> Customize to see if it works.
6. If you have found a plugin that breaks your Appearance -> Customize.
– You can double check by activating only this plugin and deactivate all other plugins.
– Visit Appearance -> Customize and see if it works.Thanks.
Forum: Fixing WordPress
In reply to: About adding the nofollow tagHello!
Please add the following functions code in active theme functions.php file
add_filter(‘the_content’, ‘my_nofollow’);
add_filter(‘the_excerpt’, ‘my_nofollow’);function my_nofollow($content) {
return preg_replace_callback(‘/<a[^>]+/’, ‘my_nofollow_callback’, $content);
}
function my_nofollow_callback($matches) {
$link = $matches[0];
$site_link = get_bloginfo(‘url’);
if (strpos($link, ‘rel’) === false) {
$link = preg_replace(“%(href=\S(?!$site_link))%i”, ‘rel=”nofollow” $1’, $link);
} elseif (preg_match(“%href=\S(?!$site_link)%i”, $link)) {
$link = preg_replace(‘/rel=\S(?!nofollow)\S*/i’, ‘rel=”nofollow”‘, $link);
}
return $link;
}Hope it helps!
ThanksForum: Developing with WordPress
In reply to: Two Logos on WP HeaderHi,
Please make the following design styles updates if you want move logo on the right side of the header
#site-logo {
float: right;
height: 100%;
display: table;
}#site-navigation-wrap {
float: left;
position: relative;
right: -15px;
}Thanks.
Forum: Everything else WordPress
In reply to: ‘wp-block-file__button’ Colour ChangeHi,
Please add the following CSS code in theme customize->Additional CSS section,
.wp-block-file__button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}Thanks
Forum: Developing with WordPress
In reply to: Customizing the menuHi,
Please add the following CSS code in WordPress admin Customizer area,
.site-navigation{
background-color: #000000ab;
}Thanks