Mark Ratledge
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove space between image in body and the menu in header@mikevickers10: Jobify is a premium/paid theme not supported in these forums. It’s best to go to the support site where you bought the theme for help with customizations and issues. You paid for support when you bought the theme, so you should contact the people who sold you the theme.
These forums are for free themes available in the WordPress theme directory at http://wordpress.org/themes/. See http://codex.wordpress.org/Forum_Welcome#Commercial_Products
Forum: Fixing WordPress
In reply to: Fatal Error, Site is down :(@mikevickers10: Remove Buddypress Job Manager via FTP and try again. If that doesn’t work, you need to go to the site where you bought Buddypress Job Manager for support. That and the Jobify theme are premium/paid products not supported in these forums.
Forum: Fixing WordPress
In reply to: .php ErrorUse FTP to replace the functions.php file with a fresh, unedited copy. See Filezilla and FTP Clients « WordPress Codex.
And:
White screens are PHP errors. Try Debug and see what PHP errors you are getting. See https://codex.wordpress.org/WP_DEBUG
Add
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true );in wp-config.php and the debug.log file will be in wp-content.
Add this line
define( 'WP_DEBUG_DISPLAY', true);to wp-config.php to log and dump them to the browser.
Forum: Fixing WordPress
In reply to: Script error in WordPressThat’s a server error with your webhost and not a specific WordPress error. You need to ask your webhost. Or: http://www.google.com/search?q=Uncaught+exception+Zend_Mail_Transport_Exception
Forum: Fixing WordPress
In reply to: Latest Posts not showing in the Headline sectionSorry, but you’re using a premium/paid theme not supported in these forums. It’s best to go to the support site where you bought the theme – http://themeforest.net/ – for help with customizations and issues. You paid for support when you bought the theme, so you should contact the people who sold you the theme.
These forums are for free themes available in the WordPress theme directory at http://wordpress.org/themes/. See http://codex.wordpress.org/Forum_Welcome#Commercial_Products
Forum: Fixing WordPress
In reply to: Latest Posts not showing in the Headline sectionWhat theme are you using? Where did you download it from? http://codex.wordpress.org/Forum_Welcome#Include_as_Much_Information_as_Possible
Forum: Fixing WordPress
In reply to: Onde encontrar o ID da imagem no WordPressThese are English language community forums; please use English or provide an English translation. Or, check for a WP support forum in your language.
Forum: Fixing WordPress
In reply to: Live site internal links go to staging copyYou’ll still have the same issue moving any other WordPress site and and other theme from staging to live, i.e. changing the URL. So you might as well try it. Divi is a popular theme; it should be OK with the URL change.
Forum: Fixing WordPress
In reply to: Live site internal links go to staging copyDivi is a premium/paid theme not supported in these forums. These forums are for free themes available in the WordPress theme directory at http://wordpress.org/themes/. See http://codex.wordpress.org/Forum_Welcome#Commercial_Products
That said, this is a very common issue when moving sites; there are URLs in the database that still point to staging. You need to use a tool like WordPress Serialized PHP Search Replace Tool to change the staging URL to the live URL. FYI, Divi is a premium theme that may not adhere to WordPress theme standards, and changing URLs in the database may break the site.
Forum: Fixing WordPress
In reply to: title of pages showing up huge on web pagesI like to uncheck the page setting that says “Show title on page” so the title doesn’t show.
What theme are you talking about? That page title option is not available in twentysixteen, the theme mdfloyd is using.
@mdfloyd: the easiest thing to do is use a simple plugin; try https://wordpress.org/plugins/hide-title/
if you want to modify the theme, make a child theme first. And use the developer tools in Firefox (or Firebug) or Chrome or Safari or IE to see what’s loading on your site and how to work with and change the CSS and HTML.
Forum: Fixing WordPress
In reply to: How to make pictures on Posts show from home page@myblissbaking: Sorry, you’re using a premium/paid theme not supported in these forums. It’s best to go to the support site where you bought the theme for help with customizations and issues. You paid for support when you bought the theme, so you should contact the people who sold you the theme.
These forums are for free themes available in the WordPress theme directory at http://wordpress.org/themes/. See http://codex.wordpress.org/Forum_Welcome#Commercial_Products
Forum: Fixing WordPress
In reply to: Hundreds and Hundreds of random numbers appearing before my post.Carefully follow FAQ My site was hacked – WordPress Codex.
Then take a look at the recommended security measures in Hardening WordPress – WordPress Codex and Brute Force Attacks – WordPress Codex
If you can’t do the work yourself, consider looking for a reputable person on http://jobs.wordpress.net/ or http://directory.codepoet.com or http://upwork.com
(FYI, it’s not a good idea to respond to work offers from random forum users who have read about your issues.)
Forum: Fixing WordPress
In reply to: wysiwyg Editor Misbehaving – AGAINCheck the style.css file in the child theme for any class selectors called
.mce-content-body. That seems to be the conflict.If not, add
.mce-content-body { width: auto !important; }to the bottom of the style sheet and see if that helps. If not, the child theme may not load that style sheet in admin.
Forum: Fixing WordPress
In reply to: wysiwyg Editor Misbehaving – AGAINThe fix is a little funky to do, since we need to add CSS to the admin area and not the viewer end of the theme. If it was the viewer side of the site, we could use a simple plugin to add the CSS.
Ideallly, you need to make a child theme of Graphene, and then add a function to add the CSS fix to the admin area. That way, the fix stays in place when you upgrade Graphene. See https://codex.wordpress.org/Child_Themes on how to make a child theme.
Then, add this to the functions.php file of the child theme:
function add_css_fix_to_backend() { echo '<style type="text/css">.mce-content-body {width: auto !important;}</style>'; } add_action('admin_head', 'add_css_fix_to_backend');That function adds the CSS fix to the admin backend.
You can – but it’s not a good idea – simply add that function to the Graphene theme right now, without making a child theme; but if you update the theme, it will get erased.
Use FTP to make a child theme and edit files; don’t use the WordPress editor. See Filezilla and FTP Clients « WordPress Codex.
Or, you can make a very simple plugin that will apply the CSS fix without needing to make a child theme or modify the theme folder.
Add the code below to a text file and call it something like css-fix.php, and then put it in your plugins folder with FTP and activate it:
<?php /* Plugin Name: Add CSS Fix to Admin Description: This plugin adds the TinyMCE CSS fix Version: 1.0 License: GPL Author: WordPress Author URI: wordpress.org */ function add_css_fix_to_backend() { echo '<style type="text/css">.mce-content-body {width: auto !important;}</style>'; } add_action('admin_head', 'add_css_fix_to_backend');Forum: Fixing WordPress
In reply to: Linking to swf-files on same server?In all the constantly “flash have security issues” etc.. in the news all the time, is it any problem with hosting these files nowadays like this?
Flash security mostly has to do with the Flash files themselves being malware; if your Flash files are not malware and you’re not trying to exploit Flash in other people’s browsers, you’re OK.
But, because Flash can be exploited in different ways, many people block all Flash all the time. And Chrome will begin blocking most Flash by default sometime this year. http://krebsonsecurity.com/tag/adobe-flash-player/
The Flash files themselves in that directory will be OK with those permissions, unless someone hacks and replaces them with malware versions.