pouipouidesign
Forum Replies Created
-
PS, I read in the documentation: “To enable updates, login to your WordPress dashboard where you’ve installed the addon and then go in Tools -> WPUM Licenses” and enter the license for the addon that you have purchased”.
I do not have that menu… Will it appear once I’ve purchased and installed the new version of the add-on?
Thanks again!Hi @alessandrotesoro,
Thanks. I’m replacing the previous web development team on this website and had not been told they had purchased licenses, nor have I been given said licenses. I will have to buy new ones then.
Question: I have 3 instances of the website: a local one, a staging one and a production/official one… do I have to buy 3 keys too??
Thanks!
MarieHi @alessandrotesoro
Thanks for the answer. I understood it had been removed, yes, but there’s no replacement? I was using this to avoid loading js scripts (the ones for the hideShowPassword feature) when they’re not needed. There is no way to do this anymore??
Thank you,
MarieI have the same problem with this function.
Can you tell me what function replaces this one? Thanks a lot!Forum: Plugins
In reply to: [OSD Social Media Sharing] Special characters in post title not rendering@georgio-1 Removing wptexturize worked like a charm, I only removed it from the title and it was enough to stop sharing from not working properly, so altogether not too bad of a compromise to make.
Thanks!Forum: Plugins
In reply to: [OSD Social Media Sharing] Translating?Obviously, manually downloading it and uploading on the server did the trick, sorry ^^
It works super fine, thanks for adhering to this degree of precision! 🙂
I’m marking this resolved, have a very excellent week-end!
Forum: Plugins
In reply to: [OSD Social Media Sharing] Translating?Hmmm, how should I go about checking this latest mod?
Can’t see an update for the plugin in my dashboard?Forum: Plugins
In reply to: [OSD Social Media Sharing] Translating?Hello,
Thanks a lot for this! I’d given up on it happening but it’s great to know it wasn’t forgotten and finally happened 🙂
I’ve updated and it all seems to work fine, WPML is seeing the string and allowing me to translate it.
My client will be doing the translating in all the languages she requires, but I can still give you the French version : “Cliquez ici pour partager sur ” (but, as in English, that doesn’t work so well for Email sharing, which would be more correct as “Cliquez ici pour partager par ” (“by” instead of “on”).).
Anyway, thanks again, I’ll mark this as resolved if that’s ok?
Forum: Plugins
In reply to: [OSD Social Media Sharing] Translating?Hello,
Just so that I can get organized (I’m supposed to deliver very soon/this week), when do you think you’ll be able to push that update?
Thanks!Forum: Plugins
In reply to: [OSD Social Media Sharing] Translating?\o/
Great, thanks for accepting!
Keep me posted when it’s done, so that I can update and translate 🙂Forum: Plugins
In reply to: [Age Verify] Bug: Age Verification Can Be BrokenTHAT (redirecting/locking out) would be amazing indeed, any indication this is ever going to happen? Thanks to the dev in advance! 🙂
Ok, some follow up…
Right after I’d posted, I found a new link I hadn’t come across in my hours of search, talking about pretty urls for those “normal category” pages for post types : http://sethstevenson.net/create-a-clean-url-for-your-custom-post-types-category-archives/
It gave me both the “ugly” URLs (domain.com/post-type/?category_name=xx and domain.com/category/xx/?post_type=post-type) and a way to rewrite them in my functions.php using core wordpress functions.
It’s not probably not perfect, but it did the trick so I thought I’d pass it along…
It did make another issue appear though: those results don’t get paginated properly (or I should say I get 404 on the prev/next links), but it might be due to the rather specific/wierd setup I have (I filter the query (in functions.php) according to context to not show all post-types all the time, but it’s probably not perfect either), so I opted for changing the query in my post-type archive template to have a larger number of posts per page (it shouldn’t go any farther than 30-35 for each cat anyway).
I would welcome an answer/pointer on that, though.Anyway, for future reference for anyone having the same question :
– URLs for custom post type archive by category (default, not custom taxonomy) :
– domain.com/post-type/?category_name=xx
– domain.com/category/xx/?post_type=post-type
– go to article linked at the beginning of this comment to learn how to have nicer urls.Of course, if anyone with better mastering of wordpress comes along, which is bound to occur, and has a better solution/answer to this, I’d be glad to hear it (and any answer/pointer about the pagination issue would be welcome too) of course!
Thanks a lot again,
MarieForum: Networking WordPress
In reply to: Multisite setup on subdomain but using subdirectories?Huh ^^
I can’t believe I didn’t see this! oOI’ve been re-reading those lines so often that I didn’t even see the difference and when I glanced “multisite” in the wp-admin instructions I thought I saw “allow multisite”…
Anyway, I feel very silly, and enormously grateful, as it works perfectly… \o/
As it is I still have to test creating more “sub sites” and everything, but I can access my main site and the network menu, etc., which is a giant step forward.
So thank you very VERY much for your time and patience, I’ll mark that topic as resolved!
Marie
Forum: Networking WordPress
In reply to: Multisite setup on subdomain but using subdirectories?Sorry, I thought it was obvious but I didn’t copy-paste it here again since it was already there in the file from the first manipulation as per the codex.
So the full “multisite” block does currently read :
/** Multisite **/ define('WP_ALLOW_MULTISITE', true); define( 'SUBDOMAIN_INSTALL', false ); $base = '/xyz/'; define( 'DOMAIN_CURRENT_SITE', 'clients.domain.com' ); define( 'PATH_CURRENT_SITE', '/xyz/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );Is that correct?
Thanks again, hope we can make it work! 🙂
Forum: Networking WordPress
In reply to: Multisite setup on subdomain but using subdirectories?Hello again,
I followed the tutorial on the Codex, as well as the “debugging a wp network” guide to check on what I did and didn’t find any errors, but here is what I copy-pasted from the instructions that wordpress gave me while setting up multisite :
define('WP_ALLOW_MULTISITE', true); define( 'SUBDOMAIN_INSTALL', false ); $base = '/xyz/'; define( 'DOMAIN_CURRENT_SITE', 'clients.domain.com' ); define( 'PATH_CURRENT_SITE', '/xyz/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );I added that at the end before “/* That’s all, stop editing! Happy blogging. */”
Thanks again for your help !!