mikeyswede
Forum Replies Created
-
Worked perfect – thanks
Looking at the other Available Keywords?for Post Notification helped me with another issue due the the help above…Created a ticket
Seems to be working after disabling the two plugins
Thank you for your help and hope it will stay stable nowThese Plugins are installed and active:
Back In Stock Notifier for WooCommerce
Cart Weight
Classic Editor
Classic Widgets
Custom Product Tabs for WooCommerce
Customizer for WooCommerce
Disable Comments
Extra Product Sorting Options for WooCommerce
FOX – Currency Switcher Professional for WooCommerce
GTranslate
Import Export WordPress Users and WooCommerce Customers
Loco Translate
MetaSlider
Min Max Quantity & Step Control for WooCommerce
Newsletter
Order Minimum/Maximum Amount for WooCommerce
Print Invoice & Delivery Notes for WooCommerce
Product Slider and Carousel with Category for WooCommerce
Really Simple SSL
Smart WooCommerce Search
Svea Checkout f?r WooCommerce
W3 Total Cache
Woo Title Limit
WooCommerce
WooCommerce Advanced Product Labels
WooCommerce Bulk Discount
WooCommerce Invoice Payment Gateway
WooCommerce Visma integration
WooCommerce Wholesale Prices
Wordfence Security
WP HTML Mail – Email Template Designer
WP Rollback
WP Statistics
WPForms Lite
Yes – but I had to turn off “Is multiple allowed”
It solved the pricing problem but now the customer can’t pay in DKK…
I could send you a temp admin login since we don’t dare to set “Is multiple allowed” to yes – we will loose too much money…- This reply was modified 1 year, 5 months ago by mikeyswede.
Newsletter game me this answer
Stefano Lissa (@satollo)
1 month, 3 weeks ago
Hi, that plugin adds HTML to our emails which are already a full HTML page. You should ask the plugin authors to verify if the outgoing message is an HTML message and do not add their template.Good point will notify them
Ok – will look into it
Need to double check the second site, that has the same problem, first- This reply was modified 2 years, 5 months ago by mikeyswede.
Yes, we do use wpforms on one of the sites not sure about the other since I’m no longer an admin
Forum: Themes and Templates
In reply to: [Astra] Remove dash in tabThank you for your reply
You are absolutely right about Yoast causing the problem
No I need to figure out how to disable that function…Forum: Plugins
In reply to: [Easy Appointments] Changing font size and colorGreat
Background color would be both selected date and unavailable dates
Noticed that selected dates go inverse when you click on themForum: Plugins
In reply to: [Simple Lightbox] Featured Images to work with SLBFixed the above by changing part of the code to this
‘img’ => get_the_post_thumbnail( $post_id, array(678, 381, true) ),Now my question is how the get the caption (if there is one) back underneath the image
Forum: Plugins
In reply to: [Simple Lightbox] Featured Images to work with SLBYeah I know it works that way but I would like to keep the featured image and be able to click on it to enlarge
Or an alternativ solution is to alter the way the image is shown so it shows a 16×9 scale of the image and full image on click- This reply was modified 3 years, 6 months ago by mikeyswede.
Forum: Plugins
In reply to: [Simple Lightbox] Can’t get SLB to work on featured imageForum: Plugins
In reply to: [Simple Lightbox] Can’t get SLB to work on featured imageHi
I’ve asked before (about a year ago) but not experienced enough to follow the directions
I just don’t get it
Anyway continued trying to figure this thing out
I am using a child theme called MH NewsMagazine to the theme MH Magazine lite
In the child theme I did put a copy of the content-single.php
So far no problems but when I added the code to the line <?php mh_magazine_lite_featured_image(); ?> I got 2 images on the page
One where the featured images is and below the full sized image – clickable but way to big
I wanted the lightbox to work on the featured image
This is how I wrote it<?php mh_magazine_lite_featured_image(); // Link post thumbnail to full-size image. if ( has_post_thumbnail() ) { $thumbnail = [ // URI of full-size post thumbnail image. 'uri' => get_the_post_thumbnail_url( null, 'full' ), // HTML to display post thumbnail. 'img' => get_the_post_thumbnail(), ]; // Build thumbnail link. $thumbnail['link'] = sprintf( '<a href="%s">%s</a>', esc_attr( $thumbnail['uri'] ), $thumbnail['img'] ); // Display full-size image in lightbox when clicked. if ( function_exists( 'slb_activate' ) ) { $thumbnail['link'] = slb_activate( $thumbnail['link'] ); } // Display post thumbnail. echo $thumbnail['link']; } ?>
Where did I go wrong?