Ryan Brinkhurst
Forum Replies Created
-
For some reason, unchecking “Allow Shortcodes” in the slider settings worked for me.
I’m having the same issue.
- This reply was modified 7 years, 6 months ago by Ryan Brinkhurst.
Forum: Plugins
In reply to: [Custom Post Type UI] Permalinks with categoriesFair enough – the answer is yes, of course.
I can respect what you’re saying, especially with a free plugin that works very well at what it does.
Thanks for your time.
Forum: Plugins
In reply to: [Custom Post Type UI] Permalinks with categoriesHi Michael,
Thanks for the reply, and let me say – awesome plugin. I really appreciate the work you’re doing on it.
I don’t think you’ve done anything “wrong.” The plugin is obviously really good.
I think the simple issue is that when a user sets up a custom taxonomy to be exactly like a category then sets up a custom post to be exactly like a post – it’s confusing that the permalinks that are already setup don’t work exactly the same way. I understand your argument, but the typical plugin user won’t understand what you’re getting at. They will simply be confused that they have no way (within your plugin) to get their subcategories to show up in a posts permalink, as the first author on this had written.
In other words, if I have
https://mysite.com/awesomecat/bestsub/coolpost/
under the regular WordPress posts and categories that would be the category “awesomecat” which is a parent to “bestsub” and the post “coolpost.”Using only CPT UI, I can’t do that. I can only get
https://mysite.com/awesomecat/coolpost/
If you are resolved not to include it the ability to adapt the permalink for custom posts, so be it, but I do think it’s an integral part of it, so it makes the plugin a bit incomplete not having it.
If anyone else is trying to work through this issue, I found that the plugin “Custom Post Type Permalinks” works very well with CPT UI.
- This reply was modified 8 years, 1 month ago by Ryan Brinkhurst.
Forum: Plugins
In reply to: [Custom Post Type UI] Permalinks with categoriesI’m not sure this would be permalink customization, as much as CPT UI rewriting what has already been customized.
I have post categories that show up with a visible subcategory in the link, but it seems that the custom post types created with CPT UI just won’t do this. They won’t show the subcategory – they are overwriting the default URL, and there doesn’t seem to be a way around this.
Forum: Plugins
In reply to: [WP-PageNavi] WP-Pagenavi translation problemsWhy is this marked as resolved? I don’t see a solution.
Forum: Fixing WordPress
In reply to: Transferred Domain; URLs are wrongHi,
Your URL is now set incorrectly in WordPress. See https://codex.www.ads-software.com/Changing_The_Site_URL
This will get you the exact information you need.
Forum: Fixing WordPress
In reply to: WP redirection doesn't allow access to 8008 portHi,
See https://codex.www.ads-software.com/Changing_The_Site_URL
Add these two line to your wp-config.php file, replacing the URL with your correct URL.
define(‘WP_HOME’,’https://example.com:8080′);
define(‘WP_SITEURL’,’https://example.com:8080′);Forum: Fixing WordPress
In reply to: WP redirection doesn't allow access to 8008 portHi,
I’m assuming that there are two separate installs of WordPress that you’re working with.
If that’s the case, you just need to change the URL on the Sandbox.
If you can access https://www.example.com:8008/wp-admin/options-general.php – you would change the URL in there to https://www.example.com:8008 – instead of just https://www.example.com
I assume, based on the redirect that you can’t access the backend. If that’s the case, see https://codex.www.ads-software.com/Changing_The_Site_URL
Forum: Fixing WordPress
In reply to: Image not displaying in FirefoxNo problem. See https://www.brinkhurst.com/help/1.html
You’ll notice, I just grabbed your code and put the following into the style in the head of the document.
html body .col-md-13 img { box-sizing: content-box !important; width:100%; margin-top:-45%; }
I think there are other layout issues to deal with as well, but hopefully that will get you started.
Forum: Fixing WordPress
In reply to: Google Analytics question / SEOHi Charlie,
The issue is that you are actually telling Google and other search engines not to index any of your pages.
I see the following code on all your pages.
<meta name=”robots” content=”none” />
<meta name=”googlebot” content=”none” />“none” is basically the same as nofollow, noindex.
You’ll probably need to update the header.php file in your theme. You can either delete those meta tags all together or replace “none” with “index, follow”
Forum: Fixing WordPress
In reply to: How to migrate test wordpress subdomain to main siteHi,
WordPress relies on the URL to serve up all it’s content.
Check out https://www.YOURSITE.com/wp-admin/options-general.php
Those two URLs are the key to changing a site’s URL. On your host end, yes, you could just swap the URL to the main one so you don’t have to move any files. The only problem here is that any links you create will be sudomain.YOURSITE.com and some plugins will reference images from subdomain.YOURSITE.com, even after the updates.
So, you either go through the site manually to check for all instance of subdomain.YOURSITE.com, or you have to start getting into database searches, which are much more complicated, but way less time consuming.
Forum: Fixing WordPress
In reply to: Error parseHi,
You’ll definitely need to get FTP access to fix that issue. You need to FTP in and usually you can just rename the plugin folder that is causing the issue.
Can you get FTP access from either your host provider or whatever web developer you’ve worked with?
If you could post the URL along with an example of a change, that would be very helpful.
Forum: Fixing WordPress
In reply to: Image not displaying in FirefoxHi,
This issue is in your bootstrap.css file
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
Disabling that or any instances of that you have anywhere else will allow that image to show up in Firefox. You might try just adding a class to that image and use
box-sizing:content-box;
for that one item.