csloisel
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Help! Insert one piece of codes and website crash downYou are going to have to access your hosting server via FTP and edit the file.
Forum: Fixing WordPress
In reply to: Visual editor doesn't work when I switch to child themeI’m thinking your custom js might be throwing an error, can you open your browser console and see if any errors are being reported?
Forum: Fixing WordPress
In reply to: link bar on siteThe menus are under Appearance > Menus and the widgets are under Appearance > Widgets.
Forum: Fixing WordPress
In reply to: How to find the page to editYou are probably going to have to contact your theme developer. That stuff might be hardcoded in a template file.
@biggayhudsonvalley Before connecting you will have to go to Tools > Keyring, Add a new connection and select Eventbrite.
There are instructions on that page for getting the API credentials, but if for some reason they don’t make sense or you are having trouble I can help you there.
Afterwords you can do the steps you listed above and connect with Eventbrite.
Forum: Fixing WordPress
In reply to: Why isn't my feed showing the full articles?The posts I’ve checked have the full articles, can you point me to an article that does not have full content in the feed?
Forum: Plugins
In reply to: need a plugin that show notification by a certain functionyou can see something similar that i’ve done for error logging here: https://github.com/voceconnect/voce-error-logging/blob/master/voce-error-logging.php
Forum: Plugins
In reply to: need a plugin that show notification by a certain functionWell you would use
register_post_type()to register a post type called “Notice” or “Error” or whatever you want. Then in your function you can create a new post of that type. You can useget_default_post_to_edit('custom_post_type')andwp_insert_post()to create the new notice.Forum: Localhost Installs
In reply to: Is there any wordoress plugins for api access with timestamp ?To be honest that seems like a feature you are unlikely to find.
Forum: Localhost Installs
In reply to: Is there any wordoress plugins for api access with timestamp ?I’m not really sure what you mean by passing timestamp. Timestamp for what?
Forum: Installing WordPress
In reply to: Membership plugin not working againWordPress is built with the intention of being used as a blogging/publishing platform, so shoe-horning other concepts like social networking to work with it can prove difficult.
If you can’t hire a developer or do your own development you are at the mercy of pre-build plugins and themes which may not always produce the desired results.
I think BuddyPress would be your best option, but you mentioned that it wasn’t work for you. Could you elaborate on the problems you had with the plugin or what features it may have been lacking?
Forum: Fixing WordPress
In reply to: Deleted WebSiteWas your site hosted on Register.com or was the domain just registered there? Any data for your site resides solely on your hosting server. I’m not sure what you mean by “trying to locate on WordPress”.
Forum: Fixing WordPress
In reply to: how to make breadcrumb nav different page/post titleYou might want to talk to the developer of the theme or plugin you are using to display breadcrumbs.
Forum: Plugins
In reply to: need a plugin that show notification by a certain functionYou could store an array of unread notices that can be displayed in the dashboard and remove them when they click a dismiss button. Another option would be to create a custom post type for admin notices. It really all depends on how you envision is working and what type of workflow you want for handling the notices.
Forum: Fixing WordPress
In reply to: My wordpress theme has updated. Why is everything missing??This is why modifying themes files and especially core WP files is discouraged. Everytime you update you are going to lose your changes.
You are going to have to make your changes again but instead create a chid theme to change/add templates or functions.