Akramul Hasan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Banner Mobile Display Issue@4familyes Sounds good to hear, it was helpful for you. You are most welcome.
Forum: Fixing WordPress
In reply to: WordPress for website@raviole Sounds good it helps you. You are most welcome!
Forum: Fixing WordPress
In reply to: WordPress for websiteHi,
You actually need to convert a static HTML, CSS layout into a WordPress theme.
So you can start form here:https://codex.www.ads-software.com/Theme_Development
You will get organized and step-by-step guidelines to make a WordPress theme by using your HTML layout.
Best of luck.
Regards
Forum: Fixing WordPress
In reply to: Product Name Not Align at WebpageYes, this is the place to put the css code I sent you.
Put the code here and hit Publish button at top area.
ThanksForum: Fixing WordPress
In reply to: Product Name Not Align at WebpageUpload image here and share link
https://imgbb.com/Forum: Fixing WordPress
In reply to: Product Name Not Align at WebpageStill its 404
Forum: Fixing WordPress
In reply to: Product Name Not Align at WebpageThe url is showing 404 error.
No photo there.Forum: Fixing WordPress
In reply to: Product Name Not Align at Webpage@burburryn can you please take a screenshot of the place you mentioned?
Forum: Fixing WordPress
In reply to: Product Name Not Align at WebpageHi,
To fix it need to add some CSS code.
Here it is:.summary.entry-summary { padding: 40px; }
To add custom CSS code:
1. Go to your site’s dashboard.
2. On the left sidebar, click on Appearance -> Additional CSS.
3. Paste the code and click on the Save Changes button.Let me know if you need further help.
- This reply was modified 2 years, 3 months ago by Akramul Hasan.
Forum: Fixing WordPress
In reply to: Critical errorHi,
To solve the issue first of all you need to know from where the issue is coming. To do that you need to enable your debug mode.If you can access your WP installation root folder, then edit
wp-config.php
file.
You should find bellow code anywhere in this file.
define( 'WP_DEBUG', false );
Make this value from ‘false’ to ‘true’, so your code will be
define( 'WP_DEBUG', true );
Now again reload your site and you should get details of the actual error which will help you to take further action.
Regards,
Forum: Fixing WordPress
In reply to: Site name and TaglineHi,
This is the function to add titles dynamically
add_theme_support( 'title-tag' );
But his need to hook with an Action hook called:
after_setup_theme
Something like:
function your_theme_setup_func(){ add_theme_support( 'title-tag' ); } add_action('after_setup_theme','your_theme_setup_func');
Put this snippet on your
functions.php
file.Hopefully, it will be helpful for you.
Thanks
Forum: Fixing WordPress
In reply to: page visable can always with a “Page not Found” tag descriptionHi,
How did you create this product archive page? Is this page created from admin panel pages->add new ?? or is it from any custom template?If it’s a custom template, need to check if is there any title tag on the page. Also need to check your header.php and functions.php file to check if the title tag coming dynamically or not.
hi, @thefrenchpotter
That’s great.Thanks
Forum: Fixing WordPress
In reply to: starting an about us page on wordpressHello @jdembowski
Thanks a lot for the reminder, this won’t repeat again.Regards
Hi,
Which version of WordPress is active currently?
Take a backup of your wp-content folder and then update WordPress core.Thanks