Yasp0
Forum Replies Created
-
@photocrati, no because I can’t access the menu anymore. Can’t see the menu and when I try the link mentioned in my first post (or whatever NGG link) I get the message about no permission.
Seems like I have no permission to do anything in NGG? It’s hidden in the menu and can’t access any NGG page (which I found in my browser history)…
Forum: Plugins
In reply to: [WP Super Cache] Admin bar being cachedI completely overlooked the ‘Don’t cache pages for known users’ option. Oops :p.
But you say uncheck it? It was unchecked for me and other people saw the admin bar. And if they wanted to reply to a blogitem it said I was logged in.
So it seems I have to check ‘Don’t cache pages for known users’. Then it won’t cache me and other authors?
Forum: Plugins
In reply to: [WP Super Cache] Admin bar being cachedIs there any fix for this?
Forum: Hacks
In reply to: Latest posts from category defined by custom field, add another fixed category?Thanks! Did the job, you’re my hero ??
Forum: Plugins
In reply to: [WooCommerce] Add product as column in orders overviewYes, a friend of mine wrote a plugin. This should do it:
add_filter( 'manage_edit-shop_order_columns', 'imarcon_set_custom_column_order_columns'); function imarcon_set_custom_column_order_columns($columns) { // global $woocommerce; $nieuwearray = array(); foreach($columns as $key => $title) { if ($key=='billing_address') // in front of the Billing column $nieuwearray['order_producten'] = __( 'Products', 'woocommerce' ); $nieuwearray[$key] = $title; } return $nieuwearray ; } add_action( 'manage_shop_order_posts_custom_column' , 'imarcon_custom_shop_order_column', 10, 2 ); function imarcon_custom_shop_order_column( $column ) { global $post, $woocommerce, $the_order; switch ( $column ) { case 'order_producten' : $terms = $the_order->get_items(); if ( is_array( $terms ) ) { foreach($terms as $term) { echo $term['item_meta']['_qty'][0] .' x ' . $term['name'] .'<br />'; } } else { _e( 'Unable get the producten', 'woocommerce' ); } break; } }
It returns e.g. : 2 x productname
Forum: Plugins
In reply to: [Twitget] Multiple widgets with different usernameNice, need this feature ??
Forum: Plugins
In reply to: [Simplr Registration Form Plus+] Trouble getting Moderation to workWhen I disable the plugin and try to login with wrong password I also get an empty red error box. So I think it’s my WP installation…
Forum: Plugins
In reply to: [Simplr Registration Form Plus+] Trouble getting Moderation to workThat’s a good suggestion Ebo1233.
Now when a non-authorised wants to login there is a default empty red error box.
I also have an update for the ‘The email address isn’t correct.’ part.
Put this in your themes functions.php
function my_em_text_rewrites($translation, $orig) { switch ($orig) { case 'The email address isn’t correct.' : $translation = 'Your translation'; break; case '<strong>ERROR</strong>: The email address isn’t correct.' : $translation = 'Your translation'; break; } return $translation; } add_action ( 'gettext', 'my_em_text_rewrites', 1, 2 );
ATTENTION
Replace the apostrophe in the word isn’t with: & #8217;
(remove space)Better Googling next time ??
I found this tip, go to: https://www.yoursite.com/wp-admin/options.php
There I could translate the ‘Please fill in the field’ part.
Forum: Plugins
In reply to: [Easy Image Crop] [Plugin: Easy Image Crop] Can′t make it workDoes not seem to work for me either…
The problem is back with the newest ACF update. Any solutions?
With the new ACF update the {#…” fields are back…and
wp_tiny_mce()
is gone in acf.php so don’t know how to fix it. Anyone?Still nothing? It’s quitte annoying…
[edit]
Just found out, that for me it was a conflict with the plugin Advanced Custom Fields. When I deactivate it the problem is gone…
People with ACF plugin and tinymce:
Look for the file: acf.php
AROUND line 314 look for:wp_tiny_mce()
Replace this by:add_action('admin_head', 'wp_tiny_mce');
Add a
float:left
to.entry img { border: 0 none; display: block; margin: 1.5em auto; max-width: 490px; float: left; }
And clear the float on the paragraph.
#entry_content p { <strong>clear: left;</strong> margin: 10px 0; }
Can be found in the style.css file