Sundar
Forum Replies Created
-
Hi @patinthehat,
You’re welcome. Thank you!
Forum: Developing with WordPress
In reply to: centering list blockYou’re welcome! Thanks.
Forum: Fixing WordPress
In reply to: Twice social share barYou’re welcome, Thank you!
Forum: Fixing WordPress
In reply to: Twice social share barHi,
For Quick Fix: You can add the following CSS code from WordPress admin section Appearance-> Customize-> Additional CSS
.tdb-block-inner.td-fix-index .heateor_sss_sharing_container.heateor_sss_vertical_sharing.heateor_sss_bottom_sharing { display: none !important; }Hope this helps!
ThanksForum: Developing with WordPress
In reply to: centering list blockYou can use it with !important
.post-content ul { text-align: center !important; list-style-position: inside !important; }Forum: Developing with WordPress
In reply to: centering list blockHi,
You can easily add the following CSS code in Appearance->Customize->Additional CSS
.post-content ul {
text-align: center;
list-style-position: inside;
}Thanks.
Forum: Fixing WordPress
In reply to: Twice social share barHi,
You need to select placement as “Pages” in the “Social Share” plugin settings area,
Please check details here https://imgur.com/a/HxwYfIc
Thanks,
Forum: Fixing WordPress
In reply to: Problem WP automatically change image filenames after uploadHello,
I have checked file uploads in different local environment WP setup and it works fine ( I don’t have file name issues ).
Please take a backup copy, reset your WordPress setup using https://wordpress.org/plugins/wp-reset/ plugin and then check the file uploads.
Also you can try rename options & features for media uploads
https://wp-dd.com/how-to-rename-images-and-media-files-in-wordpress/Thanks.
Forum: Fixing WordPress
In reply to: Dropdown menu hiding behind site origin hero imageHi,
Yes, You could use “z-index” property for the “widget_show-slier” class & fix these menu overlapping issues.
Thanks.
Hi,
You can use this CSS code in Appearance -> Customize -> Additional CSS section
.woof_show_auto_form { display:none !important; }Thanks,
Forum: Fixing WordPress
In reply to: class-wp-privacy-policy-content.php on line 96 and 97Hi,
WordPress Core producing these Errors:
Quick fix : PHP ?? null coalescing operator
$old[ $key ] = array(
‘plugin_name’ => $data[‘plugin_name’],
‘policy_text’ => $data[‘policy_text’],
);Changed line no 96,97 to
$old[ $key ] = array(
‘plugin_name’ => $data[‘plugin_name’] ?? ”,
‘policy_text’ => $data[‘policy_text’] ?? ”,
);Also please check this link for ‘unset’ property removal
https://core.trac.wordpress.org/changeset/48836
Thanks.
Forum: Developing with WordPress
In reply to: centering list blockHi,
Please follow the below steps to make design adjustments
Add one <div class=”listblockcentre”> tag with custom class before to the
- tag and then add this CSS code into Appearance->Customize->Additional CSS section
.listblockcentre { display: flex; justify-content: center; }Hope this helps!
ThanksForum: Fixing WordPress
In reply to: Problem WP automatically change image filenames after uploadHi,
You can create plugin by override that behavior using the following code.
To create a custom plugin, all you need to do is create a folder and then create a single file with lines of content. Navigate to the wp-content/plugins folder, and create a new folder named “customuniquefile”. Inside this new folder, create a file named uniquefilename.php. Open the file in a text editor, and paste the following code & save it:
<?php /* Plugin Name: Custom Unique File Name Plugin URI: -- description: A plugin to keep actual image filenames after upload Version: 1.0 License: GPL2 */ add_filter( 'wp_unique_filename', 'my_ununique_filename', 10, 4 ); function my_ununique_filename( $filename, $ext, $dir, $unique_filename_callback ) { $esc_ext = preg_quote( $ext ); if ( 1 === preg_match( "/\d+x\d+-\d{$esc_ext}\$/", $filename ) ) { if ( ! file_exists( "{$dir}/{$filename}" ) ) { $filename = preg_replace( "/-\d{$esc_ext}\$/", $ext, $filename ); } } return $filename; } ?>After that, you can go into the WordPress admin back end to activate your plugin.
Thanks!
Forum: Fixing WordPress
In reply to: Javascript and CSS broken in wp-adminHi,
In that case , please take a complete backup of website setup, manually update WordPress 5.5.1 ( WordPress Core ) and then test it. Hope this helps to sort out the problem and fix the issues.
Thanks,
Forum: Fixing WordPress
In reply to: Problem WP automatically change image filenames after uploadHi,
1. Please install new WordPress setup / update to WP 5.5.1 & then test the file uploads.
2. Deactivate all plugins and check the upload functionality.
You could check more details here
https://core.trac.wordpress.org/ticket/48974
Thanks,