flamuren
Forum Replies Created
-
Found the setting to get all non logged in users to login page.
Forum: Plugins
In reply to: [WP Job Manager] Job stats not very intuitiveI will second that. Its the way the theme I use had it before WPJM started incorpate statistics. It made much more sense to have a control panel item that had all the statistics.
Hope this will be updated in the future ??
Forum: Plugins
In reply to: [Loco Translate] Latest theme translation gets lost when I press “sync”Ok this is really awkward. I think I might have been looking at the child theme.
When looking at the main theme translation I can sync and keep the old translations… And it seems to work! ??
Perhaps I should not touch child theme in loco translation plugin?
Forum: Plugins
In reply to: [Loco Translate] Latest theme translation gets lost when I press “sync”If I press the template settings (the cogwheel in the up right corner) on the fileinfo tab, I get some settings for template.
Relative search path is empty. Should this have some url/value to function properly perhaps?
Also under advanced settings for the theme translation the templatefile path is just the themename.pot… should this be a url also perhaps? (How would locotranslate otherwise find the potfile the theme has?)
One last note I find interesting: the child theme has a warning letting me know it declares the same textdomain as the main theme. No idea what that means – perhaps important?
Forum: Plugins
In reply to: [Loco Translate] Latest theme translation gets lost when I press “sync”Hi Tim,
thanks for taking the time. Not sure how to look for what it syncs to. Under the tab “fileinfo” I can see the following info (rough translations from swedish):
- (blue) missing a template – not linked to pot file and extract from source code
- (green) File PO is writeable
- (green) Catalouge is writeable
Do this information tell you anything of value? Anything I can adress to the theme creator perhaps since the template seems to be missing? ???♂?
I will try to read you guide recommendations – thanks ??
I found the issue for my site. I had to deactivate the recaptcha. Somehow it interfered with the login for all users – even though it did not show on the login page (the theme I use has its own login page).
Works now ??
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple/Gpay breaks checkoutHi,
I am not using elementor on that page. I tried with it also to test if its any difference – but the same problem occur.
But its locally for me I gather from your response so I will have to try to see if I can find anything.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple/Gpay breaks checkoutMade a video to show live what happens:
Forum: Plugins
In reply to: [WP Job Manager] location search is not working properlyThanks for your replies. I think it might be themerelated. I use Cariera theme. If you happen to know anything about this please let me know and I can forward the info to the theme creator to help in the investigation ??
Forum: Plugins
In reply to: [WP Job Manager] PHP-warningThats great news – thanks for your efforts and time looking in to this Deric ??
Forum: Plugins
In reply to: [WP Job Manager] PHP-warningOnly on 8.0. Not on 8.3.
Forum: Plugins
In reply to: [WP Job Manager] location search is not working properlyI had to deactivate the google and apple pay. I guess you have not looked further in to this?
Forum: Plugins
In reply to: [WP Job Manager] Redirect deleted jobs?Also I understand perhaps I should try to add the apply_filters( ‘wp_redirect_status’, int $status, string $location ) instead of the post_status publish?
Forum: Plugins
In reply to: [WP Job Manager] Redirect deleted jobs?Can anyone help me figure this one out? I am a total novice but I tried something like this:
function redirect_deleted_posts() {
global $post;
if (is_single() && $post->post_status !== 'publish') {
wp_redirect(home_url('/lediga-jobb/'));
exit();
}
}However that broke my website, so something is missing/not correct. Anyone with some idea what might be wrong?