alithewpdev
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Login WordPress doesn’t workHi @songtrain I’m glad. If you have DB access then you can change password in wp-users table or if you are not familiar with the DB then you can ask your hosting provider they can help you for the same.
Forum: Fixing WordPress
In reply to: How to hide page nameHi @ketanco Maybe it’s a theme feature but no worries you can hide homepage title via functions.php file using following code. Just paste this code in your functions.php under your theme. I haven’t tested but it should work.
add_filter( 'the_title', 'remove_home_page_title', 10, 2 ); function remove_home_page_title( $title, $id ) { if( is_home() || is_front_page() ) return ''; return $title; }Forum: Fixing WordPress
In reply to: NEED HELP!! Products@wexort It seems your single product page have been modified if that was working correctly. Please compare your existing template with this https://woocommerce.github.io/code-reference/files/woocommerce-templates-single-product.html
Hi @johannes999 You can use hamburger font awesome icon and you don’t need to do anything like that
Forum: Everything else WordPress
In reply to: Making a video hosting websiteHi @muraterdemsel I think we can’t discuss hire related things here. Maybe it’s against the rule. Moderator can tell you more about that.
But here https://jobs.wordpress.net/ you can upload your requirement and hire someone.
Forum: Fixing WordPress
In reply to: NEED HELP!! ProductsHi @wexort Please share your website link as well.
Forum: Fixing WordPress
In reply to: How to insert a space between blocksJust click on the paragraph and in the right sidebar there will be multiple settings related to this paragraph. One of the setting will be Dimension and here you can find the padding.
Forum: Developing with WordPress
In reply to: How to make posts with future date visible on websiteHi @moxie Paste the following code in your functions.php file
function ali_upcoming_posts() { // The query to fetch future posts $the_query = new WP_Query(array( 'post_status' => 'future', 'posts_per_page' => 3, 'orderby' => 'date', 'order' => 'ASC' )); // The loop to display posts if ( $the_query->have_posts() ) { echo '<ul>'; while ( $the_query->have_posts() ) { $the_query->the_post(); $output .= '<li>' . get_the_title() .' ('. get_the_time('d-M-Y') . ')</li>'; } echo '</ul>'; } else { // Show this when no future posts are found $output .= '<p>No posts planned yet.</p>'; } // Reset post data wp_reset_postdata(); // Return output return $output; } // Add shortcode add_shortcode('upcoming_posts', 'ali_upcoming_posts');And use this the below shortcode wherever you want to display the future posts.
[upcoming_posts]Forum: Everything else WordPress
In reply to: Best search method for WP websiteHi @magnus43 I would recommend the searchWP plugin. This is paid but the best plugin in my opinion. It also have many extensions which you may need in future.
Forum: Fixing WordPress
In reply to: Plug-ins won’t update on my WordPress DashboardHi @octintz Without having login credential it’s not possible to tell or fix the issue.
But you can manually update the plugins via FTP. Here is the article( https://www.wpbeginner.com/beginners-guide/how-to-manually-update-wordpress-plugins-via-ftp/ ) which can help you.
Forum: Developing with WordPress
In reply to: remove a single script from wp headHi @mottux You can try to deactivate the plugins one by one and see which plugin added this script.
Forum: Everything else WordPress
In reply to: How to save to draft, not publishHi @idiomist Whenever you create a post/page just click on save draft everytime untill you want to publish that post/page as mentioned in the image https://ibb.co/6tSW54m
Forum: Fixing WordPress
In reply to: Latest Blog Post Block not working correctly@bwglaw in the preview it’s showing correct format but not on the frontend. So can you try to disable plugins and check the issue?
Forum: Everything else WordPress
In reply to: Browser shows insecure when self hosted video added@vimalwplogin From the URL, it seems the video url is not secure. This is the only issue converting your page to unsecure.
You can test this by adding the following code to your html widget and removing the existing self-hosted video widget.
<video width="400" controls> <source src="https://vedaagamaheritagetrust.com/wp-content/uploads/2023/04/Inaugural_function-Video.mp4" type="video/mp4"> </video>Forum: Developing with WordPress
In reply to: H2 title ‘related posts’ section to aHi @luukvossers9, It seems you are using Elementor on your site. You can create a search template, and you will see the option to change HTML tags for heading and content.
I hope this will help.