alex2k5
Forum Replies Created
-
Forum: Plugins
In reply to: [bbPress2 BBCode] Processing malformatted bbcodeI noticed this after my post above, so I’d like to clarify.
Seems like this was 2 issues. The upper/lower case is an issue, I appreciate the attempt at looking into it. I’ve cleansed my database manually and reinserted by searching for all known bbcodes, replacing with lowercase. Just need to stay on top of it going forward.
The quotes thing – it happened when a url ends in a slash, but was not wrapped in quotes. So…
[url=https://wordpress.com/]Wordpress[/url] stops. Looks like thats a shortcode processing issue.
To alleviate that in old posts, I ran a search for /] in the database, replaced with ]. Not perfect, but bbcode parsing won’t break. Most servers can handle it either way.
So, just need to clarify these things to my team, to make sure that if they copy/paste from forums, and it’s broken, to look at these as potential causes, adjust appropriately.
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Using custom taxonomiesI know this is old, but it’s related so I figured I’d just continue the thread.
I do use custom taxonomies, and would like to send them via tweets like tags are.
We don’t even use the default tag box, we split all things that a normal site would put in “tags” into 4 additional taxonomies. I’d like to be able to just put #tags# #taxonomyterm1# #taxonomyterm2# #taxonomyterm3# #taxonomyterm4# into the template and have it push out.
Thanks!
Forum: Plugins
In reply to: [Dropbox Photo Sideloader] Broken?Little update, completely uninstalled, reinstalled, and still getting fatal error.
Fatal error: Uncaught exception ‘Dropbox_Exception_RequestToken’ with message ‘We were unable to fetch request tokens. This likely means that your consumer key and/or secret are incorrect.’
Need to flush that setting in DB since I deleted the app. Doesn’t look like I can without going into DB manually.
Forum: Plugins
In reply to: [bbPress2 BBCode] Parsing bbcode tags on excerptYeah, I realized that excerpts didn’t have support after the fact, I’ve since adjusted for my personal uses.
Another issue related to this, same thing happens – in feeds and facebook open graph data. I’ve noticed some stories posted to Facebook when entered on blog are missing the link and text inside a url shortcode. I haven’t addressed this yet, but would be nice if the plugin had options to enable in these 3 areas. Or any export stream that text from posts will be printed.
Thanks for looking into it!
Forum: Hacks
In reply to: Remove automatic exif titles for uploadsI checked out those plugins, and one of them lead me to a method for getting the end result.
adding a function to add_attachment which declares the title and cleans it will effectively remove the exif processing.
Putting this in your functions file should do trick
add_action( 'add_attachment', 'your_function' ); function your_function() { function stuff }
Though it would be much easier to turn that feature on/off, or access it with a hook to disable it. May go suggest that.
Forum: Hacks
In reply to: Remove automatic exif titles for uploadsThanks I will take a look. I’d prefer to stay away from plugins as this is an integral part of the system for us. If the author ceases development, we’d be stuck.
Is there no filter or action hook available to remove and then re-add this function, just altered? That’s the part I’m not seeing, if its possible.
Forum: Hacks
In reply to: Remove automatic exif titles for uploadsThanks for the response. Unfortunately that isn’t an option. We deal with images in a constantly in-flux manner which is time sensitive. Requiring another step in the workflow before they get online wouldn’t be good. Not to mention working from mobile or tablets where that isn’t a quick or easy task.
Forum: Plugins
In reply to: [Network Latest Posts] Post order problemAlso looking for a resolution to this.
Forum: Plugins
In reply to: [Ultimate Coming Soon Page] Multisite IssueI have settings similar to whats there, and I am logged in, can access wp-admin, and see network bar on all network sites. So it’s not exactly as the issue described there is. I will continue looking as well, in case it isn’t specific to the plugin. Thanks!
Forum: Plugins
In reply to: [Ultimate Coming Soon Page] Multisite IssueThe site works fine with it on. I get that message when attempting to load the settings page on any non-primary site. So it only affects me, and prevents me from using it on any site but primary.
So, I can edit settings on primary network site, (blog id 1), but any others – that message.
Again – my primary blog is domain1.com. I reroute other domains to the sub-blogs using a mix of domain mapping plugin and server settings.
The sub-blogs, which this plugin doesn’t work on, are all different domains from primary network domain. AKA
subsite.domain2.com/wp-admin/optionspage.etc
I am not sure, but I assume it is an issue with that. Most other plugins work fine on secondary sites. I’ve seen this a couple times with other non-MU specific plugins though.
Forum: Networking WordPress
In reply to: Sub Domain of existing site pointed to wpmu installOK, I think I found it. Updating here for anyone looking in future.
In cPanel, you must log in as root.
Go to “DNS Functions”
Go to “Park a Domain”
Select your WPMU domain (site 1 in WPMU) from list.
In text box to the right of it, enter your desired subdomain, the one you want to split off from your existing site.
If you do that, and normal Domain Mapping steps prior to that, should properly send just the subdomain of an existing site to a WPMU sub-site.
I used this as a general guide for regular Domain Mapping install: https://www.doitwithwp.com/domain-mapping-for-wordpress-multisite/
“Map domains to your network sites” is the part of that tutorial that you need to apply the above info to.