muckaveli
Forum Replies Created
-
@bizanimesh Thank you for the reply, I’ll gladly use the contact form.
Regarding others finding this thread: is there a recommended procedure when it comes to Jetpack and cloning WordPress installations for development purposes?
It must be pretty common to have a live version and another (local or otherwise hidden-from-public) version as a development environment. Is there a proper way to connect Jetpack to this second version or should it always be disconnected while developing and re-connected when the live version will be updated with it?- This reply was modified 1 year, 6 months ago by muckaveli.
Forum: Plugins
In reply to: [Google for WooCommerce] “Invalid site URL” during “Set up your account”Hey @babylon1999, thank you for your reply.
I didn’t know the connection-test admin site nor that jetpack was of any significance in all of this. However, I’ve found out that – due to me copying my WordPress installation into a dev-enviroment – Jetpack thought my domain was https://dev.domain.com instead of https://domain.com. I’ve spent quite some time to correct that and Jetpack is now configured with the correct domain, but it DID NOT change the “Invalid Site URL” problem for me.
The whole process included dis- and reconnecting everything as you suggest, without any success.
If I hit “Or, create a new Merchant Center account” I get a prompt “You already have another verified account,?Name, which is connected to this store’s URL,?https://domain.com.” – this make’s it even harder to understand why the URL should be invalid.
What shall I do next? Thanks.- This reply was modified 1 year, 6 months ago by muckaveli.
@rebelde2 sorry to hear that. How did you log the error? I’d like to log mine as well, maybe it’s a different from yours.
Updated MailPoet to 4.18.0 and the problem remains! ??
Forum: Plugins
In reply to: [Sublanguage] Slugs/ title tags remain untranslatedI’ve found a solution for the title-tags
Hey Maxime, it seems that whatever other plugin overwrites the settings of sublanguage for the page titles. Your code works, it’s priority just isn’t high enough. I have fixed that by adding the priority “999999” (yes, that’s 6 x 9) to this code. Now it works like a charm!
One can add the code below to the functions.php or use a plugin to stay update-safe.<?php function custom_title_tag( $title ) { if ( is_front_page() ) { $title = ''; } elseif ( is_singular() ) { $title = single_post_title( '', false ); } return $title; } add_filter( 'pre_get_document_title', 'custom_title_tag', 999999 ); ?>
- This reply was modified 1 year, 10 months ago by muckaveli.
Forum: Plugins
In reply to: [Sublanguage] Slugs/ title tags remain untranslatedI’ve found the solution for the slugs of perma pages
The translation – that stems from the translation page title – will be shown inside a certain modal, but not displayed on the front-end unless you’ve manually edited it for once and then hit “update”!
Here is the process- Chose a page from your back-end pages menu and go to “edit”
- Chose your second language from the top menu
- Make sure the top menu is set to “Settings”
- Go to the menu settings on the right side that says “page” and look for the field title “URL”
- This URL might not show a translated version, however if you CLICK on that URL and a modal will open up…
- Here it will show already translated content in the “Permalink” field, however you must click in the box, make whatever edit (like delete the last character and type it back in), then hit “X” to close the modal
- Now you’ll see the URL updated to your translation. The /sublanguage/ folder is not being displayed, but don’t worry about that, it will be shown in the front-end.
- Now, hit “Update” on the top menu to save your page
- Wait a couple of minutes for your server/cache to do it’s magic, and voilà! The slug is now being properly translated!
Hey Maxime,
thank you so much for solving my problem! You have no idea what it means to me, seriously!!
Your example works like a charm. I tried everything I saw explained on github and couldn’t get it to work (at my personal skill-level). I am beyond happy that it worked and might solve the majority of my problems.
Thanks and please visit this support-forum again in the days to come. I really don’t mean to disturb you but I might need to ask you about other things as well.