csloisel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom Post Type StructureYou haven’t given any reason why you need to create custom post types. Custom post types are for creating post types with distinct functionality from the regular post type. But it sounds as though you will be treating them exactly as regular posts, and you are only using the custom post type for the label.
I don’t see why you can’t just accomplish what you want with categories, and maybe a custom permalink structure. Custom post types are not meant to be used to categorize posts. And you may end up making content management more difficult for yourself down the road.
If you are actually setting up custom handling, you may only need the venue type as you said. It would help if you would go into a little more detail about what problem you are trying to solve instead of your ideal solution for which we don’t know the problem.
Forum: Fixing WordPress
In reply to: page: private and publicMake sure you have a menu set to that location, it sounds like it is using the fallback all pages menu because no menu is set to that location.
Forum: Fixing WordPress
In reply to: Custom Post Type Taxonomies Slug isn't showingThe other way would be to hook into the category queries and get both events and posts. I’m not sure if you want to show both on the same archive page or not though.
Forum: Fixing WordPress
In reply to: Custom Post Type Taxonomies Slug isn't showingYes if you are sharing the post category tax you will have to create a rewrite rule.
Forum: Fixing WordPress
In reply to: Custom Post Type Taxonomies Slug isn't showingCan you create a gist or pastebin with the post type registration and the taxonomy registration.
It is unlikely that it is going to show up at http://phpbeginner.org/category/fair/ since that would reference a post category. It should be using the post type slug like http://phpbeginner.org/events/categories/fair/.
Forum: Fixing WordPress
In reply to: Custom shortcodes for -php include-Try removing the space in the shortcode, I don’t think that is a valid character for a shortcode, maybe replace it with an underscore.
Also where are you putting this function? You shouldn’t need the php tags around the include because this should already be in a php file.
On top of that you need to make sure you are using the correct path for the included file.
Forum: Fixing WordPress
In reply to: Jumbled code all in one lineMinifying html should actually reduce page load and increase speed due to smaller file size. If you deleted the plugin then it shouldn’t still be serving minified pages, but I don’t know enough about that plugin to say for sure. I would start disabling other plugins and see if do that removes the minification.
Forum: Fixing WordPress
In reply to: Jumbled code all in one lineMy guess is that you are using a plugin that is minifying html.
Forum: Plugins
In reply to: [Eventbrite Services] Invalid request to eventbritePlease read this thread:
https://ww.wp.xz.cn/support/topic/the-application-youre-trying-to-use-has-made-an-invalid-request-to-eventbrite?replies=5And see if it helps resolve your problems.
Forum: Fixing WordPress
In reply to: How to Creat HTML Copy of Header & Footer?I don’t see why that would be needed.
Forum: Fixing WordPress
In reply to: wp-admin redirects to my actual siteTry clearing your browser cookies.
Forum: Fixing WordPress
In reply to: Getting custom fields and contents from a single pageThat will only work for the page title, because it is the queried object, if you tried that on the videos It shouldn’t work. I’m not sure though, I would have to see the context of it to say for sure.
Forum: Fixing WordPress
In reply to: Slider works on MAC but not PCIf you used themeforest you should be able to log in and download the updated version.
Forum: Fixing WordPress
In reply to: Getting custom fields and contents from a single pageIs it inside the loop? Because those template tags only work inside the loop.
Forum: Fixing WordPress
In reply to: Published pages are not foundI’ve had this issue on an nginx server running php-fpm. Is it possible to restart your host server? It might solve the problem.