Joey
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blank Homepage Content – All There in PreviewWhat are you supposed to show on your home page? Your latest posts? On WP admin, you can check “Settings” > “Reading Settings”, then see what’s listed for “Front page displays”?
- This reply was modified 8 years, 1 month ago by Joey.
Forum: Fixing WordPress
In reply to: Images getting Discolored in WordPressIn that case, I don’t really have any idea… Upon checking your https://wealthyu.club/, the images on the home page look quite okay (certainly not discolored), though. It may be your monitor issue (not calibrated properly)? Did you try viewing your websites from other computers, etc.?
Forum: Fixing WordPress
In reply to: Problem with Redirect created by WordPressI don’t know since when, but this is a default feature out of the box. Umm, I still think this is a good feature, cos the worst experience for visitors is definitely 404 error. When faced with 404 error, most people, if not all, simply leave your website.
Forum: Fixing WordPress
In reply to: Images getting Discolored in WordPressAre you using any plugin that reduces file size for images? By default, uploaded images won’t be compressed by WordPress itself.
Forum: Fixing WordPress
In reply to: Images not able to up load on websiteThis sometimes happens to me, but won’t last long. Maybe wait a while and retry? If still not working after a while, it should be due to permission for folders. Pls refer to https://codex.www.ads-software.com/Changing_File_Permissions
Forum: Fixing WordPress
In reply to: Problem with Redirect created by WordPressThis is actually a good feature to have. As long as people remember the first word of your post, they can find the article easily. To disable this, you’ll need to edit functions.php file, I believe.
Forum: Fixing WordPress
In reply to: Featured Image Scales Incorrectly on HomepageI guess it’s because of the below codes in your custom.css file. Max-height is set to 520px, and image cannot be taller than this dimension (so, it’s not cropping the image, but distorted). If you remove
max-height:520px;
from both set of codes, the image should be shown undistorted.#header-image{max-height:520px;width:100%;height:100%;position:absolute;top:48px;} #header-image img{max-height:520px;height:100%;width:100%;}
Forum: Fixing WordPress
In reply to: Post not showing on front pageI meant not clearing web cache. I don’t think it’s anything to do with web hosting. Did you happen to “schedule” your post, rather than just clicking “Publish” button? Scheduling the post occasionally fails…
Forum: Fixing WordPress
In reply to: Post not showing on front pageIs it simply a caching problem? What is the name of the article or URL? When I went to the front page of your website (listed in your profile), I see a post called “10 Best Online Tea Shops” dated 23 Feb, though.
Forum: Fixing WordPress
In reply to: Recent Activity barAh, great! Glad I helped. Nice website, by the way. ??
Forum: Fixing WordPress
In reply to: Recent Activity barSorry, what is 6.0 forms? Please refer to the below screenshot. This place is found under Appearance > Edit CSS.
Forum: Fixing WordPress
In reply to: Recent Activity barThanks for the URL. This can be changed by editing CSS. Log into your WP admin, go to “Appearance”, then “Edit CSS”. On line 6, please add the following.
.woocommerce-message { background-color: XXXXXX; }
Please replace XXXXXX with a colour of your choice (e.g. background-color: #3c1428). You can find colour samples at a place like https://www.color-hex.com/, https://www.w3schools.com/colors/colors_hexadecimal.asp. Hope this will help!
- This reply was modified 8 years, 1 month ago by Joey.
Forum: Fixing WordPress
In reply to: Button to schedule post for publishing is missingTo see “Schedule” button, you’ll need to click “Edit” (located right next to “Publish immediately”) first, and set a future date. Then, after clicking “OK”, “Publish” button changes into “Schedule”.
Forum: Fixing WordPress
In reply to: Recent Activity barAre you able to provide a website address (or a theme you are using)? Without seeing the codes behind, it’s not quite possible to help.
No worries! Once you’ve created a list, then you can create a form (Settings > Forms) that comes with a button. The form can be added as a widget, or added to a post/page, using HTML, PHP, iframe and shortcode (you see those links under “Save” button).
In case you want to use your own custom button (image?), you’ll need to tweak a bit of CSS, though.