shimist
Forum Replies Created
-
I mean, in one column, the number of views per download will be displayed.
https://pasteboard.co/JeEsbI9D.jpgForum: Plugins
In reply to: [PW WooCommerce Bulk Edit] Fatal error: Out of memoryWhat are the minimum resources to run your plugin?
The question for me is why the plugin does not run
Because the editing operation on the products has not been done yet, the plugin should not give an error- This reply was modified 4 years, 9 months ago by shimist.
Forum: Plugins
In reply to: [PW WooCommerce Bulk Edit] Fatal error: Out of memorythe code in meta.php on line 964
// Add a value to the current pid/key.
$cache[ $mpid ][ $mkey ][] = $mval;
}
}foreach ( $ids as $id ) {
if ( ! isset( $cache[ $id ] ) ) {
$cache[ $id ] = array();
}
wp_cache_add( $id, $cache[ $id ], $cache_key );
}return $cache;
}and the code of class-wp-fatal-error-handler on line 64
protected function detect_error() {
$error = error_get_last();// No error, just skip the error handling code.
if ( null === $error ) {
return null;
}What restrictions might these codes have on my site’s server?
What is your solution to this problem?
Is there a way for me to get the export postmeta table and edit it with your plugin on the local and re-import it?
Help me if you canForum: Plugins
In reply to: [PW WooCommerce Bulk Edit] Fatal error: Out of memoryIncidentally, I did not define any attributes for my products
https://pasteboard.co/JdLSEG0.jpg
The problem is that the plugin settings page is not displayed for me And an error occurs
- This reply was modified 4 years, 9 months ago by shimist.
Forum: Plugins
In reply to: [PW WooCommerce Bulk Edit] Fatal error: Out of memoryI use this code in my Function.php
But again, when open the plugin, the same error occursfunction pw_bulk_edit_custom_columns( $columns ) {
// List each field that you want to edit and see. This is case sensitive.
$show_columns = array(
__( ‘Product name’, ‘woocommerce’ ),
__( ‘Type’, ‘woocommerce’ ),
__( ‘Status’, ‘woocommerce’ ),
__( ‘Regular price’, ‘woocommerce’ ),
__( ‘Categories’, ‘woocommerce’ ),
__( ‘ID’, ‘woocommerce’ ),
);$filtered_columns = array();
foreach ( $columns as $column ) {
if ( in_array( $column[‘name’], $show_columns ) ) {
$filtered_columns[] = $column;
}
}return $filtered_columns;
}
add_filter( ‘pwbe_product_columns’, ‘pw_bulk_edit_custom_columns’, 99, 1 );Forum: Plugins
In reply to: [PW WooCommerce Bulk Edit] Fatal error: Out of memoryFor me, this error occurs when I run the plugin and the plugin settings section does not open. As a result of the solutions you mentioned I can’t access.
If possible, give me a code to put in the function or wp-config to fix this problem
- This reply was modified 4 years, 9 months ago by shimist.
Hello
Good time
thank you for your attention
Why?
Many users need this plugin in EDDForum: Plugins
In reply to: [GD Rating System] No RatingIs there no way to display aggregateRating when testing with Google tools in the article?
Forum: Plugins
In reply to: [GD Rating System] No RatingDo you mean that in the professional version, the author of the article can put a value for Rivio that is shown in the Google testing tool ?
Or the star ratings displayed as a ReviewRating values on Google testing tool ?I just want the star ratings of the posts to be displayed in testing tool
In any way possible with your pluginForum: Plugins
In reply to: [GD Rating System] CreativeWorkSeasonPlease add these snippets
Forum: Plugins
In reply to: [GD Rating System] No RatingSome plugins like KK star with this code show Rating in google rich snippets testing tool
{
“@context”: “https://schema.org/”,
“@type”: “CreativeWorkSeries”,
“name”: “[title]”,
“aggregateRating”: {
“@type”: “AggregateRating”,
“ratingValue”: “[score]”,
“bestRating”: “[best]”,
“ratingCount”: “[count]”
}
}Every link from my site that I enter into a Google testing tool shows only the article like this
https://pasteboard.co/Jb46VNl.jpgHow can I add this piece, which is the score of each post?
Forum: Plugins
In reply to: [GD Rating System] CreativeWorkSeasonI mean, how do I add this code to Rich?
{
“@context”: “https://schema.org/”,
“@type”: “CreativeWorkSeries”,
“name”: “[title]”,
“aggregateRating”: {
“@type”: “AggregateRating”,
“ratingValue”: “[score]”,
“bestRating”: “[best]”,
“ratingCount”: “[count]”
}
}Forum: Plugins
In reply to: [GD Rating System] google rich snippets testing toolvery very thanks
Selecting GMT date / time values solves the problemWhy is the support for this plugin so weak?
very well
I’m waiting for you to add this feature