John Parris
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Disable Theme's lightboxI’m not familiar with that theme. Unfortunately the policy on the forums here (not set by me) is to only support themes available in the directory or freely available elsewhere. Commercial theme support is handled by the developers. Hopefully they’ll get back with you soon.
Forum: Fixing WordPress
In reply to: Masonry Layout problemThe name of the theme folder “metrobis” doesn’t match the “metro” name you entered above.
Forum: Fixing WordPress
In reply to: creating a widgetTry this plugin: https://ww.wp.xz.cn/plugins/php-code-widget/
Forum: Fixing WordPress
In reply to: Deleted images from Media Library remain in Uploads folderHi,
Yes they should be deleted from the folder when you delete them from the media library. If they’re not being deleted, it usually indicates that the user (www, www-data, apache, whatever) that runs the web server process doesn’t have access to do so.
Check out this help file for some recommendations on permissions. https://codex.ww.wp.xz.cn/Changing_File_Permissions
Forum: Fixing WordPress
In reply to: Return true if data is empty function.Try something like this:
function check_if_blocked(){ global $wpdb; return $wpdb->get_results("SELECT * FROM 'mytable' WHERE user = $user"); }function msg_form(){ if( ! empty( check_if_blocked() ) { // do stuff } else { // don't do stuff }Forum: Fixing WordPress
In reply to: Very Slow Web after update 4.2.2Your website appears to be loading just fine for me. Maybe it was temporary?
Forum: Fixing WordPress
In reply to: remove one menu in home page header?Menus are usually controlled under Appearance > Menus in your WordPress dashboard.
Forum: Fixing WordPress
In reply to: How to hard edit my pages?Hi,
The whole point of having a theme and using a content management system like WordPress is so that you don’t have to edit HTML. The pages are built dynamically on the fly using the templates included in the theme and they pull in the content you type into the page/post editor.
If you want to modify your theme’s HTML, you should create a child theme so you don’t lose your customizations when updating in the future.
Having said that, there any many thousands of themes available, and some allow you to add header images and control various design aspects. If you find one that suits you, that’s the way to go. You might even like Make, a free drag and drop style theme that does this in a technically correct way that you won’t regret in the future. Most drag and drop themes are not built that way, and when switching themes you lose your content. This won’t happen with Make.
If that doesn’t suit you, find one very close to what you want and customize it to your liking.
Forum: Fixing WordPress
In reply to: User RegistrationUsing a plugin is the only proper way to do this, so that you don’t lose your changes when installing updates like you just did. Properly coded plugins are no heavier than adding the code to a theme. They both get loaded basically the same way. Check one of the many user profile editing plugins in the directory.
Forum: Fixing WordPress
In reply to: Can't delete email groupsWhich plugin are you using? You might want to post in that support forum so they’ll see it.
Forum: Fixing WordPress
In reply to: Where did my articles goHi,
Divi is a commercial theme that isn’t supported here. You’ll need to ask the Divi support folks about this. https://www.elegantthemes.com/forum/
Forum: Fixing WordPress
In reply to: resolution and responsivenessI’m guessing the browser on the left has had the text size increased beyond 100% and it’s causing issues. Also, any idea what the screen resolution on that one is? When I resize my browser window down small enough, I get that same look. Looks like maybe there needs to be some media query adjustments.
Forum: Fixing WordPress
In reply to: Masonry Layout problemCan you show a screenshot of that folder with the file in it?
Forum: Hacks
In reply to: Displaying Widget title in it's settings screenIs that the widget or the sidebar collapsed?
You can post your code on pastebin.com and share the link here.
It looks like you figured this out. Kudos!