Any ideas how to remove it?
Thank you!
]]>Having UTM parameters visible in the orders page is very useful. The problem is that we are limited to the following UTM parameters on the orders page now (Source Type, Campaign, Source, Medium, Device Type, Page Views).
It would be extremely useful to be able see more UTM parameters – most importantly the term parameter, which would show us which keywords actually drive conversions.
For example, the term parameter is being collected via our ads, however it is not displayed in the WooCommerce Order Attribution. We can only see the term parameter when exporting all orders and checking the _wc_order_attribution_utm_term column in our CSV.
Is there any way now to add more UTM parameters to be displayed on the Orders page? At least the term parameter?
P.S.: I’ve noticed another thread of asking for this, but it seems like there was a misscomunication problem and the WooCommerce team didn’t understand the request. I hope I managed to be clearer.
I recently discovered these support forums and am hopeful that I can get some help with an issue I’m experiencing with the Bjork theme (version 0.2.4).
I’ve successfully set a favicon through both the WordPress FSE and the WordPress General Settings. It displays correctly in the backend (like on /wp-admin pages), but it doesn’t appear on the frontend of my website. I’ve already cleared my browser cache and the server cache via my hosting provider, and I’ve double-checked the theme settings to ensure the favicon is set correctly.
Unfortunately, despite all these efforts, the favicon remains absent on the frontend. My hosting provider attempted to assist me but mentioned that “it’s some parameter in the theme; I tried to force it directly from the theme functions, but it keeps getting removed.”
I would greatly appreciate your guidance or troubleshooting steps. Thank you in advance for your help!
]]>I’m trying to redirect:
https://example1.com/back/?redirect_to=https://example1.com/synthetic-customers-experiment-future-scenarios-without-violating-privacy/
To
https://example2.com/login/?redirect_to=https://example2.com/synthetic-customers-experiment-future-scenarios-without-violating-privacy/
Using Regular Expression or Contains
But the result is:
https://example2.com/login/?redirect_to=https%3A (string is cut off)
Can you help me?
Thank you very much
]]><?php
/*
Template Name: Movie Player
*/
get_header();
$url = isset($_GET['url']) ? esc_url($_GET['url']) : '';
if ($url):
? ? echo '<pre>';
? ? print_r($url); // Print the final URL for debugging
? ? echo '</pre>';
?> ?
? ? <video controls controlsList="nodownload">
? ? ? ? <source src="<?php echo $url; ?>" type="video/mp4">
? ? ? ? Your browser does not support the video tag.
? ? </video>
? ? <script>
? ? ? ? document.addEventListener('DOMContentLoaded', function() {
? ? ? ? ? ? const video = document.querySelector('video');
? ? ? ? ? ? video.addEventListener('contextmenu', function(e) {
? ? ? ? ? ? ? ? e.preventDefault(); // Disable right-click context menu
? ? ? ? ? ? });
? ? ? ? ? ? ?// Log the video URL to the console
? ? ? ? ? ? ?console.log("Video URL:", "<?php echo $url; ?>");
? ? ? ? });
? ? </script>
<?php
else:
? ? echo 'No video URL provided.';
endif;
get_footer();
This is the function that generates the presigned url in functions.php.
function handle_order_complete($order_id) {
? ? $order = wc_get_order($order_id);
? ? if ($order->has_status('completed')) {
? ? ? ? // Retrieve the bucket name and object key from environment variables
? ? ? ? $bucketName = 'ngop-movie';
? ? ? ? $objectKey = 'kot-2-movie.mp4';
? ? ? ? // Generate the pre-signed URL
? ? ? ? $presignedUrl = generate_presigned_url($bucketName, $objectKey);
? ? ? ? // Redirect the user to the movie player page with the pre-signed URL
? ? ? ? wp_redirect('https://kotthemovie.com/movie-stream?url=' . urlencode($presignedUrl));
? ? ? ? exit;
? ? }
}
In my video player page I retrieve the parameter from the url and use it as source in my video player to stream the video. It works fine locally with localhost but on my deployed wordpress site in wp engine I am not able to retrieve the parameter and add it to the source of the video. The video player doesn’t show at all. Can anyone please help me resolve this issue?
I want to remove the fixed text when using parameter, but it doesn’t have class to use css, can you support me?
I can find in the file and delete directly, but worry about the issue of updating later
Implemented Banner cookies and Consent mode v2 with CookieYes.
One doubt. Should URL parameters appear in the internal links for Google Analytics to track users without cookies, or is it the other way around and this happens when Consent Mode v2 is not properly implemented?
(These parameters was appearing at internal links after install CookieYes, but since we are set up fine the Google Consent Mode v2 they not appears).
Regards.
]]>e.g., in simple-page-access-restriction.php:172, if we add urlencode() to the home_url() .$_SERVER[‘REQUEST_URI’], it preserves the parameters.
$redirect_url = add_query_arg( $settings[‘redirect_parameter’], urlencode(home_url() . $_SERVER[‘REQUEST_URI’]), $redirect_url );
]]>Thanks a lot for your help
JA
]]>The site I’m managing is using ACF and the way it’s done is forcing me to use php templates for the page I want to host your Pretty Google Calendar.
Is it possible to include or call the code snippet from php?, how it should be done to use the parameters I want to use?
<code> [pretty_google_calendar gcal="[email protected]" locale="es"?show_title="true" use_tooltip="true" list_type="listCustom" custom_days="60" ] </code>
In ACF I’m using WYSIWIG Editor Field but I don’t know if there is another kind of Field I could use to properly embed the calendar to avoid the use of PHP.
Thanks again, and pretty great job you are doing!
]]>