Rupok Chowdhury Protik
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ShootingStar] Remove frameHi @ruzho,
I just activated ShootingStar theme on my test site, created a page with “Full Width” template and visited that page on front-end but the frame around the post is there. Please check this screenshot for reference: take.ms/ZgGDL
Does it not look the same on your site? In that case, can you please share the URL of one of your site pages using “Full Width” template so I can inspect the elements and give you custom CSS code to fix that?
Have a nice day. Cheers!
RupokForum: Themes and Templates
In reply to: [Hueman] Yellow Background on Google AdsHi @sumit227,
Yes, you can add that custom CSS code in your theme’s style.css file. To do that, please go to “Dashboard > Appearance > Editor” section and from the list on right side of your screen, select “style.css” file and add that custom CSS code at the bottom of that file.
But please NOTE, adding custom CSS code in theme’s style.css file is not preferred because all of your changes will be gone when you update your theme and you will have to add those changes everytime you update your theme. That’s why using a child theme or custom CSS plugin is preferred as CSS code added through them won’t be gone with theme update.
Have a nice day. Cheers!
RupokForum: Themes and Templates
In reply to: [Smartline Lite] Tagline display issueHi @bradex,
Can you please try the following custom CSS Code?
#logo { width: 300px; } #logo .site-description { margin: 0; }
It will show the tagline below the title. You can add this to a theme’s stylesheet, in a child theme, or using a plugin like My Custom CSS.
You can adjust logo width from 300px to your desired number or percentage.
Please note: The custom CSS code I provided above is based on the theme demo.
Have a nice day. Cheers!
RupokForum: Themes and Templates
In reply to: [Hueman] YouTube video width on smartphoneHi @7kontinente,
The embed code you shared has “width” parameter set to 560px. That’s why it’s going beyond the border of your iPhone. Can you try replacing “560” with “100%” ? So you should be using the following code:
<p style="text-align: center;"><iframe src="https://www.youtube.com/embed/NSfXolCmnFo?rel=0&showinfo=0" width="100%" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
This will make the video responsive and width will adjust to full content area regardless of screen size.
Have a nice day. Cheers!
RupokForum: Fixing WordPress
In reply to: Cannot access admin page (Insufficient permission)@alayna28 : In wp_usermeta table… To be more specific, go to your phpmyadmin and select your db, then go to wp_usermeta table, there you will find these values.
Forum: Installing WordPress
In reply to: What happened ???From which version are you trying to update?
Forum: Fixing WordPress
In reply to: deleting imagesI’ve not used this so can’t guarantee you but this should work. Install this plugin first
Regenerate Thumbnails – Version 2.2.0
In file regenerate-thumbnails.php locate this, at line 357:
@set_time_limit( 900 ); // 5 minutes per image should be PLENTY $metadata = wp_generate_attachment_metadata( $image->ID, $fullsizepath );
Add this block of code between the two lines:
@set_time_limit( 900 ); // 5 minutes per image should be PLENTY // find and delete any previous image-sizes $info = pathinfo($fullsizepath); $ext = $info['extension']; $pattern = str_replace(".$ext", "-*x*.$ext", $fullsizepath); foreach (glob($pattern) as $filename) { @unlink($filename); } $metadata = wp_generate_attachment_metadata( $image->ID, $fullsizepath );
This should delete any previously generated image-sizes, including older outdated sizes before creating the new sizes.
Thanks to Ov3rfly if it works.
Forum: Fixing WordPress
In reply to: Navigating to any wp-admin URL downloads the php templateIt’s not about the theme or plugin. If your browser returns the php file, then your server is not rendering PHP. And if it only happens when you go to wp-admin, there there might be permission issue.
Contact your hosting provider asap.
Forum: Fixing WordPress
In reply to: Cannot access admin page (Insufficient permission)Well, most probably it’s about curly quotes.
a:1:{s:13:"administrator";b:1;}
and
a:1:{s:13:”administrator”;b:1;}
are not same. Try changing them.
Forum: Fixing WordPress
In reply to: footer 100% different on homepage differentCheck if the current page is homepage by this <?php is_home(); ?>
If home you can call default footer, and if not, you can call another footer made by you.
More Details Here: https://codex.www.ads-software.com/Function_Reference/is_home
Forum: Fixing WordPress
In reply to: Default audio player shows differently on same pageIt’s working perfectly on Mozilla & Chrome in Ubuntu & Mac. Probably an issue of your browser. Have you tested in on other browsers?
Forum: Plugins
In reply to: [Plugin: NextGen Gallery] Remove amount of photos in album textThanks a million Paulio…