simonemeconi
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Admin column not display content correctlyHello, my code is working because on an administrator interface I can see all. Maybe, as you said, is a problem on copy/past here in the forum.
For the moment I resolved the issue by delete all this custom fields from the dashboard Author and put only the featured image. And like this it works.
Thanks for the time you spent for me. Maybe I will check better in future.
Thanks,
ByeForum: Developing with WordPress
In reply to: Admin column not display content correctly<?php add_filter( ‘manage_animali_posts_columns’, function( $columns ) { $columns[ ‘anteprima’ ] = __( ‘Anteprima’ ); $columns[ ‘razza_animale’ ] = __( ‘Razza Animale’ ); $columns[ ‘data_nascita’ ] = __( ‘Data di Nascita’ ); $columns[ ‘data_ingresso’ ] = __( ‘Data di Ingresso’ ); return $columns; } ); add_action( ‘manage_animali_posts_custom_column’, function( $column_name, $post_id ) { $razza_animale = rwmb_get_value( ‘razza_animale’, $post_id ); $image = rwmb_get_value( ‘galleria_immagini_animale’, [ ‘size’ => ‘thumbnail’ ], $post_id ) $data_nascita = rwmb_get_value( ‘data_nascita_animale’, $post_id ); $data_ingresso = rwmb_get_value( ‘data_ingresso_animale’, $post_id ); if( ‘razza_animale’ == $column_name ) { echo $razza_animale; } if ( ‘anteprima’ == $column_name ) { echo ‘<img src=“’ . $image[ ‘url’ ] . ‘”>’; } if( ‘data_nascita’ == $column_name ) { echo $data_nascita; } if( ‘data_ingresso’ == $column_name ) { echo $data_ingresso; } }, 10, 2 );Forum: Plugins
In reply to: [WooCommerce] Split products by attribute value on the entire shopHello,
Ok, yes you help me a lot.
My question was if there was a “simple method”, but I think that I can create a plug-in for doing this for me or buy the bulk edit products plug-in from WooCommerce.Thanks a lot to all,
Simone.Forum: Plugins
In reply to: [WooCommerce] Split products by attribute value on the entire shopHello Mirko,
Thanks for your reply.
Yes, of course. I use Categories for splitting products like padel, running, fashion ecc. And I use Tags for combine products.The problem is that I have more than 60 categories and duplicate these for 2/4 season (Fall, Winter, Spring, Summer) I think is so much complicated that use attributes.
I have found this plug-in from WooCommerce Inventory and Order Management: Bulk Edit Products, Prices, and Attributes.
Do you know if it works like “Select all products with x attribute” and then “Set all these products to visibility: hidden to the catalog and search”?
Do you know another way?I hope to have explained well the question,
Thanks,
SimoneForum: Plugins
In reply to: [Contact Form 7] Format error in email view (MIME Format)Dear Takayuki,
I really need your help to solve my format e-mail issue because e-mail leads have been sent with a wrong email format. I refer to the above mentioned comments.
Could you please help me to solve my concerns?
Thank you
Forum: Plugins
In reply to: [Contact Form 7] Format error in email view (MIME Format)Ok, I’m so sorry for posting my e-mail. I didn’t know this “ethical” code.
I usually use these plugins:
– WP Optimize or Wp Fastest Cache
– Advanced Editor tools (Tiny MCE)
– Bold Builder
– CMP (Cooming Soon Mode)
– Slider Revolution
– Yoast! SEO
– Yoast Duplicate PostThese are the common plugins that I use frequently.
But I noticed the problem only when I transferred the websites from the old hosting to the new ones (that use Plesk).Hi, the WooCommerce Subscription Extension work really good when a customer is inside the group and he stop/expire his subscription.
But I don’t know why if I try to register an account then buy the subscription, the plugin add the user to the group but the user is not visible in front-end group until I refresh the customer profile page in Admin/users/user-profile.
If I don’t do that the front-end view doesn’t show the user in the group, the strange thing is that in the back-end view I see the user inside and also that the user receive the email that he joined the group.
For the development I’m using:
– WooCommerce Subscription
– WooCommerce Membership
– ProfileGrid + All Extension
– WooCommerce MultiVendorI’m enjoying your plugin but I can’t resolve this issue.
ThanksOk I’m sorry, I found the solution for the second question.
It is in another tab.Thanks.
Ok, I’m going to try it.
I’ve another question, in the extension of ProfileGrid there is WooCommerce Integration that say:
Allows managing shipping/billing addresses from the User Profile page (under the ‘Settings’ tab).
But when I go in the admin area (and also in the .php file) I don’t see this option.
Could you help me?
Thanks.
Ps. I’ve bought all the extension of the plugin ProfileGrid.