summerlightning
Forum Replies Created
-
Thanks, appreciate the feedback. Reported into WPMU DEV too.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Require link to product page not checkoutI just found a solution for this. I obviously missed something during setup, so if you have done the same as me, do the following:
Go to Settings > Shop > Platform Shop Settings > Turn off Use Checkout URL’s.
When customer now clicks on Checkout on Website, they are taken to the Product Page.
Forum: Plugins
In reply to: [Advanced Woo Search] Use AWS in Avada Search on main menu onlyChange the var forms line to this also to make this solution work on Mobile Search too (I had forgotten about this, but the team were amazing to help)
var forms = document.querySelectorAll(".fusion-menu form, .fusion-mobile-menu-search form");
Forum: Plugins
In reply to: [Advanced Woo Search] Use AWS in Avada Search on main menu onlyHuge thanks to the guys over at AWS for their support in figuring this out for me.
If anyone else needs, this was the final code used in functions.php that worked how I needed it with just Avada Search working from the Projects page and AWS elsewhere.//Add AWS Search to top header search only. add_action( 'wp_head', 'aws_wp_head' ); function aws_wp_head() { ?> <style> .fusion-flyout-search .aws-container { margin: 0 auto; padding: 0; width: 100%; width: calc(100% - 40px); max-width: 600px; position: absolute; top: 40%; left: 20px; right: 20px; } </style> <script> window.addEventListener('load', function() { var awsSearch = document.querySelectorAll(".fusion-menu .fusion-main-menu-search a, .fusion-flyout-menu-icons .fusion-icon-search"); var awsFormHtml = <?php echo json_encode( str_replace( 'aws-container', 'aws-container aws-js-seamless', aws_get_search_form( false ) ) ); ?>; var forms = document.querySelectorAll(".fusion-menu form"); if ( forms ) { for ( var i = 0; i < forms.length; i++ ) { if ( forms[i].parentNode.outerHTML.indexOf('aws-container') === -1 ) { forms[i].outerHTML = awsFormHtml; } } window.setTimeout(function(){ jQuery('.aws-js-seamless').each( function() { jQuery(this).aws_search(); }); }, 1000); } if ( awsSearch ) { for (var i = 0; i < awsSearch.length; i++) { awsSearch[i].addEventListener('click', function() { window.setTimeout(function(){ document.querySelector(".fusion-menu .fusion-main-menu-search .aws-search-field, .fusion-flyout-search .aws-search-field").focus(); }, 100); }, false); } } }, false); </script> <?php }
Forum: Plugins
In reply to: [Advanced Woo Search] Use AWS in Avada Search on main menu onlyI’ve emailed.
ThanksForum: Plugins
In reply to: [Advanced Woo Search] Use AWS in Avada Search on main menu onlyThanks for this. The code above causes Avada search to be used on the Homepage when clicking the search icon. Everywhere else, including clicking on the search icon from the menu, on other pages, widgets, project search, is utlising the AWS search.
I’m testing this on our staging site. Let me know if I can send these details privately at all.
I don’t think I was clear before. Just to clarify:
When clicking on the Search icon in the main menu header, the AWS search should be utilised. This AWS search should load from the main header on all devices, regardless of what page the user is on.
Anywhere else the search function is loaded should utlise Avada search.
Does that help?
Thank you for your time.Thanks Mailpoet, Preview send is now working for me.
Thanks for the quick response ??
Thanks for explaining exactly what the {login} bit is, that was really useful to understanding. The rest, I definitely do already. I’ll add {login} to the list of names immediately locked out.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] 0 subscribers added to "listname"Appreciate the quick response. I was following this page and even used the csv template that you provided. I tried with multi columns and all in one column with just a , but it wouldn’t work, it kept saying that I did not have the correct ” and was not recognising as a CSV file.
I have got around it by pasting the exact data from the CSV file into the “paste your list here box” but it would be good if the download template csv example worked.
Thanks.
Forum: Plugins
In reply to: [Max Mega Menu] Responsive Menu shows behind sliderThanks Tom. Changed it in the CSS editor on the plugin settings page as per the above and that worked great.
Please do let me know if you ever need any user testing done – I’d be happy to help as a thank you.
Amanda
Forum: Plugins
In reply to: [Max Mega Menu] Responsive Menu shows behind sliderMe again ??
The homepage is working perfectly, but on the products page the menus are showing behind the products.
I’ve tried different CSS in the MAX Menu screen and my own style.css in the child theme. I can’t even get it to appear on top when working with the z-index in chrome developer tools.
Any help would again be appreciated.
It’s now on the live environment: https://www.moonkids.ae/products-page/softplay/
A
Forum: Plugins
In reply to: [Max Mega Menu] Responsive Menu shows behind sliderThank you Tom. That was a perfect fix. I really appreciate your time as I’d been trying different options for hours.
Do you have a donate link that you can post for me please?
Thank you,
AmandaSpotoremor – thank you, this worked beautifully.
Forum: Plugins
In reply to: Remove Shipping Calculator from WP eCommerceFinally a result – thanks to spotoremor for the code:
/** * my_wpsc_needs_shipping_recalc() * * disable shipping_recalc value returned by needs_shipping_recalc() for fixedrate shipping method. * * @param boolean $needs_shipping_recalc * @param obj $wpsc_cart * @return boolean */ function my_wpsc_needs_shipping_recalc($needs_shipping_recalc, $wpsc_cart) { if($wpsc_cart->shipping_method == 'fixedrate') { $needs_shipping_recalc = false; } return $needs_shipping_recalc; } add_filter('wpsc_needs_shipping_recalc','my_wpsc_needs_shipping_recalc',10,2);
Forum: Plugins
In reply to: [WP eCommerce] Personalize This Product checkbox unticks itself on updateI found the issue raised on WP-Ecommerce on Github.
Properly initialise perso form settings #1393
https://github.com/wp-e-commerce/WP-e-Commerce/pull/1393I added the code as suggested to wpsc-admin/includes/display-items-functions.php and this fixed the problem.
function wpsc_product_personalization_forms(){ global $post; $product_meta = get_post_meta( $post->ID, '_wpsc_product_metadata', true ); if ( ! is_array( $product_meta ) ) $product_meta = array(); ?>