russclem
Forum Replies Created
-
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Not signing up users?So I’m using Version 4.7.6 – and no more information is logged when I try to place a new order, with your checkbox checked and Logging set to ‘Everything’.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Not signing up users?I shall do that, but just a bit more information – it seems to be working fine with Stripe, but not with PayPal, does that sound like a familiar issue?
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Not signing up users?Sure:
— Nothing here. Which means there are no errors!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Not signing up users?Forum: Plugins
In reply to: [Make Column Clickable Elementor] Link not displaying in status bar?So is there a way to make it display? According to various sources, something like this should work:
jQuery(document).ready(function() { jQuery("body").on("click", ".clickable", function() { var href = jQuery(this).find("a").attr('href'); window.location = href; }); });
But it doesn’t.
Forum: Plugins
In reply to: [Modern Events Calendar Lite] Single Event ShortcodeCool, thanks!
Forum: Plugins
In reply to: [Polylang] Woocommerce “Proceed to checkout” button links to default languageThanks for the help guys, but I managed to solve it without spending a hundred dollars. ??
For anyone else who’s having this problem, just make sure you’ve got another checkout created in your second language.
Problem solved!
Forum: Plugins
In reply to: [Polylang] Woocommerce “Proceed to checkout” button links to default languageSo what happens if I pay a hundred dollars, get the addon, and the issue is still there?
I’ve just wasted a hundred dollars.
Forum: Plugins
In reply to: [Polylang] Woocommerce “Proceed to checkout” button links to default languageLiterally everything else works just fine without that plugin. It’s just that one button which isn’t translating properly.
Forum: Plugins
In reply to: [Polylang] Link to same page in different languageNevermind, solved it.
I just needed to replace $translations[0] with $translations[en] or whatever language code I needed.
Forum: Plugins
In reply to: [Polylang] Link to same page in different languageOkay, so this is what I’ve got so far:
<?php $translations = pll_the_languages(array('raw' => 1)); ?> <div class="lang-item-no"> <a href="<?php echo $translations[0]['url']; ?>">NO</a> </div>
But this just returns a link for the current translation. How do I make it return the link for a different, specified translation?
Forum: Plugins
In reply to: [Loco Translate] Translating /wp-includes/link-template.phpThe above approach won’t work because I’ve modified link-template.php myself.
The part I modified is line 2480:
if ( $GLOBALS['wp_query']->max_num_pages > 1 ) { $args = wp_parse_args( $args, array( 'prev_text' => __( 'See previous posts' ), 'next_text' => __( 'See newer posts' ), 'screen_reader_text' => __( 'Posts navigation' ), ) );
I want it to read:
if ( $GLOBALS['wp_query']->max_num_pages > 1 ) { $args = wp_parse_args( $args, array( 'prev_text' => __( 'See previous deals' ), 'next_text' => __( 'See newer deals' ), 'screen_reader_text' => __( 'Posts navigation' ), ) );
Is there a way to achieve this without modifying the core file?
Forum: Plugins
In reply to: [Meta Box] Adding a Metabox to a frontend submission formWill this work in conjunction with an existing form?
So when ‘submit’ is pressed on the existing form, this will add my new meta to the post?
Forum: Plugins
In reply to: [WooCommerce] A simple questions about variable productsWait, actually, what do you mean by ‘each variation’?
Each tent is a separate product. Would it make sense to have each product having a festival attribute (so have a list of the festivals in the attributes section), and then have the addons from a separate plugin?
Forum: Plugins
In reply to: [WooCommerce] A simple questions about variable productsFantastic, thanks for the thorough answer and for all the links! I’ll get to it and see if I can get it working.