Freshspace
Forum Replies Created
-
Hi Omar,
I think we’ve worked this out.
So I logged into the site as an admin, went to users and created one with the role that we were having issues with and was then able to login using those credentials.
There was a slight quirk, whereby when I created the new user, it unticked the roll, so then had to reset and save that.
Then for the users already created with that role, I edited them, changed the password and then had to tick the role and save again and was also able to login with those details.
Not sure what the problem was but it seems we have a solution for it.
Thanks for your help.
Darren
Hi Garret,
Thanks for this. Your right and that’s worked as expected now.
Just need to sort the styling out now! As Brizy doesn’t work with the plugin.
Thanks again for your help.
DarrenForum: Plugins
In reply to: [Meta for WooCommerce] Can’t connect to facebook even though I am an adminHi Marko,
This is what I see – https://snipboard.io/bmK5y6.jpg looks very different to what Marija shared.
Thanks,
DarrenForum: Plugins
In reply to: [Meta for WooCommerce] Can’t connect to facebook even though I am an adminHi Marija,
Ufortunatly I dont’ see any of those options. This is the screen I see https://snipboard.io/zsylFa.jpg from this URL for Commerce Manager https://business.facebook.com/commerce_manager/get_started/?nav_source=commerce_manager_launchpad&business_id=2481637968843968
Somthing isn’t right but I’m not sure what?
Thanks,
DarrenForum: Plugins
In reply to: [Meta for WooCommerce] Can’t connect to facebook even though I am an adminHi there,
Thanks for your help. I followed the steps and can see that we have full access (https://snipboard.io/ZNLQzc.jpg).
Commerce Manager – that was a whole different story! I can get here, https://www.facebook.com/commerce_manager/get_started/?nav_source=commerce_manager_launchpad but there are no options to view permissions and the only settings tab takes me to Ad Account Settings. If I expand All Tools at the top of the page there are no permission options
I then got to here, see screenshot https://snipboard.io/NBKmko.jpg and I can see I have No assigned assets. Is this where the issue is?
I’m completely lost!
Hi there,
Thanks for getting back to me. The client already sets the dates manually as per your instructions above.
So what we wanted to know is there a way that by default the price for a set amount of days can be set. For example:
2 nights £200
3 nights £275
4 nights £350Or is that not something we can do?
Thanks,
DarrenHi @henrycee
Thanks for your help on this. It’s not exactly what we want but I think we’ll be able to work with it.
Much appreciated.
Darren.
Forum: Plugins
In reply to: [Flow-Flow Social Feed Stream] Flow Flow Not LoadingHi there,
Any thoiughts? We’re happy to pay for support but we’re just not getting any response when we submit tickets.
Thanks,
DarrenHi again @henrycee,
OK, I’ve made some progress but still need some advice.
So, I followd the above. On this page https://www.heydayscare.co.uk/job/support-worker-barrow-in-furness/ this now uses an embdeded form whicb uses a hidden field, upon submission it redirects to https://www.heydayscare.co.uk/join-us/vacancies/job-submission/?wpf4886_24=Support Worker – Barrow-in-Furness
The redirect code looks like this: https://www.heydayscare.co.uk/join-us/vacancies/job-submission/?wpf4886_24={field_id=”1″}. 4886 bein the form id, 24 being the field id of job title on the following page. {field_id=”1″ being the hidden form id.
As you can see it’s pulling through the Job Title (Support Worker – Barrow-in-Furness) which is great but then on that page how do we get it to put the job title into the Job Title field? This is currently blank.
So how do we then get the title into the Job Title field? I tried the page title but we don’t want that, only Support Worker – Barrow-in-Furness.
Thanks,
DarrenHi @henrycee,
Sorry I’d missed yuor response.
The work around sounds like it might just work so we’ll give that a go and let you know how we get on.
Thanks,
DarrenThanks @jadealombro that would be appreciated.
I thought as @francescocsto had had some luck I’d message in here but will wait to see if you guys can help.
Hi there,
I think you’re talking about the same issue I’m having.
@francescocsto, I think you’ve definitly got further than me. Here’s the post I just sumbutted https://wordpress.org/support/topic/send-page-title-to-form/#new-topic-0
If you could provide detail on how you’ve achieved this, that woudl be great.
Forum: Plugins
In reply to: [Meta for WooCommerce] Connection IssueHi Doug,
Thanks for this. I’ll contact Facebook directly and see if they can help at all.
Forum: Plugins
In reply to: [WooCommerce] Can you display dimensions in both inches and cmHey, typically we came across some code that does it as follows.
This works great but now we’d like to add in a label for the dimensions as its now clear what they are!
add_filter( 'woocommerce_format_weight', 'custom_format_weight', 20, 2 ); function custom_format_weight( $weight_string, $weight ){ // Format decimals from default weight value $weight_string = wc_format_localized_decimal( $weight ); // Format decimals from custom converted weight value $weight_string2 = wc_format_localized_decimal( round($weight * 0.45359237, 2) ); if ( ! empty( $weight_string ) ) { $weight_string2 = ' ( ' . $weight_string2 . ' ' . __( 'kg', 'woocommerce' ) . ' )'; $weight_string .= ' ' . get_option( 'woocommerce_weight_unit' ) . $weight_string2; } else { $weight_string = __( 'N/A', 'woocommerce' ); } return $weight_string; } add_filter( 'woocommerce_format_dimensions', 'custom_format_dimensions', 10, 2 ); function custom_format_dimensions( $dimension_string, $dimensions ){ // Initializing variable $dimentions2 = array(); // Loop though dimensions array (and set custom converted formatted decimals values in a new array) foreach( $dimensions as $key => $value ){ if( ! empty($value) && $value != 0 ) $dimentions2[$key] = wc_format_localized_decimal( round($value * 2.54, 2) ); } // Format default dimentions in a string $dimension_string = implode( ' x ', array_filter( array_map( 'wc_format_localized_decimal', $dimensions ) ) ); if ( ! empty( $dimension_string ) ) { // Format custom converted array in a string and append it to default formatted dimensions string $dimension_string2 = ' ( ' . implode( ' x ', $dimentions2 ) . ' ' . __( 'in', 'woocommerce' ) . ' )'; $dimension_string .= ' ' . get_option( 'woocommerce_dimension_unit' ) . $dimension_string2; } else { $dimension_string = __( 'N/A', 'woocommerce' ); } return $dimension_string; }Forum: Plugins
In reply to: [WooCommerce] Can you display dimensions in both inches and cmThanks for this.
We’ll take a look.
Think it would be a great little plugin as there’s a requirment for it.
Thanks again.