Shiful H
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] How to show tag descriptionHi Could you please try with below code ?
<?php the_archive_description( '<div class="taxonomy-description">', '</div>' );?>
- This reply was modified 7 years, 12 months ago by Shiful H.
Forum: Themes and Templates
In reply to: [Sydney] How to make footer fixed to the bottom of the screen?Hi carlblanchet,
happy to see your issue solved!Forum: Themes and Templates
In reply to: [Sydney] How to make footer fixed to the bottom of the screen?Hi Try with below code
.footer{ position:fixed; bottom:0; }
There are few more requirement to fix your layout while try to fix it.
Keep a space by adding margin-bottom:same height as your footer on upper div.
thanks.
Forum: Themes and Templates
In reply to: [Virtue] header moved on different computersHi Mrgem,
I reviewed your home page and not experienced the issue which you mentioned.I just found the header has another responsive view on small devices. In there your shop logo not showing.
Are you experiencing this issue?
Forum: Reviews
In reply to: [WooCommerce bKash] Not works interactively!!!Hi Tareq vai,
The plugins still not working once transaction ID entered it showing error, ‘undefined’
Could you please review once?
Forum: Fixing WordPress
In reply to: it’s been three days guys please help me with 404 error‘myseoway.com/postname’ this form should work by default wordpress settings menu and permalink option.
There has no more code or script required.
In your case did you checked all options after new wordpress installation?Without checking from dashboard, this is difficult to advise you. Please try more with permalink options.
Thanks.
Forum: Themes and Templates
In reply to: [Gateway] Mobile Pages’ Header Not ShowingHi Kaitlinkuehner,
Just re-look your single.php file and header.php is there any conditional script are written single page.This appears whole web site and the single.php are not containing same header.
I hope this make sense to you next level.
Thanks.
Forum: Fixing WordPress
In reply to: it’s been three days guys please help me with 404 errorHi Kevin,
I Just checked your site is live now.
For the postname in the url you need to set from setting > Permalink or yourdoamin.com/wp-admin/options-permalink.php and choose Permalink Settings in below common settings Post name Radio box. Save it. That’s all.This can help.
Forum: Themes and Templates
In reply to: Uptown Style Header Text Not ResponsvieHi kpatzer,
I got your expectation. Yeah, this need to be font size responsive. If you can edit your theme slightly then everything will be fine. If you’re not the level to customize your theme I recommend you hire somebody for this small work.@media screen command in CSS can make this workable.
Thanks.
Forum: Themes and Templates
In reply to: Uptown Style Header Text Not ResponsvieHello,
I checked for you and found everything ok. What you mean by text cut on mobile device. It is working from all device. The theme is responsive.Forum: Themes and Templates
In reply to: [Author] Featured Image Rounded CornersHi Chris,
Could you please just open your style.css file from theme folder and go to the line 892 then replace with below css ? or just one property add can make your image corner round. border-radius: 35px;
.featured-image > img, .featured-image > a > img {
position: absolute;
left: 0;
height: 100%;
width: 100%;
object-fit: cover;
border-radius: 35px;
}Forum: Themes and Templates
In reply to: [Customizr] Bigger social media iconsHello,
Could you please paste this below code to your theme style file then it will be double size.footer#footer .colophon .credits a[class*=”icon-“], footer#footer .colophon .social-block a {
color: #5A5A5A;
text-shadow: 0 0 0 #fff;
font-size: 35px;
padding: 2%;
}Thanks
Forum: Fixing WordPress
In reply to: it’s been three days guys please help me with 404 errorNo you don’t need to anything change on class-wp.php it’s ok. Could you able to reinstall the wp without delete your DB? That can help.
If you can’t do this by reinstall, then send your FTP username and Password to me to check further. Saiful.mlb skype id can help you.
- This reply was modified 8 years ago by Shiful H.
Forum: Fixing WordPress
In reply to: How to increase avatar sizeHello, give me page link to review where you need to amend.
Forum: Fixing WordPress
In reply to: it’s been three days guys please help me with 404 errorProbably the line wp-includes/class-wp.php on line 184 is like below
$home_path = trim( parse_url( home_url(), PHP_URL_PATH ), ‘/’ ); // this lineAnd this happens for your rewrite engine. The condition is :
if ( ! empty($rewrite) ) {
// If we match a rewrite rule, this will be cleared.
$error = ‘404’;
$this->did_permalink = true;Could you please put the below code on httaccess file and before that delete all existing code from that?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress