Muhibul Haque
Forum Replies Created
-
Forum: Reviews
In reply to: [Health Bridge] Great work!Thank you ??
Forum: Everything else WordPress
In reply to: horizontal lineCan you add a screenshot of which horizontal line you want to remove? I checked from mobile device and there is no line here.
Also, you can hide them with css. Select the class and add ‘display:none’ to the item. I hope this will solve the issue.
Forum: Developing with WordPress
In reply to: I want to create page like this, please help meIf the website is built with WordPress, you can use websites like “wpdetector” to check what theme and plugins they are using. Also, you will find many websites that helps to identify a theme and plugins from WordPress websites.
Forum: Plugins
In reply to: [Meta Box] No Dashboard Option ShowingThanks for the clarification.
Forum: Fixing WordPress
In reply to: How To Hide The Header & Footer from Portfolio PageYou can use Elementor page builder and create custom template without header and footer. Then use that custom template for specific pages.
Forum: Fixing WordPress
In reply to: How To Hide The Header & Footer from Portfolio PageAre you using any page builder like Elementor?
I think you have to use their extension “Meta Box Builder”, on that you will find setting page and you can place your custom fields to different positions. Added a screenshot below.
How do you add those custom fields? Using any plugins or custom code?
Forum: Everything else WordPress
In reply to: Need Help creating a reusable page layoutI think you can’t save whole page as template. What you can do is just duplicate the first page and then change categories. You will find many post or page duplicator plugins.
Forum: Developing with WordPress
In reply to: WooCommerce Checkout Page Hooks Not DisplayingThanks, I will follow this guide.
I am glad, it helped you.
Forum: Developing with WordPress
In reply to: WooCommerce Checkout Page Hooks Not DisplayingI am using block. No short code added.
function use_author_link_as_comment_author_url( $url, $id, $comment ) { if ( $comment->user_id ) { return get_author_posts_url( $comment->user_id ); } return $url; } add_filter( 'get_comment_author_url', 'use_author_link_as_comment_author_url', 10, 3 );
Can you please try above given code on functions.php file? I hope this will solve your issue.