@mercime
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Theme uploading to www.ads-software.comThe theme uploader is being fixed at this time. Thanks for your patience.
Forum: Fixing WordPress
In reply to: Admin section not opening up@raunhar remove the
buddypress
folder from your installation via s/FTP. Upload the fix in BuddyPress 2.6.1.1. We are sorry for the inconvenience.Forum: Plugins
In reply to: PROBLEM with Buddypress Plug in on Sweetdate Theme@rdroid19 @scharc @am93 @damsking The fix is in. Please upgrade to BuddyPress 2.6.1.1
@strannik005 Thank you for confirming the fix.
All – Our sincere apologies again. Thank you for your patience.
Forum: Plugins
In reply to: [BP Group Hierarchy] Error After BP 2.6.1 UpdateForum: Plugins
In reply to: [BP Group Hierarchy] Error After BP 2.6.1 UpdateForum: Plugins
In reply to: PROBLEM with Buddypress Plug in on Sweetdate ThemeForum: Plugins
In reply to: Buddy Views integrationHi @alexkirwan91, welcome to WordPress. Based on the information provided, Buddy Views is a BuddyPress add-on, which means you need to have the BuddyPress plugin installed first.
Forum: Fixing WordPress
In reply to: Cannot get BuddyPress working@noahboddy just answered your post at the BuddyPress forums.
Forum: Fixing WordPress
In reply to: Media library not working on my theme@amst3l Changing to the Twenty Sixteen theme was a good move on your part!
What theme are you using? It’s hard to troubleshoot the issue when we don’t know what you’re working with ?? Have you checked the theme’s support forums whether the issue was reported and if there were any solutions posted? If there were no such issues, have you tried deactivating all plugins to see if the issue is resolved?
Forum: Fixing WordPress
In reply to: Divi Theme- Older Links not workingHi @hsin2015 Just to let you know that as much as we’d like to help you out, we do not have access to that premium theme. The best place to get support is from where you purchased the theme — website or support forums. If someone wants to help, that is fine.
Forum: Networking WordPress
In reply to: Installing theme recommended plugins on Multisite@bcournoyer It could be that your theme is not set up for multisite installations. If the theme is hosted here at www.ads-software.com, add the theme tag on the right sidebar here so the theme developer will be contacted. Otherwise, I suggest that you should contact your theme author to confirm multisite compatibility via website or support forums.
Forum: Fixing WordPress
In reply to: Not able to update@mariatemplofe What kind of update are you trying to make? I can see that your WP install is already on the latest version 4.4.1. If you’re referring to updating Posts/Pages, have you tried deactivating all plugins then checking if you can update your posts and upload pictures? If that resolves your issue, then reactivate plugins one by one to identify the culprit.
Forum: Fixing WordPress
In reply to: How to remove page title from static home pageHi @justanotherwordpressblogger Just to let you know that as much as we’d like to help you out, we do not have access to those premium themes.
The best place to get support is from where you purchased the theme — website or support forums. If someone wants to help, that is fine.
Forum: Fixing WordPress
In reply to: SidebarREQUIRED: Sidebars need to be registered in a custom function hooked to the widgets_init action. See: register_sidebar().
Surround your sidebar call within a
function
and addwidgets_init
e.g.function bak_widgets_init() { //add register_sidebar posted above ... end before add_theme_support } add_action( 'widgets_init', 'bak_widgets_init' );
For more info, see https://codex.www.ads-software.com/Function_Reference/register_sidebar
RECOMMENDED: No reference to the_post_thumbnail() …
You have
add_theme_support('post-thumbnails');
in your functions.php file but it’s not called in any of your theme’s files. As noted, it is only recommended that you add post thumbnails, so you can delete the lineadd_theme_support('post-thumbnails');
. If you want to add post thumbnails in your theme, however, you keep that in yourfunctions.php
file and implement post thumbnails in your theme, see https://codex.www.ads-software.com/Post_Thumbnails where you can find examples.RECOMMENDED: No reference to add_editor_style() …
Again, this is a recommended item, so you can either delete the line or add an editor style for your theme. See https://codex.www.ads-software.com/Function_Reference/add_editor_style
Forum: Fixing WordPress
In reply to: Home page randomly redirects to another page@hoiszelam Thank you for posting back and adding how you resolved the issue. Good to have reference to an issue which has not be reported before in the BuddyPress forums ??
Marking this issue as resolved.