harpo1984
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Recommendations by Graphflow] Export Orders casuses White ScreenHi Nick,
I don’t have debugging enabled on this site for WordPress.
However, I can provide you with a system report.
Is there an email address I can send it to?
Kind regards,
Simon
Forum: Plugins
In reply to: [BJ Lazy Load] Conflict with Mapify Pro and Visual ComposerI have the same issue except with the WP Google Map plugin.
The only way it works is the same as you David and that’s to diable BK Lazy Load for content.
I have tried adding classes, but nothing seems to work.
A fix for this would be great.
Hi Ross,
You are a gentleman and a scholar. That worked perfectly.
I just had to add the following code to change the colour of the hover state:
a.gce-change-month:hover:before { /* Sets Hover colour for Icons */ color: #00aca1; }
Thanks for everything!
Simon
Hi Ross,
Don’t say sorry, you’ve been a great help!
The Genericons are now displaying. However, they don’t appear to be in the same place as the original arrows, which still display as well.
My icons are also not clickable through to the next or previous month.
Kind regards,
Simon
Hi Ross,
Thanks for coming back to me. I had a look at those articles and tried a couple of things, but it’s beyond my limited coding knowledge.
The arrows are fine work fine, I just wanted to style them with my site a bit more.
Will 2.0 load the arrows differently so that they can be styled?
Kind regards,
Simon
Hi everyone,
My site is going live for a soft launch today at 5pm GMT, with an official launch in a couple of weeks time.
It would be great if someone could maybe help me with the issue I’m having before the soft launch today please.
Sorry to repost in the same thread…please don’t consider it a bump.
Kind regards,
Simon
Forum: Plugins
In reply to: [Genericon'd] Icons missing in Genericon'd 3.1.1 UsageNo I feel bad…thanks again for rushing a fix out for this. Superb support!
Forum: Plugins
In reply to: [Genericon'd] Icons missing in Genericon'd 3.1.1 UsageHi Mika,
Here are the steps I followed:
1) Plugin Deactivated
2) Plugin Deleted, including all files
3) Confirmed deletion via FTP
4) Installed plugin again via Plugins -> Add New
Unfortunately, nothing has changed. I am still experiencing the same issue. Hope this doesn’t ruin your theory?….
Forum: Plugins
In reply to: [Genericon'd] Icons missing in Genericon'd 3.1.1 UsageHi Mika,
Thanks for the feedback and also updating the example page. It’s a fantastic plugin and I use it on all my recent sites.
However, I’m having an issue with the most recent update. The example page isn’t displaying correctly at all and I’m now getting error 404 for the font itself with the fonts now not appearing at all on the website frontend.
I’ve attached a screen: Screen
Sorry for all the hassle. Hope I’m not being a pain.
Forum: Plugins
In reply to: [Genericon'd] Icons missing in Genericon'd 3.1.1 UsageSorry for not clarifying. I meant missing from the plugin. The icons I listed in my previous post don’t seem to appear in the plugin. (Mail Icon is now there, it wasn’t originally)
Please see the screen: Missing Icons
Hi Vasyl,
My access level is 10. Please see the screen link below.
The tutorial gives the same instructions instructions that you sent in another topic thread earlier in this conversation.
I have followed those instructions and my user access level is 10 and the Administrator role is still not appearing.
Kind regards,
Simon
Hi Vasyl,
My ID is 2. I change all initial IDs from 1 in a WordPress installation for security reasons.
If my code is correct in the config press, why does the Administrator role not become available in the roles list and therefore the “inherit capabilities” when I try to add a new user role.
Kind regards,
Simon
Hi Vasyl,
I tried your suggestion, but it has not worked.
I have attached a screenshot in case I have entered the wrong code in Config Press.
Just to be clear, when I create a new role or edit any existing role and give that role Level 10 capabilities, I get the error:
“You are not allowed to manager current view”
When I refresh the page, the role I just edited is deleted, whether it be a new role or an existing default WordPress role.
Kind regards,
Simon
Forum: Plugins
In reply to: [WooCommerce] Custom order fields changed in WooCommerce 2.1Glad you got sorted Peter…cheers for the thumbs up Gabriel.
Forum: Plugins
In reply to: [WooCommerce] Custom order fields changed in WooCommerce 2.1Hi Peter,
I got things solved today. Here is the code you need.
The meta key does need changed, but more needs changed as well, including references to POST and the call to the admin. Changing the meta key reference got things working in the admin, but the field doesn’t update. I finally got things working today after a week with Woo support.
I’ve pasted the code below that will get things working. Simply customise the name of your field or change the field type for your needs:
/** * Add the field to the checkout **/ add_action('woocommerce_after_order_notes', 'my_custom_checkout_field'); function my_custom_checkout_field( $checkout ) { echo '<div id="my_custom_checkout_field"><h3>'.__('Trade Accounts').'</h3>'; woocommerce_form_field( 'my_field_name', array( 'type' => 'text', 'class' => array('my-field-class form-row-wide'), 'placeholder' => __('Enter your Trade Account Number'), ), $checkout->get_value( 'my_field_name' )); echo '</div>'; } /** * Process the checkout **/ add_action('woocommerce_checkout_process', 'my_custom_checkout_field_process'); function my_custom_checkout_field_process() { global $woocommerce; } /** * Update the order meta with field value **/ add_action('woocommerce_checkout_update_order_meta', 'my_custom_checkout_field_update_order_meta', 10, 2); function my_custom_checkout_field_update_order_meta( $order_id, $posted ) { if ( $_POST['my_field_name'] ) { update_post_meta( $order_id, '_MyField', esc_attr($_POST['my_field_name'])); } } /** * Display field value on the order edition page **/ add_action( 'woocommerce_admin_order_data_after_billing_address', 'my_custom_checkout_field_display_admin_order_meta', 10, 1 ); function my_custom_checkout_field_display_admin_order_meta($order){ echo '<p><strong>'.__('Trade Account No').':</strong> ' . $order->MyField. '</p>'; }
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]