marcus1w
Forum Replies Created
-
Hello,
Still an issue.
Best regards.
Hello,
Any update on this? Still an issue.
Best regards,
MarcusForum: Plugins
In reply to: [WooCommerce] Display more product images in “upsells”Hello,
thanks for the quick response.
This code snippet doesn’t do anything to the amount of upsells showing./** * Change number of upsells output */ add_filter( 'woocommerce_upsell_display_args', 'wc_change_number_related_products', 20 ); function wc_change_number_related_products( $args ) { $args['posts_per_page'] = 1; $args['columns'] = 4; //change number of upsells here return $args; }Despite having 4 as an $args it’s still only showing 3.
Actually when trying to activate it through Code Snippets it says
Cannot redeclare function wc_change_number_related_products.on line 7It was a plugin that interfered with it, resolved. Thanks!
Hello,
Here’s the email and WooCommerce currency settings.
Best regards,
MarcusHello,
Only on the Cart Abandonment plugin, it’s working as intended in the cart and checkout on our site.
There’s no multicurrencies, we’re only selling to 1 country and using 1 currency.
Regards,
MarcusForum: Plugins
In reply to: [WooCommerce] Remove hooks on specific pagefunction action_woocommerce_single_product_summary() { global $product; // Set Id's $product_ids = array ( 30, 815 ); // Is a WC product if ( is_a( $product, 'WC_Product' ) ) { // Get productID $product_id = $product->get_id(); // Product Id is in the array if ( in_array( $product_id, $product_ids ) ) { // Remobe remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 ); } } } add_action( 'woocommerce_single_product_summary', 'action_woocommerce_single_product_summary', 4 );Solved it
Forum: Plugins
In reply to: [WooCommerce] Remove hooks on specific pageI’ve tried this but with no success –
https://ww.wp.xz.cn/support/topic/remove-hooks-on-specific-pages-2/Forum: Plugins
In reply to: [Drag and Drop Multiple File Upload for WooCommerce] Mobile responsiveHere’s an image. it cuts the “Ladda upp” button.
Perhaps make the button go on the second row, or alternative adjust font size – the CSS you gave me didn’t solve our problem.
edit: Or the image you showed me would be ideal, yes. How do we enable only button? (Since clearly the text is not needed for phones).
- This reply was modified 4 years, 9 months ago by marcus1w.
Forum: Plugins
In reply to: [Contact Form 7] Border color top/left & rightThank you very much for your help.
Resolved the issues I had!
Forum: Plugins
In reply to: [Contact Form 7] Border color top/left & rightI solved it by adding
box-shadow: 0 0 1px #787F7D inset;the text, email and tel input field.Family font doesn’t work in the field or button?
Tried usingfont-family:antic-slab, sans-serif !important;Forum: Plugins
In reply to: [Contact Form 7] Border color top/left & rightdiv#wpcf7-wpcf7-f18-p375-o1 { background-color: #787F7D; padding:20px; } .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea { background:#787F7D; color:#EAE7DF; border: 0; border-bottom-color: #EAE7DF; border-bottom-width: 1px; border-bottom-style: outset; font-family:antic-slab, sans-serif; font-style:regular; } .wpcf7 input[type="submit"], .wpcf7 input[type="button"] { background-color:#33312A; width:20%; font-family:antic-slab, sans-serif !important; text-align:center; text-transform:uppercase; } ::-webkit-input-placeholder { /* WebKit browsers */ color: #EAE7DF !important; opacity: 1; } :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #EAE7DF !important; opacity: 1; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #EAE7DF !important; opacity: 1; } :-ms-input-placeholder { /* Internet Explorer 10+ */ color: #EAE7DF !important; opacity: 1; } div.wpcf7-validation-errors { display: none !important; } .wpcf7-form input:focus, .wpcf7-form textarea:focus, .wpcf7-form select:focus { border-color: #EAE7DF; border-bottom-color: #EAE7DF; box-shadow: 0 0 1px #787F7D inset; }Our current settings.
It also doesn’t change the family font.
- This reply was modified 4 years, 11 months ago by marcus1w.
Forum: Plugins
In reply to: [Contact Form 7] Border color top/left & rightOh, my apologies. The website is locked for customers as it’s in development right now.
Any other solution where I can send the credentials from the site to you?
- This reply was modified 4 years, 11 months ago by marcus1w.
Forum: Plugins
In reply to: [Contact Form 7] Border color top/left & rightI managed to fix the “hover” and focus color as I’d like.
It’s in “non-hover” mode if that makes sense.
“Namn” is how I would like to view it all the time.
“Epost” is how it currently looks and I would like those thin borders removed.Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Mailchimp API errorIt’s working now, thanks.
However the subscription signup form we made doesn’t look responsive in the phone.
Feels like it’s “stuck” in the header and you can only see one line and the send button.
edit: maybe this is an issue within mailchimp.com and not the plug-in?
- This reply was modified 7 years, 11 months ago by marcus1w.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Disable link colorYeah I use one for monitors and another for phones.
Thank you very much! Did the trick.