alithewpdev
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Login WordPress doesn’t workHi @songtrain If you have FTP access then just add hyphen ( – ) in the wordfence plugin name in the plugin directory. It will deactivate the plugin. I know this is not the best solution but it will work for sure.
Or if you have DB access then you can change your password from there and you can login again with that
- This reply was modified 3 years, 1 month ago by alithewpdev.
Forum: Fixing WordPress
In reply to: SUPPORTHI @vookmack2 If this is not helpful for you then you can reset your password via database if you have access and if you are not familiar with the DB then you can contact with your hosting provider.
Forum: Everything else WordPress
In reply to: user uploaded image optimization?Hi @csontosanna You can use the Smush plugin which is a very good plugin and I’m already using it. About the vendor image upload standpoint, there is a setting in Smush to auto optimize when images uploads. So you don’t need to worry to optimize every uploaded images.
Forum: Fixing WordPress
In reply to: Latest Blog Post Block not working correctlyHi @bwglaw, Please check what you have selected here https://ibb.co/ryqw6Dy.
Forum: Fixing WordPress
In reply to: Show Recent Post On Homepage All Other Post On Another Page@djboutit Can you please confirm what editor are you using?
Forum: Fixing WordPress
In reply to: How to hide page nameHi @ketanco Edit the home page and in the right side bar you will find an option to hide the page title as shown in the image https://ibb.co/vVx9Nqq.
Forum: Fixing WordPress
In reply to: How to insert a space between blocksHi @ketanco Gutenberg works in this way but if you want to give more space then you can use paragraph padding/margin feature as shown in the image https://ibb.co/s3VdjrQ
Forum: Fixing WordPress
In reply to: My logo is not showing on mobile viewHI @higherter, Your site is super slow even if it can’t open and gives this error https://ibb.co/6tJGbVK.
Forum: Everything else WordPress
In reply to: Browser shows insecure when self hosted video addedHI @vimalwplogin I think it’s showing because your domain is not secure. So please install SSL first then it will not display unsecure video url.
And about the youtube video to be secure because youtube domain is secure, hence all the video associated with would display secure.
Suggestion: I would not to use self hosted video because it will slow down your website, instead use youtube or video.
Please let me know if you have any questions.
Forum: Developing with WordPress
In reply to: Show Blogs under a pageHi @iammspiderman To achive this you can go here. then select custom structure option and enter the following value
/blog/%postname%/It should work then as expected. Please let me know if you have any questions.
Forum: Fixing WordPress
In reply to: Show Recent Post On Homepage All Other Post On Another PageHi @djboutit If you are using Gutenberg editor then please use “latest post” block and set 24 count in it. If not then use the following code.
<?php // the query $the_query = new WP_Query( array( 'category_name' => 'news', 'posts_per_page' => 24, )); ?>You can exclude 24 posts from the following code.
query_posts('posts_per_page=6&offset=24'); if ( have_posts() ) : while ( have_posts() ) : the_post(); endwhile;Please let me know if you have any questions.
Forum: Developing with WordPress
In reply to: WPForms submit button not showing@j7gcl You can follow this small article https://world.siteground.com/kb/create-staging-site/.
I hope this help!
Forum: Developing with WordPress
In reply to: WPForms submit button not showing@j7gcl From which hosting provider you are using hosting? Maybe i could help.
I’m afraid there is no solution except providing your live site temporary credentials or giving me your website files and DB.
Screen sharing could be the other solution.
- This reply was modified 3 years, 1 month ago by alithewpdev.
Forum: Everything else WordPress
In reply to: Good contact form pluginHi @kufloyd You can use contact form 7, wpforms, Ninja forms, etc plugin but to recieve emails in your inbox you would require a SMTP plugin. I would recommend https://wordpress.org/plugins/post-smtp/ plugin.
Please let me know if you have any questions.
Forum: Developing with WordPress
In reply to: Edit Head tagHi @thompsonaire There are 3 ways to do this:
- You can create a child theme and copy header file in your child theme and search for <head> tag and then anything you want in that
2. You can use plugin for that as well. If you are using Elementor in your site then Elementor provide this feature already.
3. You can add via functions.php using the following code
add_action('wp_head', 'your_function_name'); function your_function_name(){ ?> PASTE HEADER CODE HERE <?php };Hope this will help!