So for instance if it was
exampleurl/mec-certificate/ the URL from this point is variable i.e. ?key=7697-478-KAO83160-1
Can you do something like exampleurl/mec-certificate/* so like a wildcard that allows access to any certificate generated.
]]>For example, I have a single post named Kawasaki, and that brand offers multiple services(those are my categories), services being: moto hotels, shops, repairs. So the Kawasaki post appears on 3 different occasions. And when I enter from mysite.com/moto-hotels, I want my URL to be mysite.com/moto-hotels/kawasaki. BUT if I enter from mysite.com/shops, I want that to be reflected in my URL and breadcrumbs, meaning it shows as mysite.com/shops/kawasaki.
But for some reason I can’t seem to figure out, the URL always remains the same(same for the breadcrumbs), meaning that my post displays the same category, not changing like I’d want it based on the category(ex. when clicking from mysite.com/shops, the URL still shows as mysite.com/moto-hotels/kawasaki). I’ve tried working it out with Yoast SEO and Permalinks Manager, but to no avail, the problem probably being more complex than I would like it to.
I appreciate any help and tips that may come my way.
]]>https://index.cy/wp-includes/js/tinymce/tinymce.min.js
Inside this tinymce.min.js file TinyMCE loads it’s default theme called “modern”. The URL to that theme file is created dynamically using TinyMCE’s document_base_url handle.
GTranslate is adding a language segment to that dynamic URL causing 404 error for the theme file. The script should be loading this file, which exists:
https://index.cy/wp-includes/js/tinymce/themes/modern/theme.min.js
But it’s loading this URL instead (notice the /ru/ segment):
https://index.cy/ru/wp-includes/js/tinymce/themes/modern/theme.min.js
How can I exclude dynamically created URLs from getting translated? I’ve already tried to set the document_base_url for the TinyMCE init but it didn’t work.
]]>How could I remove the Dynamic URL from header. Here is the code I want to remove <link rel=”stylesheet” id=”simple-melody-fonts-css” href=”https://www.logicreplace.com?family=Muli%3A+300%2C+400%2C+300italic%7CLibre+Baskerville%3A400%2C700%2C400italic%7CLora%3A400italic&subset=latin%2Clatin-ext” type=”text/css” media=”all” />
Here is the screenshot: https://app.screencast.com/6dDnmcaDRmaeO
Please would somebody help me about this?
]]>Is this possible?
]]>I’m having an issue with Force Login and bypass. Here is my code:
add_filter( 'v_forcelogin_bypass', 'my_forcelogin_bypass', 10, 2 );
function my_forcelogin_bypass( $bypass ) {
//Get visited URL without query string
//
$request_uri = $_SERVER['REQUEST_URI'];
$url_path = preg_replace('/\?.*/', '', $request_uri);
// Allow URL
if ( '/lostpassword/' === $url_path ) {
$bypass = true;
}
if ( '/resetpass/' === $url_path ) {
$bypass = true;
}
return $bypass;
}
The bypass is working as intended but for some reason when I try to reset my password the force login plugin is redirecting from:
Something like:
https://mysite.com/resetpass/?key=SMUApSYyoWJAHDdcsJlK&login=blah
to
https://mysite.com/resetpass
And this is resulting in an invalid key error.
I’ve ensured it’s not caching as these URI’s are removed from the caching system.
I’ve also confirmed this via headers:
x-frame-optionsSAMEORIGIN
x-kinsta-cacheBYPASS
x-redirect-byWordPress
I am using theme my login and that’s what is responsible for the non-standard links (/resetpass/ /lostpassword/)
Please let me know if you have any suggestions.
Thanks!
]]>1. Retrieve the current post’s title
2. Take that title and create a url with https://wwww.mypageaddress/?parameter1=<title>
3. Use that url as the url for the (improved) button, so that when the button is clicked, that is the address that it goes to.
Ideally, I don’t want to use any php code, but happy to use css/free plugins/shortcodes etc.
Is this possible?
]]>The link should return the form completed by the user
But I don’t understand how it works and i can’t call the forms directly I can’t see their Url
Any ideas?
]]>