alithewpdev
Forum Replies Created
-
Forum: Plugins
In reply to: [Firelight Lightbox] Lightbox feature isn’t workingThanks, it worked!
Forum: Plugins
In reply to: [Firelight Lightbox] Lightbox feature isn’t workingThis page is created in Elementor and lightbox feature is working fine here. Can you please tell me how can I fix the issue happening in image in classic editor.
Inline layout had been selected in my setting and I’m looking in the boxed layout configuration. That’s why it didn’t work. Now it has been resolved, thanks!
I did but nothing happened
Forum: Developing with WordPress
In reply to: Hide “no comments” from blog pageHi @cafeduprojet I was not talking about the comment widget. Please check the recent posts widget settings, you may find to hide the comment.
Alternatively, you can hide with the CSS but that forward slash won’t hide.
Forum: Developing with WordPress
In reply to: title doesnt display in the index pageHi @sacconi, Position absolute CSS was added to the H1 tag, that’s why it’s not visible to you. I have removed that via inspect element and now it’s showing. Please check this image https://ibb.co/Cnc9nfG.
Forum: Developing with WordPress
In reply to: Hide “no comments” from blog pageCan you please tell me the name of that widget?
Forum: Developing with WordPress
In reply to: Hide “no comments” from blog pageHi @cafeduprojet Please check your theme or widget setting to hide this comment element.
Forum: Everything else WordPress
In reply to: Malware and hackered siteYou can use the free version of wordfence as well. But if you are going to use premium version then yes you have to purchase 4 licenses.
For the firebird, You can contact to firebird support here for better support.
Forum: Everything else WordPress
In reply to: Malware and hackered siteI would recommend the wordfence and then just start the scan and it will show the code and file name which are having malicious code.
Forum: Everything else WordPress
In reply to: Malware and hackered siteForum: Developing with WordPress
In reply to: Disable multiple upload on media libraryTry this code
function disable_multiple_upload_files( $args ) { $args['multi_selection'] = false; $args['max_file_uploads'] = 1; return $args; } add_filter( 'flash_uploader', 'disable_multiple_upload_files' ); add_filter( 'plupload_init', 'disable_multiple_upload_files' );
Forum: Developing with WordPress
In reply to: Disable multiple upload on media libraryHi @dheerajkgour Try this code in your functions.php file
function disable_multiple_upload_files( $args ) { $args['multi_selection'] = false; return $args; } add_filter( 'flash_uploader', 'disable_multiple_upload_files' ); add_filter( 'plupload_init', 'disable_multiple_upload_files' );
Forum: Developing with WordPress
In reply to: Hiding the featured image only in the post pagesHi @sacconi You can use the following code for the functions.php to hide the featured image from the single post. Please make sure that you are using child theme.
function hide_featured_image() { if ( is_single() ) { global $post; if ( has_post_thumbnail( $post->ID ) ) { echo '<style type="text/css">.single-post .featured-image {display:none;}</style>'; } } } add_action( 'wp_head', 'hide_featured_image' );
Forum: Localhost Installs
In reply to: Can’t change upload limitHi @junior466 If this is not working then you can try to contact your hosting support they will change from the server as it seems it will be change from server side.