WordPress.org Forums » All Topics https://wordpress.org/support/topics/feed/ Mon, 24 Nov 2025 12:22:51 +0000 https://bbpress.org/?v=2.7.0-alpha-2 en-US https://wordpress.org/support/topic/simple-and-straightforward-usage/ <![CDATA[Simple and Straightforward Usage]]> https://wordpress.org/support/topic/simple-and-straightforward-usage/ Mon, 24 Nov 2025 12:19:43 +0000 findikhikayeleri Replies: 0

I tried it for the first time. It’s simple and straightforward. I liked it. The only downside, in my opinion, is that we need to be able to replace breadcrumbs “home” with the word in our language.
If it supports Turkish, I can use it on more sites.

]]>
https://wordpress.org/support/topic/sync-and-resync-unsubscribed-to-subscribed-users/ <![CDATA[Sync and Resync – unsubscribed to subscribed users]]> https://wordpress.org/support/topic/sync-and-resync-unsubscribed-to-subscribed-users/ Mon, 24 Nov 2025 12:17:54 +0000 dezitech Replies: 0

I unsubscribe users from mailchimp and then archive them after that i disconnect and reconnect my shop and run the initial sync with the option “sync existing contacts only” and all the users return to subscribed even if i unsubscribed them from both mailchimp and wordpress(users).

I have done all possible tests both in staging and with a test account(mailchimp) and all customers become subscribed from unsubscribed, whether we do an initial connect or we do a resync. Is this how it should work?

]]>
https://wordpress.org/support/topic/a-lot-of-images-lost-in-migration-procress/ <![CDATA[A lot of images lost in migration procress]]> https://wordpress.org/support/topic/a-lot-of-images-lost-in-migration-procress/ Mon, 24 Nov 2025 12:13:55 +0000 moltouomomagazine Replies: 0

how to solve this now? 🙁

]]>
https://wordpress.org/support/topic/trplinkprocessed-7/ <![CDATA[#TRPLINKPROCESSED]]> https://wordpress.org/support/topic/trplinkprocessed-7/ Mon, 24 Nov 2025 12:21:15 +0000 pix1e Replies: 1

Hello,

I’m experiencing an issue with TranslatePress that only occurs when using a language other than the site’s default.

Here’s what happens:

When I log in while using a non-default language (e.g., my URL is mydomain.com/lt/login instead of mydomain.com/login), after a successful login I am redirected to the homepage, but the URL ends with #TRPLINKPROCESSED. For example:

mydomain.com/lt/#TRPLINKPROCESSED

If I log in using the default language, everything works normally (mydomain.com/), and no #TRPLINKPROCESSED is added.

Even on unsuccessful login attempts, if I’m using a non-default language, the login page refreshes and #TRPLINKPROCESSED is appended:

mydomain.com/lt/login#TRPLINKPROCESSED

I’ve tried the following troubleshooting steps:

Deactivating all plugins

Switching themes

Clearing all caches

It seems to be related purely to the login redirect handling with TranslatePress.

Has anyone experienced this or know how to fix it?

Thanks in advance!

<?php

// Start PHP session for flash error messages
add_action('init', function () {
if (!session_id()) {
session_start();
}
});

// Process login on template_redirect
add_action('template_redirect', function () {

if (isset($_POST['sev_login_submit'])) {

$username = sanitize_text_field($_POST['sev_login_username']);
$password = $_POST['sev_login_password'];
$remember = !empty($_POST['sev_login_remember']);
$user = get_user_by('login', $username);
$redirect_to = wp_get_referer() ? wp_get_referer() : SEV_LOGIN_URL;

if (!$user) {
$_SESSION['sev_login_error'] = 'invalid_credentials';
wp_safe_redirect($redirect_to);
exit;
}

$creds = [
'user_login' => $username,
'user_password' => $password,
'remember' => $remember,
];

$signed_in = wp_signon($creds);

if (is_wp_error($signed_in)) {
$_SESSION['sev_login_error'] = 'incorrect_password';
wp_safe_redirect($redirect_to);
exit;
}

if (in_array('pending', (array) $signed_in->roles)) {
wp_logout();
$_SESSION['sev_login_error'] = 'pending_verification';
wp_safe_redirect($redirect_to);
exit;
}

// Successful login
wp_safe_redirect(home_url());
exit;
}

});

// Login form shortcode
function sev_login_form()
{
$error_msg = '';

if (!empty($_SESSION['sev_login_error'])) {
$code = sanitize_text_field($_SESSION['sev_login_error']);

switch ($code) {
case 'invalid_credentials':
$error_msg = 'Invalid login credentials.';
break;

case 'incorrect_password':
$error_msg = 'Incorrect password.';
break;

case 'pending_verification':
$error_msg = 'Please verify your email before logging in.';
break;

default:
$error_msg = 'Login failed. Please try again.';
break;
}

unset($_SESSION['sev_login_error']); // Clear flash message
}

ob_start();
?>

<form method="post" class="oceanwp-form">

<?php if ($error_msg): ?>
<div class="alert error">
<?php echo esc_html($error_msg); ?>
</div>
<?php endif; ?>

<div class="form-group">
<label>Username</label>
<input type="text" name="sev_login_username" required class="oceanwp-form-control">
</div>

<div class="form-group">
<label>Password</label>
<input type="password" name="sev_login_password" required class="oceanwp-form-control">
</div>

<div class="form-group">
<label>
<input type="checkbox" name="sev_login_remember" value="1"> Remember Me
</label>
</div>

<div class="form-group">
<button type="submit" name="sev_login_submit" class="oceanwp-button">Log In</button>
</div>

<div class="form-group">
<p>
Don't have an account?
<a href="<?php echo esc_url(SEV_REGISTER_URL); ?>">Register</a><br>
Forgot password?
<a href="<?php echo esc_url(SEV_FORGOT_URL); ?>">Reset password</a>
</p>
</div>

</form>

<?php
return ob_get_clean();
}

add_shortcode('simple_login', 'sev_login_form');
]]>
https://wordpress.org/support/topic/warning-on-website-when-leaflet-plugin-is-activated/ <![CDATA[Warning on website when Leaflet plugin is activated]]> https://wordpress.org/support/topic/warning-on-website-when-leaflet-plugin-is-activated/ Mon, 24 Nov 2025 12:10:37 +0000 gyldensaa Replies: 0

When I have activated Leaflet Map plugin on my website, I keep getting an errormessage (se below)
My WordPress installation is ver. 6.8.3 and Leaflet Map plugin is ver. 3.4.2

Warning: filter_var_array() [function.filter-var-array]: Unknown filter with ID 0 in /var/www/rvv.dk/public_html/rvv_wp/wp-content/plugins/leaflet-map/class.plugin-option.php on line 90

]]>
https://wordpress.org/support/topic/scheduled-exports-not-attaching-csv-file/ <![CDATA[Scheduled exports not attaching CSV file]]> https://wordpress.org/support/topic/scheduled-exports-not-attaching-csv-file/ Mon, 24 Nov 2025 12:06:25 +0000 scmo1910 Replies: 0

Hi,

Neither of my forms are attaching the CSV file on scheduled exports. Exports go on as planned but no file. Manually CSV file works perfectly too.

Any ideas?

P.S. submission notifications also work fine.

Thanks

  • This topic was modified 14 minutes ago by scmo1910.
]]>
https://wordpress.org/support/topic/changes-to-text-are-not-saved/ <![CDATA[Changes to text are not saved]]> https://wordpress.org/support/topic/changes-to-text-are-not-saved/ Mon, 24 Nov 2025 12:02:38 +0000 jannnnnneke Replies: 0

Hi! I’m using a long time your plugin on my webshop, I got some text on the right top and in the footer. I want to change that text, but the changes arent visible on the invoice. Strange thing is, when I change the size of the logo I do see the adjustments appearing on the invoice.

Any idea how this is happening? I updated wordpress, Divi theme and all plugins.

Hopefully you can help me! Thanks a lot!

]]>
https://wordpress.org/support/topic/feature-request-shortcode-select-product-rules-to-exclude/ <![CDATA[Feature request: Shortcode > Select product rules to exclude]]> https://wordpress.org/support/topic/feature-request-shortcode-select-product-rules-to-exclude/ Mon, 24 Nov 2025 12:00:30 +0000 Rune Rasmussen Replies: 0

In “YayPricing > Settings > Shortcodes” you have the shortcode generator, with the “Select product rules to display” field.

While this probably is nice to have for some, it would make more sens to others having field for “Select product rules to exclude”, where they could select their 2 low focus outlet categories, instead of having to select 10-20 rules to include… 😉

]]>
https://wordpress.org/support/topic/category-ordering-specific-categories-take-priority-over-others/ <![CDATA[Category ordering – Specific categories take priority over others]]> https://wordpress.org/support/topic/category-ordering-specific-categories-take-priority-over-others/ Mon, 24 Nov 2025 11:54:03 +0000 Oded Talmon Replies: 0

Hello,
This is a search results page that shows products from product_cat=queen.

I would like the results to show t-shirts first and then vinyls (product categories for example. Is this possible?

]]>
https://wordpress.org/support/topic/bug-on-sale-shortcode-hides-products-valid-for-sale/ <![CDATA[Bug: On sale shortcode hides products valid for sale]]> https://wordpress.org/support/topic/bug-on-sale-shortcode-hides-products-valid-for-sale/ Mon, 24 Nov 2025 11:48:46 +0000 Rune Rasmussen Replies: 0

When using the filter rule “Products in stock:” > “Greater than 0” or “Greater than or equal 1”, the sale product’s isn’t being displayed with the sale shortcode (both old and new).

Seems like a opposite bug of https://wordpress.org/support/topic/bug-on-sale-shortcode-displays-products-not-valid-for-sale/ – so maybe you fixed that bug introducing a new one, and thus you probably needs to test your changes better in the future. 😉

]]>