Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sark Press] Title on frontpageHey Oliverbay
now i just gotta figure out why my logo has a background, i told my pic-program to delete the background but when i exported the foto, it made a white background- hmm..
I see Bojan missed this comment, and I’m sure by now you figured that out but just wanted to clarify. 🙂
If you need a transparent background the file type would need to be a png or gif. I suspect you might have exported to a jpg, this doesn’t support transparency.
Hope this helps. 🙂
Take care.
Forum: Plugins
In reply to: Hospital website in WordPressHey there,
1. Patient/Doctor can register in the website. (Join US/LOGIN) kind of thing.
WordPress does this already, but I guess you want something like:
https://ww.wp.xz.cn/plugins/simplr-registration-form/screenshots/
Or:
https://ww.wp.xz.cn/plugins/clean-login/screenshots/
2. Patient/Doctor will get notification for the appointment.
The plugin directory lists appointment based plugins, we have one here for example:
https://ww.wp.xz.cn/plugins/appointments/
3. Patient will get separate articles, notifications, tips based on their disease.
It sounds like you maybe want some kind of newsletter where you could group people so that the relevant information can be sent to them?
https://ww.wp.xz.cn/plugins/search.php?q=newsletter
You should find something in there. Or maybe you want to use your WordPress posts for articles, then use categories to separate the information by disease. You could use some kind of mailer to then notify them of new and relevant articles.
https://ww.wp.xz.cn/plugins/search.php?q=notification+of+new+posts
Hope this might help. 🙂
Take care.
Forum: Fixing WordPress
In reply to: How to remove the title "Blog" from the homepage?Hey there Breakthecycle2
I trust you’re doing well today, hope you’re having a great weekend. 🙂
It seems that’s a premium theme, that limits our support here unfortunately. You can read more about the forum here:
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
I quickly took a look, this CSS should hopefully do it:
.blog .page-title .wf-td:first-of-type{display:none;}If the theme has a CSS option you could pop it in there, if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Take care.
Forum: Fixing WordPress
In reply to: Unable to login to backend after server host transferHey there,
Nightmare, huh!
Did you do a quick scan, a find and replace on the database to remove references to the old address replacing them with the new address?
Any other constants used within the wp-config.php file?
It sounds like that might be the issue here. If not you’ll want to grab the DB and do that.
Once you’ve made all your changes you can import your DB.
You can read more here:
http://codex.ww.wp.xz.cn/Moving_WordPress#Changing_Your_Domain_Name_and_URLs
Once done, also clear your cache. If you’re using any cache based plugins (which I assume not whilst in dev) then you’ll also want to clear those too.
Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: [Hueman] How to change Sidebars Top TextHey there,
First of all, the original is here:
/hueman/sidebar.php
A few options, you could do a locale which is basically a translation. You can read more here:
http://codex.ww.wp.xz.cn/Translating_WordPress#About_Locales
It’s handy for changing a few multiple items.
You could also do this in a child theme, and you can read more about those here:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/how-to-create-wordpress-child-theme/And finally, a little code:
function change_follow_more_AlainMinnoy( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'Follow:' : $translated_text = __( 'Don\'t Follow:', 'hueman' ); break; case 'More' : $translated_text = __( 'Less', 'hueman' ); break; } return $translated_text; } add_filter( 'gettext', 'change_follow_more_AlainMinnoy', 20, 3 );You could add this either with a plugin available on WordPress (which I won’t recommend, it’s harder for you to undo if a mistake is made) or by creating your own custom plugin:
http://codex.ww.wp.xz.cn/Writing_a_Plugin#Standard_Plugin_Information
If you need help with that, I can help, just let me know. 🙂
You only need do one of these. 🙂
Take care.
Forum: Fixing WordPress
In reply to: Messed up blogHey there,
Just took a look at that site, it’s not the Twenty Fourteen or Fifteen theme, it shows as the WorldWide theme by:
And their Theme Forest listing:
http://themeforest.net/item/world-wide-responsive-magazine-wp-theme/4940421?ref=GoodLayers
I see it in your source:
http://monosnap.com/image/dpPaOspl6oiwLMPodDATlfI58XIno1
Because this is a commercial theme you would need to contact the developer directly for assistance, unfortunately the forum rules prevent me from assisting with commercial products, sorry.
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
It might be something as simple as needing to update the theme, please check with the author.
Take care.
Forum: Fixing WordPress
In reply to: id or name widgetsHey again,
So in the instance you use multiple widgets of the same name we can do this:
[widget "Text" number=1] [widget "Text" number=2]This displays the Text widget, then note the number, 1 is the first instance and 2 is the second. The number is the order you have them in the Arbitrary sidebar.
Take care.
Forum: Fixing WordPress
In reply to: 404Hey there,
Hope you’re well today! 🙂
It sounds from what you’re saying that you’re using the default permalink like:
/?p=123
Is that right?
If so, anything like:
/?p=123asdasd
/?p=123opwkjoijwf
/?p=123kjlwrkgjlkjgWould return a 404 as it’s part of the querystring. However, anything like:
/aiuhfushdfkjs
Wouldn’t give the WP error page if there is nothing catching the error, so you’ll get the server 404 error page instead.
You can read up more here:
http://codex.ww.wp.xz.cn/Using_Permalinks
http://codex.ww.wp.xz.cn/htaccessAnd I’ve not tested this one, but:
http://winginx.com/en/htaccess
Hope this helps. 🙂
Forum: Fixing WordPress
In reply to: Messed up blogHey there,
Twenty Fifteen isn’t a new version, it’s a new theme, they’re both totally different.
Form what you’re saying it kind of sounds like you installed and activated Twenty Fifteen thinking it would be an upgrade to Twenty Fourteen, does that assumption sound about right?
If that’s the case you can simply reactivate Twenty Fourteen and continue using that, all your settings should remain intact.
When changing settings you might like disable you caching first, then enable again once you’ve finished making changes.
If this isn’t the case, could you please elaborate further on what you mean by belly up, what exactly is broken and isn’t working.
Take care.
Forum: Fixing WordPress
In reply to: id or name widgetsHey there NedLud,
Not sure if you figured this one out, but basically:
Admin –> Widgets
You then add what ever widgets you want to use in a shortcode, you add them to the Arbitrary sidebar area. You can then simply use the name on the widget:
http://monosnap.com/image/LGxLAO0XNv9EFbmq27dIrVZqqGqTnJ
If they’re not in the sidebar, they won’t work. You then take the shortcode, so that example as you saw would be [widget “Search”]
It also looks like that theme hasn’t been updated in a while, it means support may become limited and eventually if it breaks, you’ll need to fix or hire someone to fix it for you. Just saying 🙂
Hope this helps.
Forum: Fixing WordPress
In reply to: Updated to 4.1 – Website Down / Can't Log-inHey Opinio,
You could either do it via FTP:
http://codex.ww.wp.xz.cn/FTP_Clients
You would then navigate to /wp-contents/themes/ and delete the folder for this theme. Think of FTP like an extension of your desktop, it’s just like opening a folder, deleting, etc.
Another method would be through your hosts control panel, chances are you have cPanel (or similar control panel) on your host and they provide a file manager:
https://documentation.cpanel.net/display/ALD/File+Manager
Once the you remove the copy you have, you can upload a new version. 🙂
Hope this helps.
Forum: Installing WordPress
In reply to: Fatal ErrorThat’s fantastic, thanks for letting me know. 🙂
Forum: Installing WordPress
In reply to: Fatal ErrorHey Premjohn,
If you have access to the admin area still you could go to:
Admin –> Appearances
Activate another theme, then delete that one (click on theme details, then delete), and finally add it back again like you would normally.
If not then you could either do it via FTP:
http://codex.ww.wp.xz.cn/FTP_Clients
You would then navigate to /wp-contents/themes/ and delete the folder for this theme. Think of FTP like an extension of your desktop, it’s just like opening a folder.
Another method would be through your hosts control panel, chances are you have cPanel (or similar control panel) on your host and they provide a file manager:
https://documentation.cpanel.net/display/ALD/File+Manager
Hope this helps.
Take care.
Forum: Installing WordPress
In reply to: Fatal Errorjgjh151
Probably best to open your own ticket, could get confusing supporting multiple people in a single thread.
Whilst opening the new ticket you’ll want to check your error_log and report any errors you see too:
http://codex.ww.wp.xz.cn/Debugging_in_WordPress
Take care.
Forum: Installing WordPress
In reply to: Fatal ErrorHey there,
It’s basically saying it can’t read the /themes/twentyfourteen/inc/custom-header.php file, it’s either a permission issue or it’s not there.
Could you please upload a fresh copy of Twenty Fourteen?
Let me know how you get on.
Take care.