j09
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website displaying badly on mobileHello @hl2003
For the most part, your website works well on a mobile screen; however, there are a couple of things that need to be fixed.
The issues:
1- Images are not resized to fit the screen – you have to scroll horizontally to see the entire image.
2- The top menu bar covers the titles of the articles – it also covers a part of the “buy me a coffee” button on PC screens.The Fix
I added the CSS code that “should” for the most part clear up all the issues below.
The code is formatted as follows: it starts with two hashtags, like so ##, on the first line, and then the code below that. It also ends with two hashtags, like so ##, on the last line.
You don’t need to copy the hashtags Just copy what is in between
The code:
##
body {
margin: 0 auto;
max-width: 100vw
}
img {
max-width: 100%;
height: auto;
}
.spacer {
height: 150px;
}
##You need to copy the code to the Additional CSS tool in the theme Customizer
Here are the steps to get there:
1- Login to the WordPress Admin menu
2- Navigate to Appearance and then to Customize under that
3- Navigate all the way down and choose Additional CSS
4- You will then be taken to a box in which you can add css code
5- The box has some basic introduction for the tool (Select all and then delete to get rid of it)
6- Paste the Code you copied into the box now.
7- Navigate to Save & Publish – it’s at the top so you have to navigate back.This should take care of the issues. I hope that was clear enough.
Let me know if you need anything else.
Forum: Fixing WordPress
In reply to: Need image sizing help pleaseOn the off-chance you’re still looking for a fix,
Try this CSS
figure { margin: 0 auto; } #motopress-main.main-holder .content-holder div.product div.images { width: auto; max-width: 410px; margin: 1.3em auto; }- This reply was modified 9 years, 2 months ago by j09.
Forum: Fixing WordPress
In reply to: Veoh videos on https website?Hello @johanna2patricia
It sounds like a Mixed Content issue.
You can verify this by using the f12 key on your keyboard. You should see a bunch of errors on the bottom right corner
Try and see if installing the Really Simple SSL plugin fixes your issue.
Forum: Fixing WordPress
In reply to: Server drops every 5 mins, so can’t edit posts or pages.There are three things I can recommend. Select one of them.
A- The next time your website starts acting up, login in to you hosting dashboard –
cpanelor equivalent – and look at the percentage of CPU and Ram usage.Just like your desktop / laptop / Mobile phone will slow down if the processor is busy or if there is not enough ram, your server will do the same thing.
Again, your priority is to make sure that nothing on your end is causing this before considering any changes / upgrades on your hosting plan / provider.
I would hate for you to fork out money on something you don’t need. So I would just advise a bit of patience and you’ll be able to pin this down.
C- Debug the problem via logs.
1- have you checked your logs?
2- Turn on DebuggingI copied the following from WordPress Codex
The following code, inserted in your wp-config.php file, will log all errors, notices, and warnings to a file called debug.log in the wp-content directory. It will also hide the errors so they do not interrupt page generation.
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 );NOTE: You must insert this BEFORE /* That’s all, stop editing! Happy blogging. */ in the
wp-config.phpfileOnce that’s on and the problem occurs, you need to go and see what’s been logged in
debug.logwhich you can find in thewp-contentdirectoryForum: Fixing WordPress
In reply to: Server drops every 5 mins, so can’t edit posts or pages.You can still get limited DDos attack protection even on a free Cloudflare plan
I still think you should look at the resource usage / logs to see if you can locate where if cause of the problem is the server overloaded.
I think you should sort this issue out first before thinking about any server upgrades.
Forum: Fixing WordPress
In reply to: SSL IssuesJust to add to what @catacaustic shared.
You can also use Really Simple SSL to sort those out automatically and almost instantly too.
Forum: Fixing WordPress
In reply to: Server drops every 5 mins, so can’t edit posts or pages.Check your logs and also check your server resource usage.
Turn on – I’m under attack – in Cloudflare – but make sure your IP is white-flagged – and see if the problem persists
Also, did this start after you changed something you or just start randomly 4 days ago?
Forum: Fixing WordPress
In reply to: Theme options not displayed after installing a free wordpress theme,Not all themes have the “Theme Options” tab under the appearance tab.
In the theme search menu, you can limit your search to themes that have the “theme options” menu.
For example:
If your website is not private – or locally hosted – kindly provide a link as it makes finding the problem easier
Forum: Fixing WordPress
In reply to: Clear cache, but content and theme still stays the same.Hello @minneeme
just to add to what @joaomino kindly wrote above.
I see
X-Proxy-Cachein your response headers.This may be an indication of server-based caching (Beyond WordPress)
This will still serve cached pages even if you don’t have any caching plugins.
The cache for your homepage has this expiration date:
Wed, 22 Feb 2017 04:53:10 GMT
I know you said you already talked to your hosting provider, but you need to talk them again. whoever you spoke to seams to be incompetent.
Talk to your hosting provider about
1- purging the proxy-cache
2- Disabling
ngixproxy-caching to prevent this from happening again(if you disable ngix caching you will need to implement an alternative caching solution and there are many plugins that handle that)
Once you take care of that, you should also clear your browser cache.
Forum: Fixing WordPress
In reply to: IFrame Not Showing Up In PostsIf you have installed the plugin, you need to modify the way you write the code for
iframesInstead of using
<iframe src="http://www.youtube.com/embed/4qsGTXLnmKs"></iframe>tagsuse the short-code that the plugin adds to your install.
Like so:
[iframe src="http://www.youtube.com/embed/4qsGTXLnmKs"]to display the frames in your post
- This reply was modified 9 years, 2 months ago by j09.
Forum: Fixing WordPress
In reply to: Specifically Targeting Image in WidgetYou can target the image as you normally would just add something to your selector to limit the changes to the home page only. In your case it’s either the
homeclass selector or thepage-idclass selectorThere are two options here,
Option #1 using the
homeclass.home .execphpwidget img { }Option #2 using the
page-idclass.page-id-4 .execphpwidget img { }Forum: Fixing WordPress
In reply to: IFrame Not Showing Up In PostsForum: Fixing WordPress
In reply to: IFrame Not Showing Up In PostsDoes it show up like regular text? Like this
<iframe src="etc etc etc"></iframe>If you’re using the visual editor, WordPress formatting may interfere with the
html tagsand break youriframecode.Forum: Fixing WordPress
In reply to: IFrame Not Showing Up In PostsHello @andreadwiener
There are no
iframeson the page you linked to.it’s not that they are there and not showing. It’s that they are not really there.