csloisel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Dowloaded MH Magazine Theme, but file is for MH Magazine LiteTypically through the site you purchased the theme. There also appears to be a support page here you could try: https://www.mhthemes.com/support/
Forum: Fixing WordPress
In reply to: I can’t log in to the dashboard since the auto update 4.6.4I would refer to the documentation:
https://codex.ww.wp.xz.cn/Updating_WordPress
https://codex.ww.wp.xz.cn/Upgrading_WordPress_ExtendedIf you are still not feeling comfortable, you may need a developer to intervene.
Forum: Fixing WordPress
In reply to: Exported files, then transferred hosts. Cannot import files.Is the original site still up? What did you use to export? Did you export the image files?
The WordPress exporter only exports data, not image files, and it requires either:
a) the original site to pull the images
or
b) manually copying the image files to the new host.Forum: Fixing WordPress
In reply to: Need Archive for Custom Post TypesWhat is your definition of an archive? Based on you description (this is hard to visualize without seeing it in action) It sounds like they already have region archives, and you just need to add pagination on the region taxonomy template.
Forum: Fixing WordPress
In reply to: Dowloaded MH Magazine Theme, but file is for MH Magazine LiteDid you purchase the theme? Unfortunately we can’t offer support on premium or purchased themes, you will have to contact the developers for support.
Forum: Fixing WordPress
In reply to: Posts not Showing on Posts PageWhat theme are you using? Have you tried changing the permalink settings?
Forum: Fixing WordPress
In reply to: Customizer just spinning once I install a themeCan you be more specific when you say it’s not working? Is there an error being thrown? Pages not loading? Have you tried disabling all plugins to see if they are breaking something?
Forum: Fixing WordPress
In reply to: Customizer just spinning once I install a themeUnfortunately the public community isn’t able to support premium themes.
Forum: Fixing WordPress
In reply to: Customizer just spinning once I install a themeForum: Fixing WordPress
In reply to: Warning msg on all pages of siteIt sounds like this plugin is throwing the error:
https://ww.wp.xz.cn/plugins/feedwordpress/I would reach out to them for support, they should be the ones to address it; I do not recommend manually trying to fix it yourself.
Warnings are non-critical and usually on live sites you would want to disable WP_DEBUG to suppress warnings and non-critical errors. Try looking in your wp-config file to see if that’s defined.
- This reply was modified 9 years, 3 months ago by csloisel.
Forum: Fixing WordPress
In reply to: Customizer just spinning once I install a themeHistorically, premium themes are not created with customizer compatibility, and instead use custom options and settings. If you can’t get in touch with the author, try to find documentation on the theme you purchased and see if it specified where the settings are.
Forum: Everything else WordPress
In reply to: Newbie – WP .org?The answer is yes you should update, there are very few scenarios where I would recommend someone not update. If you need to find out if your core files have been modified, there are 2 methods.
The first is the obvious upgrade and see if anything breaks but I would not recommend that, especially on a live server.
The best way to tell would be to download all of the core files and then download the same version from the version archive and do an automated file comparison on the directories. There are multiple ways of doing this, using version control, using xcode, or download an application built for this purpose.
Even if no core files have been modified, it is still good to have a local or staging environment to test the new version and it’s compatibility with your plugins and theme.
Forum: Hacks
In reply to: Trouble using get_pages with pre_get_posts hookPage in that context does not mean page post type it means a url request.
Forum: Fixing WordPress
In reply to: get_users order & orderby parameters doesn't include RANDYou could also use a random number for offset, but you would have to ensure it stays lower than the total users – total queried.
Forum: Fixing WordPress
In reply to: get_users order & orderby parameters doesn't include RANDWhy not randomize after getting them?
Try using shuffle: http://php.net/manual/en/function.shuffle.php